/* =============================================
   WONTAGE v3 — Warmer Aubergine-Modernismus
   Palette: Alabaster · Plum · Saffron
   Fonts:   DM Serif Display + Outfit
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---- TOKENS ---- */
:root {
  --alb:      #F5F3EE;   /* main background */
  --bone:     #EDE8DF;   /* secondary bg */
  --chalk:    #DDD7CC;   /* borders */
  --chalk-lt: #ECE7DE;   /* subtle borders */
  --plum:     #3A1A38;   /* primary dark */
  --plum-md:  #5E2E5A;   /* medium */
  --plum-lt:  #8B4E86;   /* light */
  --plum-xlt: #C49CBF;   /* very light */
  --saffron:  #C97E18;   /* accent */
  --saff-lt:  #E8981E;   /* light accent */
  --saff-bg:  #FFF4E0;   /* saffron tint bg */
  --ink:      #1A1118;   /* darkest text */
  --ink-md:   #3D2A3B;   /* medium text */
  --mist:     #8A7E88;   /* muted */
  --mist-lt:  #B3A8B1;   /* lighter muted */
  --white:    #FEFCF9;   /* pure white */

  --r:     4px;
  --r-lg:  12px;
  --r-xl:  20px;
  --t:     .3s cubic-bezier(.4,0,.2,1);
  --t-sl:  .6s cubic-bezier(.4,0,.2,1);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--alb);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--alb); }
::-webkit-scrollbar-thumb { background: var(--plum); border-radius: 2px; }

/* ---- SELECTION ---- */
::selection { background: var(--plum); color: var(--alb); }

/* ---- TYPE BASE ---- */
h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.015em;
}
.serif { font-family: 'DM Serif Display', serif; }

/* ---- LAYOUT ---- */
.wrap { max-width: 1300px; margin: 0 auto; padding: 0 2.8rem; }
.sect { padding: 8rem 0; }
.sect-sm { padding: 4rem 0; }

/* ---- LABEL ---- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 1.3rem;
}
.tag::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--saffron);
  border-radius: 2px;
}

/* ==================================================
   HEADER
   ================================================== */
.hdr {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  padding: 1.5rem 0;
  transition: padding var(--t), background var(--t), box-shadow var(--t);
}
.hdr.on {
  background: rgba(245,243,238,.97);
  backdrop-filter: blur(20px);
  padding: .9rem 0;
  box-shadow: 0 1px 0 var(--chalk-lt);
}
@media (max-width: 768px) {
  .hdr-inner { padding: 0 1.2rem; }
}
.hdr-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.45rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.025em;
  display: flex;
  align-items: center;
  gap: .12em;
}
.logo-dot {
  width: 7px; height: 7px;
  background: var(--saffron);
  border-radius: 50%;
  margin-bottom: 2px;
}

.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--mist);
  text-decoration: none;
  transition: color var(--t);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--saffron);
  transition: width var(--t);
  border-radius: 2px;
}
.nav a:hover, .nav a.on { color: var(--plum); }
.nav a:hover::after, .nav a.on::after { width: 100%; }

.hdr-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.6rem;
  background: var(--plum);
  color: var(--alb);
  font-family: 'Outfit', sans-serif;
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r);
  transition: background var(--t), transform var(--t);
}
.hdr-cta:hover { background: var(--plum-md); transform: translateY(-1px); }

.mob-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  z-index: 201;
}

/* ==================================================
   HERO — Vertical rotated studio name + image split
   ================================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 84px 1fr 1fr;
  background: var(--alb);
  position: relative;
  overflow: hidden;
}

/* Vertical sidebar */
.hero-side {
  background: var(--plum);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}
.hero-side-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: 'Outfit', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(245,243,238,.35);
}
.hero-side-num {
  font-family: 'DM Serif Display', serif;
  font-size: .85rem;
  color: rgba(245,243,238,.3);
}
.hero-side-line {
  width: 1px;
  height: 60px;
  background: rgba(245,243,238,.2);
  margin: 1rem 0;
}
.hero-side-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--saffron);
}

/* Hero left text */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 4rem 5rem 4rem;
  position: relative;
  z-index: 2;
}
.hero-pre {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--plum-lt);
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: up .6s .2s forwards;
}
.hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3.5rem, 5.5vw, 6.5rem);
  line-height: .9;
  letter-spacing: -.03em;
  color: var(--plum);
  opacity: 0;
  animation: up .9s .35s forwards;
}
.hero-h1 em {
  font-style: italic;
  color: var(--saffron);
}
.hero-h1 span {
  display: block;
  color: var(--plum-lt);
  font-size: .65em;
  margin-top: .3em;
  font-style: italic;
}

.hero-desc {
  max-width: 380px;
  margin-top: 2.2rem;
  font-size: .95rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.75;
  opacity: 0;
  animation: up .8s .55s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.8rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: up .8s .75s forwards;
}

/* Hero right image */
.hero-visual {
  position: relative;
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(245,243,238,.4) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: imgIn 1.1s .4s forwards;
}
.hero-badge {
  position: absolute;
  bottom: 3rem;
  left: -1px;
  background: var(--saffron);
  color: var(--white);
  padding: 1.4rem 2rem 1.4rem 2.5rem;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  padding-right: 3.5rem;
}
.hero-badge-label { font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; opacity: .8; margin-bottom: .3rem; }
.hero-badge-val { font-family: 'DM Serif Display', serif; font-size: 1.1rem; }

/* Bottom data strip */
.hero-data {
  grid-column: 2 / 4;
  background: var(--plum);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.07);
  min-width: 0; /* prevent overflow */
}
.hero-datum {
  padding: 1.6rem 2rem;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-width: 0;
}
.hero-datum:last-child { border-right: none; }
.hd-icon { color: var(--saff-lt); font-size: 1rem; flex-shrink: 0; width: 20px; }
.hd-label { font-size: .62rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(245,243,238,.35); margin-bottom: .18rem; }
.hd-val { font-size: .88rem; font-weight: 500; color: rgba(245,243,238,.82); }

@keyframes up { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
@keyframes imgIn { from { opacity:0; transform:scale(1.04); } to { opacity:1; transform:scale(1); } }

/* ==================================================
   PRESSE STRIP
   ================================================== */
.press-strip {
  background: var(--bone);
  border-top: 1px solid var(--chalk);
  border-bottom: 1px solid var(--chalk);
  padding: 1.8rem 0;
  overflow: hidden;
}
.press-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: scroll 22s linear infinite;
  white-space: nowrap;
}
.press-item {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2.4rem;
  flex-shrink: 0;
}
.press-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--chalk);
  letter-spacing: .04em;
}
.press-name.prominent { color: var(--mist-lt); }
.press-sep { color: var(--chalk-lt); font-size: .6rem; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==================================================
   LEISTUNGEN — Horizontal tabs
   ================================================== */
.leist-bg { background: var(--white); }

.leist-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid var(--chalk);
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 480px;
}

/* Tabs sidebar */
.leist-tabs {
  background: var(--bone);
  border-right: 1px solid var(--chalk);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* prevent content spillover */
}
.leist-tab {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.3rem 2rem;
  cursor: pointer;
  transition: background var(--t);
  position: relative;
  border: none;
  background: transparent;
  text-align: left;
  width: 100%;
}
.leist-tab::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--saffron);
  transform: scaleY(0);
  transition: transform var(--t);
  border-radius: 0 2px 2px 0;
}
.leist-tab.active { background: var(--alb); }
.leist-tab.active::before { transform: scaleY(1); }
.leist-tab-ico {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--chalk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--mist);
  flex-shrink: 0;
  transition: background var(--t), color var(--t);
}
.leist-tab.active .leist-tab-ico { background: var(--plum); color: var(--alb); }
.leist-tab-name {
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  color: var(--mist);
  transition: color var(--t);
  line-height: 1.3;
}
.leist-tab.active .leist-tab-name { color: var(--plum); }

/* Content panel */
.leist-panels { position: relative; }
.leist-panel {
  display: none;
  padding: 3.5rem 4rem;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.leist-panel.active { display: flex; }
.leist-panel-num {
  font-family: 'DM Serif Display', serif;
  font-size: 7rem;
  font-weight: 400;
  color: var(--chalk-lt);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 1rem;
}
.leist-panel h3 {
  font-size: 2.2rem;
  color: var(--plum);
  margin-bottom: 1.2rem;
}
.leist-panel p {
  font-size: .95rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
  flex: 1;
}
.leist-panel-tags { display: flex; gap: .6rem; flex-wrap: wrap; }
.l-tag {
  padding: .35rem .9rem;
  background: var(--saff-bg);
  border: 1px solid rgba(201,126,24,.2);
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 600;
  color: var(--saffron);
  letter-spacing: .05em;
}

/* ==================================================
   ABOUT — Inline stats + prose (no grid of boxes)
   ================================================== */
.about-bg { background: var(--plum); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
.about-img {
  position: relative;
  height: 580px;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .85s ease;
}
.about-img:hover img { transform: scale(1.04); }
.about-year {
  position: absolute;
  top: 2rem; right: 2rem;
  background: var(--saffron);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.8rem;
  text-align: center;
}
.about-year strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  line-height: 1;
}
.about-year span { font-size: .65rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }

.about-text .tag { color: var(--saff-lt); }
.about-text .tag::before { background: var(--saff-lt); }
.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--alb);
  margin-bottom: 1.4rem;
}
.about-text h2 em { color: var(--saff-lt); font-style: italic; }
.about-text > p {
  font-size: .95rem;
  font-weight: 300;
  color: rgba(245,243,238,.6);
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* Inline stat row */
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.astat-val {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: var(--alb);
  line-height: 1;
  letter-spacing: -.04em;
}
.astat-val em { color: var(--saff-lt); font-style: normal; font-size: .6em; }
.astat-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,243,238,.35);
  margin-top: .35rem;
}

/* ==================================================
   PORTFOLIO — Hero card + thumbnail row
   ================================================== */
.port-bg { background: var(--alb); }

.port-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.port-header h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
.port-cats {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.pcat {
  padding: .4rem 1.1rem;
  background: transparent;
  border: 1px solid var(--chalk);
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mist);
  cursor: pointer;
  transition: all var(--t);
}
.pcat.on, .pcat:hover { border-color: var(--plum); color: var(--plum); background: rgba(58,26,56,.06); }

/* Hero project */
.port-hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.port-big {
  position: relative;
  height: 540px;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
}
.port-big img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.port-big:hover img { transform: scale(1.05); }
.port-big-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, transparent 40%, rgba(58,26,56,.88) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  opacity: 0;
  transition: opacity var(--t-sl);
}
.port-big:hover .port-big-overlay { opacity: 1; }
.port-big-title { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--alb); margin-bottom: .3rem; }
.port-big-meta { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--saff-lt); }

.port-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
}
.port-sm {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
}
.port-sm img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.port-sm:hover img { transform: scale(1.06); }
.port-sm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, transparent 30%, rgba(58,26,56,.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--t-sl);
}
.port-sm:hover .port-sm-overlay { opacity: 1; }
.port-sm-title { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--alb); margin-bottom: .2rem; }
.port-sm-meta { font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--saff-lt); }

/* Bottom row */
.port-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.port-row .port-sm { height: 240px; }

/* ==================================================
   PHILOSOPHIE — Two column prose + oversized quote
   ================================================== */
.phil-bg { background: var(--bone); }

.phil-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 7rem;
  align-items: start;
}
.phil-left blockquote {
  position: sticky;
  top: 9rem;
}
.phil-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 7rem;
  color: var(--chalk);
  line-height: .6;
  margin-bottom: 1.2rem;
  display: block;
}
.phil-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-style: italic;
  color: var(--plum);
  line-height: 1.35;
  margin-bottom: 1.5rem;
}
.phil-by {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--saffron);
}

.phil-right p {
  font-size: .95rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.phil-right h3 {
  font-size: 1.5rem;
  color: var(--plum);
  margin: 2rem 0 .9rem;
}
.phil-right a.link {
  color: var(--saffron);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(201,126,24,.3);
  transition: border-color var(--t);
}
.phil-right a.link:hover { border-color: var(--saffron); }

/* ==================================================
   TESTIMONIALS — Asymmetric: 1 big + 2 stacked
   ================================================== */
.rev-bg { background: var(--white); }

.rev-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}
.rev-featured {
  background: var(--plum);
  border-radius: var(--r-xl);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.rev-featured::before {
  content: '\201C';
  position: absolute;
  top: -2rem; right: 1rem;
  font-family: 'DM Serif Display', serif;
  font-size: 18rem;
  font-weight: 400;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
}
.rev-feat-stars { display: flex; gap: 3px; margin-bottom: 2rem; }
.rev-feat-stars i { color: var(--saff-lt); font-size: .8rem; }
.rev-feat-text {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-style: italic;
  color: var(--alb);
  line-height: 1.5;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.rev-feat-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.rev-ava {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.2);
  flex-shrink: 0;
}
.rev-ava img { width: 100%; height: 100%; object-fit: cover; }
.rev-name { font-size: .92rem; font-weight: 500; color: var(--alb); }
.rev-role { font-size: .75rem; color: rgba(245,243,238,.45); margin-top: .12rem; }

.rev-stack { display: flex; flex-direction: column; gap: 2rem; }
.rev-mini {
  background: var(--alb);
  border: 1px solid var(--chalk);
  border-radius: var(--r-xl);
  padding: 2.2rem 2rem;
  flex: 1;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.rev-mini:hover {
  border-color: var(--plum-lt);
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(58,26,56,.08);
}
.rev-mini-stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.rev-mini-stars i { color: var(--saffron); font-size: .7rem; }
.rev-mini-text {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-md);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}
.rev-mini-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--chalk-lt);
}
.rev-mini-ava { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.rev-mini-ava img { width: 100%; height: 100%; object-fit: cover; }
.rev-mini-name { font-size: .85rem; font-weight: 500; color: var(--plum); }
.rev-mini-role { font-size: .72rem; color: var(--mist); margin-top: .08rem; }

/* ==================================================
   PROZESS — Clean numbered rows (same-width grid)
   ================================================== */
.proc-bg { background: var(--bone); }
.proc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: flex-end;
}
.proc-header h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
.proc-header p { font-size: .95rem; font-weight: 300; color: var(--mist); line-height: 1.75; }
.proc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}
.proc-item {
  padding: 2.2rem 1.8rem;
  background: var(--white);
  border: 1px solid var(--chalk);
  border-radius: var(--r-xl);
  position: relative;
  transition: background var(--t), border-color var(--t), transform var(--t);
  overflow: hidden;
}
.proc-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--plum));
  transform: scaleX(0);
  transition: transform var(--t-sl);
  transform-origin: left;
}
.proc-item:hover { border-color: var(--plum-xlt); transform: translateY(-5px); }
.proc-item:hover::after { transform: scaleX(1); }
.proc-n {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--chalk);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -.04em;
  transition: color var(--t);
}
.proc-item:hover .proc-n { color: var(--plum-xlt); }
.proc-item h3 {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--plum);
  margin-bottom: .55rem;
}
.proc-item p {
  font-size: .8rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.65;
}

/* ==================================================
   KONTAKT — Split dark/light
   ================================================== */
.kont-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.kont-form-side {
  background: var(--plum);
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kont-form-side .tag { color: var(--saff-lt); }
.kont-form-side .tag::before { background: var(--saff-lt); }
.kont-form-side h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--alb);
  margin-bottom: .5rem;
  line-height: 1.1;
}
.kont-form-side h2 em { font-style: italic; color: var(--saff-lt); }
.kont-sub { font-size: .9rem; font-weight: 300; color: rgba(245,243,238,.5); margin-bottom: 2.5rem; line-height: 1.7; }

.fg { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.2rem; }
.fg label { font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(245,243,238,.4); }
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  color: var(--alb);
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  padding: .85rem 1.1rem;
  outline: none;
  transition: border-color var(--t), background var(--t);
  width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--saff-lt);
  background: rgba(255,255,255,.12);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(245,243,238,.3); }
.fg select option { background: var(--plum); color: var(--alb); }
.fg select { appearance: none; cursor: pointer; }
.fg textarea { resize: vertical; min-height: 110px; }

.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.kont-info-side {
  background: var(--bone);
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kont-info-side h3 {
  font-size: 1.8rem;
  color: var(--plum);
  margin-bottom: 2rem;
}
.kont-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
.kc {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.3rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--chalk);
  border-radius: var(--r-lg);
  transition: border-color var(--t), transform var(--t);
}
.kc:hover { border-color: var(--plum-xlt); transform: translateX(4px); }
.kc-ico {
  width: 40px; height: 40px;
  background: var(--plum);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--alb);
  font-size: .85rem;
  flex-shrink: 0;
}
.kc-label { font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--mist-lt); margin-bottom: .2rem; }
.kc-val { font-size: .9rem; font-weight: 500; color: var(--plum); }
.kc-val a { color: inherit; text-decoration: none; transition: color var(--t); }
.kc-val a:hover { color: var(--saffron); }

.kont-social-row { display: flex; gap: .7rem; }
.ks {
  width: 40px; height: 40px;
  border: 1.5px solid var(--chalk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mist-lt);
  text-decoration: none;
  font-size: .9rem;
  transition: all var(--t);
}
.ks:hover { border-color: var(--plum); color: var(--plum); background: rgba(58,26,56,.05); }

/* ==================================================
   BUTTONS
   ================================================== */
.btn-p {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 2.2rem;
  background: var(--plum); color: var(--alb);
  font-family: 'Outfit', sans-serif; font-size: .77rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; text-decoration: none;
  border: none; border-radius: var(--r); cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-p:hover { background: var(--plum-md); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(58,26,56,.3); }

.btn-s {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 2.1rem;
  background: var(--saffron); color: var(--white);
  font-family: 'Outfit', sans-serif; font-size: .77rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; text-decoration: none;
  border: none; border-radius: var(--r); cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.btn-s:hover { background: var(--saff-lt); transform: translateY(-2px); }

.btn-o {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .88rem 2rem;
  background: transparent; color: var(--plum);
  font-family: 'Outfit', sans-serif; font-size: .77rem; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase; text-decoration: none;
  border: 1.5px solid var(--plum-xlt); border-radius: var(--r); cursor: pointer;
  transition: all var(--t);
}
.btn-o:hover { border-color: var(--plum); background: rgba(58,26,56,.05); }

.btn-alb {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 2.2rem;
  background: var(--alb); color: var(--plum);
  font-family: 'Outfit', sans-serif; font-size: .77rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; text-decoration: none;
  border: none; border-radius: var(--r); cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.btn-alb:hover { background: var(--bone); transform: translateY(-2px); }

/* ==================================================
   POPUP
   ================================================== */
.popup-bg {
  position: fixed; inset: 0;
  background: rgba(26,17,24,.65);
  backdrop-filter: blur(10px);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t);
}
.popup-bg.on { opacity: 1; pointer-events: auto; }
.popup-box {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 4rem 3.5rem;
  max-width: 460px; width: 90%;
  text-align: center;
  transform: translateY(30px) scale(.94);
  transition: transform var(--t);
}
.popup-bg.on .popup-box { transform: translateY(0) scale(1); }
.popup-check {
  width: 70px; height: 70px;
  background: var(--plum); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.8rem;
  color: var(--alb); font-size: 1.7rem;
}
.popup-box h3 { font-size: 2.2rem; color: var(--plum); margin-bottom: .6rem; }
.popup-box p { font-size: .9rem; color: var(--mist); font-weight: 300; line-height: 1.7; margin-bottom: 2rem; }

/* ==================================================
   COOKIE
   ================================================== */
.ck-bar {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(160px);
  width: min(680px, calc(100vw - 3rem));
  background: var(--plum);
  border-radius: var(--r-xl);
  padding: 1.6rem 2rem;
  display: flex; align-items: center; gap: 1.6rem;
  z-index: 300;
  box-shadow: 0 24px 80px rgba(58,26,56,.35);
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.ck-bar.on { transform: translateX(-50%) translateY(0); }
.ck-icon { font-size: 1.6rem; flex-shrink: 0; }
.ck-txt { flex: 1; font-size: .85rem; color: rgba(245,243,238,.7); font-weight: 300; line-height: 1.5; }
.ck-txt strong { color: var(--alb); }
.ck-txt a { color: var(--saff-lt); text-decoration: none; }
.ck-btns { display: flex; gap: .65rem; flex-shrink: 0; }
.ck-yes {
  padding: .6rem 1.4rem; background: var(--saffron); color: var(--white);
  border: none; border-radius: var(--r);
  font-family: 'Outfit', sans-serif; font-size: .73rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
  transition: background var(--t);
}
.ck-yes:hover { background: var(--saff-lt); }
.ck-no {
  padding: .6rem 1.1rem; background: transparent;
  color: rgba(245,243,238,.4); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r); font-family: 'Outfit', sans-serif; font-size: .73rem;
  cursor: pointer; transition: all var(--t);
}
.ck-no:hover { color: var(--alb); border-color: rgba(255,255,255,.35); }

/* ==================================================
   FOOTER
   ================================================== */
.ftr { background: var(--ink); padding: 6rem 0 0; }
.ftr-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 4.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ftr-brand .logo { color: var(--alb); }
.ftr-brand .logo-dot { background: var(--saff-lt); }
.ftr-brand p { font-size: .88rem; color: rgba(245,243,238,.4); font-weight: 300; line-height: 1.7; margin: 1.2rem 0 2rem; max-width: 260px; }
.ftr-social { display: flex; gap: .6rem; }
.ftrs {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,243,238,.4); text-decoration: none; font-size: .85rem;
  transition: all var(--t);
}
.ftrs:hover { border-color: var(--saffron); color: var(--saff-lt); background: rgba(201,126,24,.1); }

.ftr-col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(245,243,238,.28); margin-bottom: 1.5rem;
}
.ftr-links { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.ftr-links a { font-size: .87rem; color: rgba(245,243,238,.55); text-decoration: none; font-weight: 300; transition: color var(--t); }
.ftr-links a:hover { color: var(--alb); }

.ftr-contact { list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.ftr-contact li { display: flex; align-items: flex-start; gap: .8rem; font-size: .85rem; color: rgba(245,243,238,.5); font-weight: 300; }
.ftr-contact i { color: var(--saff-lt); width: 14px; margin-top: .2rem; flex-shrink: 0; }
.ftr-contact a { color: inherit; text-decoration: none; transition: color var(--t); }
.ftr-contact a:hover { color: var(--alb); }

.ftr-base {
  padding: 1.8rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.ftr-base p { font-size: .76rem; color: rgba(245,243,238,.25); }
.ftr-policy { display: flex; gap: 2rem; list-style: none; }
.ftr-policy a { font-size: .76rem; color: rgba(245,243,238,.3); text-decoration: none; transition: color var(--t); }
.ftr-policy a:hover { color: var(--alb); }

/* ==================================================
   INNER PAGE HERO
   ================================================== */
.pg-hero {
  padding: 9.5rem 0 5rem;
  background: var(--plum);
  position: relative;
  overflow: hidden;
}
.pg-hero::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(135deg, transparent, rgba(58,26,56,.6));
  pointer-events: none;
}
.pg-hero h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400; color: var(--alb);
  margin: .6rem 0 1.2rem; line-height: .9;
  position: relative; z-index: 1;
}
.pg-hero h1 em { font-style: italic; color: var(--saff-lt); }
.pg-hero p {
  max-width: 560px;
  color: rgba(245,243,238,.6);
  font-weight: 300; font-size: 1rem; line-height: 1.75;
  position: relative; z-index: 1;
}
.pg-hero .tag { color: var(--saff-lt); }
.pg-hero .tag::before { background: var(--saff-lt); }

/* ---- ABOUT PAGE ---- */
.story-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.st-img { position: relative; border-radius: var(--r-xl); overflow: hidden; height: 540px; }
.st-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.st-img:hover img { transform: scale(1.04); }
.st-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--saffron); color: var(--white);
  border-radius: var(--r-xl); padding: 1.8rem 2rem;
  text-align: center; box-shadow: 0 16px 48px rgba(201,126,24,.3);
}
.st-badge strong { display: block; font-family: 'DM Serif Display', serif; font-size: 3rem; line-height: 1; }
.st-badge span { font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.st-body p { font-size: .94rem; color: var(--mist); font-weight: 300; line-height: 1.85; margin-bottom: 1.1rem; }
.st-body h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1.5rem; }

/* Team */
.team-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.tm-card { background: var(--white); border: 1px solid var(--chalk); border-radius: var(--r-xl); overflow: hidden; transition: transform var(--t), box-shadow var(--t); }
.tm-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(58,26,56,.1); }
.tm-photo { height: 280px; overflow: hidden; }
.tm-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.tm-card:hover .tm-photo img { transform: scale(1.06); }
.tm-info { padding: 1.6rem 1.8rem; }
.tm-role { font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--saffron); margin-bottom: .35rem; }
.tm-info h3 { font-size: 1.25rem; color: var(--plum); margin-bottom: .65rem; }
.tm-info p { font-size: .85rem; font-weight: 300; color: var(--mist); line-height: 1.65; }

/* Values */
.val-g { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.vb { padding: 2.8rem; border: 1px solid var(--chalk); border-radius: var(--r-xl); background: var(--white); transition: border-color var(--t), transform var(--t); }
.vb:hover { border-color: var(--plum-xlt); transform: translateY(-4px); }
.vb-n { font-family: 'DM Serif Display', serif; font-size: 3.5rem; color: var(--chalk); line-height: 1; margin-bottom: 1.2rem; transition: color var(--t); }
.vb:hover .vb-n { color: var(--plum-xlt); }
.vb h3 { font-size: 1.3rem; color: var(--plum); margin-bottom: .6rem; }
.vb p { font-size: .87rem; font-weight: 300; color: var(--mist); line-height: 1.7; }

/* Policy */
.pol-wrap { max-width: 760px; }
.pol-wrap h2 { font-size: 1.6rem; color: var(--plum); margin: 2.5rem 0 .8rem; }
.pol-wrap h3 { font-size: 1.15rem; color: var(--plum); margin: 1.8rem 0 .6rem; }
.pol-wrap p { font-size: .9rem; color: var(--mist); font-weight: 300; line-height: 1.85; margin-bottom: .9rem; }
.pol-wrap ul { margin: .8rem 0 1rem 1.5rem; font-size: .9rem; color: var(--mist); font-weight: 300; line-height: 1.8; }
.pol-wrap a { color: var(--saffron); }
.pol-date { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--chalk); font-size: .75rem; color: var(--mist-lt); }

/* ==================================================
   ANIMATIONS
   ================================================== */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.rv.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .18s; }
.d3 { transition-delay: .26s; }
.d4 { transition-delay: .34s; }
.d5 { transition-delay: .42s; }

/* ==================================================
   STORY-IMG BADGE — fix overflow clip
   ================================================== */
/* Badge is inside overflow:hidden img containers — move to absolute within padding */
.st-img { overflow: visible; }
.st-img img { border-radius: var(--r-xl); }

/* ==================================================
   PORTFOLIO — always show info on touch screens
   ================================================== */
@media (hover: none) {
  .port-big-overlay,
  .port-sm-overlay { opacity: 1; }
  .port-big img,
  .port-sm img { transform: none !important; }
}

/* ==================================================
   RESPONSIVE — 1200px (large tablet / small laptop)
   ================================================== */
@media (max-width: 1200px) {
  .hero { grid-template-columns: 60px 1fr 1fr; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img { height: 400px; }
  .kont-wrap { grid-template-columns: 1fr; }
  .kont-form-side { padding: 4.5rem 3.5rem; }
  .kont-info-side { padding: 4.5rem 3.5rem; }
}

/* ==================================================
   RESPONSIVE — 960px (tablet landscape)
   ================================================== */
@media (max-width: 960px) {
  .sect { padding: 5.5rem 0; }
  .sect-sm { padding: 3rem 0; }

  /* Hero — single column stack */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-side { display: none; }
  .hero-text { padding: 7rem 2.2rem 2.5rem; }
  .hero-visual { height: 340px; }
  .hero-h1 { font-size: clamp(2.8rem, 8vw, 5rem); }
  .hero-data { grid-column: 1; grid-template-columns: 1fr 1fr; }

  /* Leistungen tabs — horizontal scrolling row */
  .leist-layout { grid-template-columns: 1fr; }
  .leist-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid var(--chalk);
  }
  .leist-tab { flex: 1; min-width: 120px; }
  .leist-tab::before {
    bottom: 0; top: auto;
    left: 0; right: 0;
    width: 100%; height: 3px;
    transform: scaleX(0);
    transform-origin: left;
  }
  .leist-tab.active::before { transform: scaleX(1); }
  .leist-panel { padding: 2.5rem 2.8rem; }

  /* Portfolio */
  .port-hero { grid-template-columns: 1fr; }
  .port-big { height: 340px; }
  .port-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .port-sm { min-height: 200px; }

  /* Philosophy */
  .phil-inner { grid-template-columns: 1fr; gap: 3rem; }
  .phil-left blockquote { position: static; }
  .phil-mark { font-size: 5rem; }

  /* Testimonials */
  .rev-layout { grid-template-columns: 1fr; }
  .rev-featured { padding: 2.5rem; }

  /* Footer */
  .ftr-grid { grid-template-columns: 1fr 1fr; }
}

/* ==================================================
   RESPONSIVE — 768px (tablet portrait / large phone)
   ================================================== */
@media (max-width: 768px) {
  .sect { padding: 4rem 0; }
  .wrap { padding: 0 1.4rem; }

  /* Mobile nav overlay */
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--alb);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 199;
  }
  .nav.open { display: flex; }
  .nav ul { flex-direction: column; gap: 2rem; align-items: center; }
  .nav a { font-size: 1.25rem; color: var(--plum); }
  .mob-btn { display: block; }
  .hdr-cta { display: none; }
  .hdr-inner { gap: .8rem; }

  /* Hero */
  .hero-text { padding: 6.5rem 1.4rem 2rem; }
  .hero-desc { max-width: 100%; }
  .hero-actions { flex-direction: column; gap: .8rem; }
  .hero-actions .btn-s,
  .hero-actions .btn-o { width: 100%; justify-content: center; }
  .hero-visual { height: 280px; }
  .hero-data { grid-template-columns: 1fr 1fr; }
  .hero-datum { padding: 1.2rem 1rem; gap: .8rem; }
  .hd-icon { font-size: .9rem; }
  .hd-val { font-size: .8rem; }

  /* Leistungen tabs — scrollable row on small screens */
  .leist-tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .leist-tab { min-width: 130px; flex-shrink: 0; }
  .leist-panel { padding: 2rem 1.6rem; }
  .leist-panel-num { font-size: 5rem; }
  .leist-panel h3 { font-size: 1.7rem; }

  /* Process */
  .proc-header { grid-template-columns: 1fr; gap: 1rem; }
  .proc-grid { grid-template-columns: 1fr; gap: .8rem; }
  .proc-item { padding: 1.8rem 1.4rem; }
  .proc-n { font-size: 2.8rem; }

  /* Portfolio */
  .port-header { flex-direction: column; align-items: flex-start; }
  .port-cats { flex-wrap: wrap; gap: .4rem; }
  .port-big { height: 280px; }
  .port-side { grid-template-columns: 1fr; }
  .port-sm { min-height: 220px; }
  .port-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .port-row .port-sm { height: 180px; }
  /* always show overlay info on mobile */
  .port-big-overlay,
  .port-sm-overlay { opacity: 1; }

  /* About section */
  .about-inner { gap: 2rem; }
  .about-img { height: 300px; }
  .about-stats { gap: 1.5rem; }
  .astat-val { font-size: 2.2rem; }

  /* Testimonials */
  .rev-featured { padding: 2rem 1.6rem; }
  .rev-feat-text { font-size: 1.1rem; }
  .rev-stack { gap: 1.2rem; }

  /* Contact */
  .kont-form-side { padding: 3rem 1.6rem; }
  .kont-info-side { padding: 3rem 1.6rem; }
  .fg-row { grid-template-columns: 1fr; }

  /* About / inner page */
  .story-two-col { grid-template-columns: 1fr; }
  .team-g { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .val-g { grid-template-columns: 1fr; }

  /* Footer */
  .ftr-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ftr-base { flex-direction: column; gap: .8rem; align-items: flex-start; }

  /* Cookie */
  .ck-bar { flex-direction: column; gap: 1rem; bottom: 1rem; }
  .ck-btns { width: 100%; justify-content: flex-end; }

  /* Inner page hero */
  .pg-hero { padding: 7rem 0 3.5rem; }
  .pg-hero h1 { font-size: clamp(2.8rem, 10vw, 5rem); }
}

/* ==================================================
   RESPONSIVE — 480px (small phones)
   ================================================== */
@media (max-width: 480px) {
  .wrap { padding: 0 1rem; }
  .sect { padding: 3rem 0; }

  /* Hero */
  .hero-h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-visual { height: 230px; }
  .hero-data { grid-template-columns: 1fr; }
  .hero-datum { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.07); }
  .hero-datum:last-child { border-bottom: none; }

  /* About stats */
  .about-stats { flex-direction: column; gap: 1.2rem; }

  /* Leistungen */
  .leist-panel { padding: 1.6rem 1.2rem; }

  /* Process */
  .proc-grid { gap: .6rem; }

  /* Portfolio */
  .port-row { grid-template-columns: 1fr; }
  .port-row .port-sm { height: 220px; }

  /* Team */
  .team-g { grid-template-columns: 1fr; }

  /* Footer policy links */
  .ftr-policy { flex-direction: column; gap: .6rem; }

  /* Forms */
  .fg-row { grid-template-columns: 1fr; }

  /* Tabs label — hide icon, show only text */
  .leist-tab-ico { display: none; }
  .leist-tab { min-width: 100px; padding: 1rem 1.2rem; }
}
