@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Patrick+Hand&display=swap');

:root{
  --pink: #FF238D;
  --pink-pale: #FFE3F0;
  --blue: #0080FF;
  --black: #0a0a0a;
  --section-gap: 9.375vw;
  --handwritten: 'Patrick Hand', cursive;
  --pencil: #8c6f7e;
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: 'Roboto', Arial, sans-serif;
  overflow-x: hidden;
  overflow-y: visible;
}

a{ color: inherit; text-decoration: none; }
img{ display:block; max-width:none; }

/* ---------- Canvas scaling engine ----------
   Each page is built as a fixed-pixel canvas (like the original
   Readymag design), then uniformly scaled with a CSS transform so it
   always fills the viewport width, same trick Readymag itself uses. */

.rm-wrap{
  position: relative;
  width: 100%;
  overflow: hidden;
}

.rm-canvas{
  position: relative;
  transform-origin: top left;
  background: #fff;
}

.rm-canvas.mobile{ display:none; }

.rm-el{
  position: absolute;
}

.rm-text p{ margin: 0; }
.rm-text{ white-space: pre-wrap; }

/* ---------- Nav (fixed, outside the scaled canvas so it stays put and
   stays a consistent size while the page underneath scrolls) ---------- */
.site-nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  pointer-events: none;
}
.nav-inner{
  position: relative;
  padding: 1.375vw 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-inner > *{ pointer-events: auto; }
.site-logo{ display:block; line-height: 0; transition: opacity .12s ease; }
.site-logo img{ width: auto; height: 3.875vw; display:block; transition: opacity .2s ease; }
.site-logo:hover img{ opacity: .75; }
body.logo-hidden .site-logo{ opacity: 0; pointer-events: none; transition: opacity .4s ease; }
.site-nav nav{
  display:flex;
  gap: 2.75vw;
  transition: opacity .25s ease, transform .3s ease;
}
.site-nav nav a{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: 2vw;
  color: var(--pink);
  text-decoration: none;
  letter-spacing: .03em;
  transition: color .15s ease;
}
.site-nav nav a:hover{ color: var(--blue); }
.site-nav nav a.lang-switch{
  position: absolute;
  left: 10.5vw;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85vw;
  font-weight: 700;
  color: var(--pink);
  opacity: .55;
  border: none;
  border-radius: 0;
  padding: 0;
  letter-spacing: .06em;
}
.site-nav nav a.lang-switch:hover{ background: none; color: var(--pink); opacity: 1; }
body.nav-scrolled .site-nav nav{
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}
.nav-burger{
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-burger span{
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--pink);
  transition: transform .25s ease, opacity .2s ease;
}

@media (max-width: 700px){
  .nav-inner{ padding: 14px 12px; }
  .site-logo img{ width: auto; height: 40px; }

  .nav-burger{ display: flex; }
  .site-nav.is-open .nav-burger span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .site-nav.is-open .nav-burger span:nth-child(2){ opacity: 0; }
  .site-nav.is-open .nav-burger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  .site-nav nav{
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-width: 168px;
    margin-top: 8px;
    padding: 8px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,.16);
    opacity: 0;
    transform: translateY(-8px) scale(.97);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-nav.is-open nav{
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  body.nav-scrolled .site-nav.is-open nav{
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .site-nav nav a{
    font-size: 15px;
    font-weight: 700;
    padding: 12px 14px;
    background: none;
    color: var(--pink);
    border-radius: 10px;
    text-align: left;
  }
  .site-nav nav a:hover{ background: #f7e2ee; color: var(--pink); }
  .site-nav nav a.lang-switch{
    position: static;
    transform: none;
    order: 4;
    margin-top: 4px;
    padding-top: 12px;
    background: transparent;
    color: var(--pink);
    opacity: .6;
    border: none;
    border-top: 1px solid #eee;
    border-radius: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
  }
  .site-nav nav a.lang-switch:hover{ background: transparent; color: var(--pink); opacity: 1; }
}

/* ---------- Footer ---------- */
.site-footer{
  background: #f6ecf1;
  color: #4a3d44;
  padding: 1vw 3vw;
}
.site-footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.site-footer-inner .fl{ display:flex; align-items:center; gap:14px; }
.site-footer-inner .fr{ display:flex; align-items:center; gap:14px; }
.site-footer img{ width: auto; height: 20px; display:block; }
.site-footer small{
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 12.5px;
  color: rgba(74,61,68,.7);
}
.site-footer a{
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--pink);
}
.site-footer a:hover{ color: var(--blue); }
@media (max-width: 700px){
  .site-footer{ padding: 22px 20px; text-align:center; }
  .site-footer-inner{ flex-direction: column; }
}

/* ---------- Buttons ---------- */
.rm-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: background-color .2s ease;
  border: none;
}
.rm-btn:hover{ background-color: #0080FF !important; }

/* ---------- Hero / background video ---------- */
.rm-video{ object-fit: cover; width: 100%; height: 100%; }

/* ---------- Full-viewport hero (index page) — covers the whole first
   screen so the marquee/content below only appears once you scroll. ---------- */
.hero-full{
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 480px;
  overflow: hidden;
  background: #000;
}
.hero-full-video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-full-overlay{
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.hero-wordmark{ max-width: min(640px, 64vw); height: auto; }
.hero-tagline{ margin-top: 16px; }
.hero-tagline div{ font-size: inherit !important; }
.hero-tagline span{ font-size: 20px !important; }
.hero-scroll-cue{
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 12px;
}
.hero-scroll-cue span{
  position: absolute;
  left: 50%; top: 6px;
  width: 4px; height: 8px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: cc-scroll-cue 1.6s ease-in-out infinite;
}
@keyframes cc-scroll-cue{
  0%{ opacity:1; top:6px; }
  70%{ opacity:0; top:16px; }
  100%{ opacity:0; top:6px; }
}
@media (max-width: 700px){
  .hero-full{ display:none; }
}

/* ---------- Marquee (custom-built, not the raw embed) ---------- */
.cc-marquee{
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: var(--pink-pale);
  padding: 9px 0;
  border: 5px solid var(--pink);
  box-sizing: border-box;
  margin: 64px 0;
}
.cc-marquee-track{
  display: inline-flex;
  width: max-content;
  animation: cc-marquee-scroll 26s linear infinite;
}
.cc-marquee-group{ display:inline-flex; align-items:center; }
.cc-marquee .word{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--pink);
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.cc-marquee .dot{
  flex: 0 0 auto;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--pink);
  margin: 0 12px;
}
@keyframes cc-marquee-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ---------- YouTube lite-embed ---------- */
.yt-lite{
  position: absolute;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.yt-lite::before{
  content:"";
  position:absolute; inset:0;
  background: rgba(0,0,0,.15);
}
.yt-lite .yt-play{
  position:relative;
  z-index:2;
  width: 64px; height:64px;
  border-radius:50%;
  border: 2px solid #fff;
  background: rgba(0,0,0,.35);
  display:flex; align-items:center; justify-content:center;
}
.yt-lite .yt-play::after{
  content:"";
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.yt-lite{ overflow: hidden; }
.yt-lite iframe{ border:0; }

/* ---------- Work grid card ---------- */
.work-card{ position:absolute; display:block; overflow:hidden; }
.work-card video, .work-card .yt-lite{ width:100%; height:100%; }
.grid-overlay{
  position:absolute; inset:0;
  background: var(--pink);
  opacity: 0;
  transition: opacity .25s ease;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-weight:400; font-size:10px; text-align:center;
  padding: 0 20px;
}
.work-card:hover .grid-overlay{ opacity: 1; }

.project-meta{ padding-top: 2px; }
.project-title{
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -.01em;
  color: #111;
  text-transform: uppercase;
}
.project-sub{
  margin: 4px 0 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 13.5px;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* ---------- Impressum readable page ---------- */
.rm-text a{ color: var(--pink); text-decoration: underline; }

/* =====================================================================
   Mobile layout — a hand-built, properly-flowing version (not a shrunk
   copy of the desktop canvas), shown below the breakpoint instead of
   the absolute-positioned .rm-wrap.
   ===================================================================== */

.m-wrap{ display:none; }

@media (max-width: 700px){
  .rm-wrap{ display:none; }
  .m-wrap{ display:block; min-height:100vh; }
}

.m-flow{ padding: 90px 16px 60px; max-width: 640px; margin: 0 auto; }
.m-flow .cc-marquee{ width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }

.m-block{ margin-bottom: 22px; }
.m-block:last-child{ margin-bottom: 0; }

.m-text{ font-size: 15px; line-height: 1.45; }
.m-text > div{ font-size: inherit !important; }

.m-img{ width: 100%; height: auto; display:block; border-radius: 4px; }

.m-video-wrap{ width: 100%; aspect-ratio: 16/9; position:relative; overflow:hidden; border-radius:4px; }
.m-video{ width:100%; height:100%; object-fit:cover; display:block; }
.m-yt{ position:absolute; inset:0; width:100%; height:100%; }

.m-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 14px 28px; font-weight:900; font-size:16px;
}

.m-marquee{ width:100%; height:34px; overflow:hidden; }

.m-card{ display:block; margin-bottom: 26px; }
.m-video-wrap.m-card, .m-card .m-video{ border-radius: 4px; }
.m-card{ position:relative; }
.m-card .m-video{ width:100%; aspect-ratio: 16/9; object-fit:cover; border-radius:4px; display:block; }
.m-card-title{ margin-top: 8px; font-size: 14px; font-weight: 700; color:#111; }

.m-hero{
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -90px;
  margin-bottom: 0;
  overflow: hidden;
}
.m-hero .m-video-wrap{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  border-radius: 0;
}
.m-hero .m-video{ width: 100%; height: 100%; object-fit: cover; }
.m-hero-overlay{
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
}
.m-hero-overlay img{ max-width: 70%; margin: 0 auto; }

.legal-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1.5px solid var(--pink);
  border-radius: 999px;
  color: var(--pink);
  background: transparent;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease;
}
.legal-pill:hover{ background: var(--pink); color: #fff; }

/* ---------- Project credits (work detail pages) ---------- */
.credits-list{
  padding-top: 4vw;
  padding-bottom: var(--section-gap);
  position: relative;
  z-index: 2;
  background: #fff;
}
.credits-heading{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 1.8vw, 34px);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--pink);
  margin: 0 0 2vw;
}
.credits-grid{
  column-count: 2;
  column-gap: 4vw;
}
.credit-row{
  break-inside: avoid;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1vw;
  padding: 0.55vw 0;
  border-bottom: 1px solid rgba(255,35,141,.15);
}
.credit-role{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 0.85vw, 16px);
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--pink);
  opacity: .75;
  flex: 1.1 1 0;
}
.credit-name{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 0.95vw, 18px);
  color: var(--pink);
  text-align: right;
  flex: 1 1 0;
}
.credit-note{
  break-inside: avoid;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: clamp(11px, 0.8vw, 15px);
  color: var(--pink);
  opacity: .55;
  padding: 0.8vw 0 0;
}

@media (max-width: 700px){
  .credits-list{ padding-top: 40px; padding-bottom: 90px; }
  .credits-heading{ font-size: 22px; margin-bottom: 20px; }
  .credits-grid{ column-count: 1; }
  .credit-row{ padding: 10px 0; gap: 12px; }
  .credit-role{ font-size: 12px; }
  .credit-name{ font-size: 14px; }
  .credit-note{ font-size: 11px; }
}

/* ---------- Legal page (Impressum & Datenschutz) ---------- */
.legal-page{
  max-width: 1100px;
  margin: 0 auto;
  padding: 130px 24px 100px;
}
.legal-header{ margin-bottom: 56px; }
.legal-back{
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 24px;
}
.legal-back:hover{ opacity: .7; }
.legal-header h1{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: #111;
  margin: 0;
  letter-spacing: -.01em;
}
.legal-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.legal-col h2{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--pink);
  margin: 0 0 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pink);
}
.legal-section{ margin-bottom: 30px; }
.legal-section h3{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #111;
  margin: 0 0 8px;
}
.legal-section p{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.65;
  color: #4a4a4a;
  margin: 0 0 10px;
}
.legal-section p:last-child{ margin-bottom: 0; }
.legal-section a{ color: var(--pink); text-decoration: underline; }

@media (max-width: 900px){
  .legal-page{ padding: 100px 20px 70px; }
  .legal-header h1{ font-size: 30px; }
  .legal-grid{ grid-template-columns: 1fr; gap: 8px; }
  .legal-col{ margin-bottom: 20px; }
}

/* ---------- Hover-reveal cards (About page team cards etc.) ---------- */
.hv-trigger{ background: transparent; cursor: default; }
.hv-target{ opacity: 0; transition: opacity .25s ease; pointer-events: none; }

/* ---------- Shared page-section rhythm (About / Work / Contact) ---------- */
.page-section{
  padding: 0 3vw;
}
.page-eyebrow{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 0 0 14px;
}

/* ---------- About page (fully custom, responsive layout) ---------- */
.about-hero{
  padding-top: 11.75vw;
  padding-bottom: var(--section-gap);
  max-width: 76vw;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 2vw;
  align-items: center;
}
.about-kicker{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: 3.375vw;
  line-height: 1.02;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 0 0 8px;
}
.about-kicker-names{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.3125vw, 25px);
  text-transform: uppercase;
  color: #111;
  margin: 0 0 10px;
}
.about-hero-sub{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(12px, 0.875vw, 17px);
  text-transform: uppercase;
  color: #8a8a8a;
  margin: 0;
  opacity: 0;
  transform: translateX(-36px);
  animation: about-swipe-in .5s cubic-bezier(.2,.8,.3,1) 1s forwards;
}
@keyframes about-swipe-in{
  to{ opacity: 1; transform: translateX(0); }
}
.about-portraits{
  display: flex;
  gap: 0.75vw;
}
.about-portrait{
  position: relative;
  flex: 1 1 0;
  border-radius: 3vw;
  overflow: hidden;
  background: #eee;
}
.about-portrait img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-portrait-overlay{
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 1.375vw;
  background: var(--pink);
  opacity: 0;
  transition: opacity .25s ease;
}
.about-portrait:hover .about-portrait-overlay,
.about-portrait.is-tapped .about-portrait-overlay{ opacity: 1; }
.about-portrait-name{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.2vw;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.6vw;
}
.about-portrait-roles{
  list-style: none;
  margin: 0; padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 27px);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.6;
  opacity: .9;
}

.about-shift{
  padding: var(--section-gap) 3vw;
  max-width: 74vw;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5vw;
  align-items: center;
}
.about-shift-heading{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: 4.5vw;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 2vw;
}
.about-shift-from{
  position: relative;
  display: inline-block;
  color: #111;
}
.about-shift-from::after{
  content: "";
  position: absolute;
  left: -2%; top: 52%;
  width: 0; height: .07em;
  background: var(--pink);
  transition: width 1.1s cubic-bezier(.65,0,.35,1);
}
.about-shift.is-active .about-shift-from::after{ width: 104%; }
.about-shift-to{
  display: inline-block;
  color: var(--pink);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}
.about-shift.is-active .about-shift-to{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}
.about-services{
  list-style: none;
  margin: 0; padding: 0.6vw 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6vw 1.6vw;
}
.about-services li{
  font-family: var(--handwritten);
  font-weight: 400;
  font-size: 2.1vw;
  line-height: 1.3;
  color: var(--pink);
  white-space: nowrap;
}
.about-services li:nth-child(1){ transform: rotate(-4deg); }
.about-services li:nth-child(2){ transform: rotate(2.5deg); }
.about-services li:nth-child(3){ transform: rotate(-2deg); }
.about-services li:nth-child(4){ transform: rotate(3.5deg); }
.about-shift-photo{
  aspect-ratio: 1 / 1;
  border-radius: 2vw;
  overflow: hidden;
  background: #eee;
}
.about-shift-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-team-wrap{
  margin-top: var(--section-gap);
  margin-bottom: var(--section-gap);
}
.about-team{
  max-width: 67.5vw;
  margin: 0 auto;
  background: var(--pink);
  border-radius: 2vw;
  padding: 3vw 3.2vw;
}
.about-team-heading{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.6vw;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 2.2vw;
}
.about-team-accent{ color: #fff; }
.about-team-body{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2.4vw;
}
.about-team-text p{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: 1.65;
  color: #fff;
  text-align: justify;
  text-wrap: pretty;
  -webkit-hyphens: auto;
  hyphens: auto;
  margin: 0 0 1vw;
}
.about-team-text p:last-child{ margin-bottom: 0; }
.about-team-photos{ display: flex; flex-direction: row; gap: 1.6vw; justify-content: center; }
.about-team-photo{
  border-radius: 1.3vw;
  overflow: hidden;
}
.about-team-photo-inner{ position: relative; overflow: hidden; }

.about-signoff{
  padding: 0 3vw var(--section-gap);
  max-width: 47.5vw;
  margin: 0 auto;
  text-align: center;
}
.about-signoff p:not(.about-signoff-name){
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.0625vw, 20px);
  line-height: 1.6;
  color: var(--pink);
  margin: 0 0 1.125vw;
}
.about-signoff-name{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
  color: var(--pink) !important;
  font-size: clamp(14px, 1vw, 19px) !important;
}

@media (max-width: 700px){
  .page-section{ padding: 0 24px; }
  .about-hero{ grid-template-columns: 1fr; max-width: none; padding-top: 132px; gap: 28px; }
  .about-portraits{ gap: 14px; }
  .about-portrait{ border-radius: 20px; }
  .about-shift{ grid-template-columns: 1fr; max-width: none; padding: 90px 24px; gap: 36px; }
  .about-shift-photo{ order: -1; aspect-ratio: 16/10; border-radius: 22px; }
  .about-team{
    max-width: none;
    padding: 24px;
    border-radius: 22px;
    border-width: 2px;
  }
  .about-team-body{
    gap: 20px;
  }
  .about-team-photos{ flex-wrap: nowrap; gap: 12px; }
  .about-team-heading{ font-size: 30px; margin-bottom: 16px; }
  .about-signoff{ padding: 0 24px 90px; max-width: none; }

  /* Mobile-safe font sizes — these are pure vw above the breakpoint, which
     would otherwise shrink to unreadable sizes on narrow phone widths. */
  .about-kicker{ font-size: 38px; }
  .about-kicker-names{ font-size: 18px; }
  .about-hero-sub{ font-size: 12.5px; }
  .about-portrait-name{ font-size: 24px; }
  .about-portrait-roles{ font-size: 16px; }
  .about-portrait-overlay{ padding: 18px; }
  .about-shift-heading{ font-size: 42px; }
  .about-services li{ font-size: 26px; }
  .about-team-text p{ font-size: 15px; text-align: left; }
  .about-signoff p:not(.about-signoff-name){ font-size: 15px; }
  .about-signoff-name{ font-size: 14px !important; }
}

/* ---------- About — iPad portrait: reads more like the mobile version's
   stacked, section-by-section rhythm (bigger elements, more scrolling)
   than the desktop side-by-side grid, which felt cramped at this width. ---------- */
@media (min-width: 701px) and (max-width: 1024px) and (orientation: portrait){
  /* A single consistent rhythm — ~10vw between sections, ~6vw within a
     section — instead of the previous huge/tiny/huge gap sequence. */
  .about-hero{ grid-template-columns: 1fr; max-width: none; padding-top: 10vw; padding-bottom: 10vw; gap: 6vw; }
  .about-portraits{ gap: 2.2vw; max-width: 70vw; margin: 0 auto; }
  .about-portrait{ border-radius: 2.5vw; }
  .about-shift{ grid-template-columns: 1fr; max-width: none; padding: 10vw 6vw; gap: 8vw; }
  .about-shift-photo{ order: -1; aspect-ratio: 16/10; border-radius: 2.5vw; }
  .about-team{
    max-width: none;
    padding: 4vw 5vw;
    border-radius: 2.5vw;
  }
  .about-team-body{
    gap: 6vw;
  }
  .about-team-photos{ flex-wrap: nowrap; gap: 2vw; }
  .about-team-heading{ font-size: 4.4vw; margin-bottom: 2.8vw; }
  .about-team-wrap{ margin-top: 10vw; margin-bottom: 10vw; }
  .about-signoff{ padding: 4vw 6vw 10vw; max-width: none; }

  .about-kicker{ font-size: 6.5vw; }
  .about-kicker-names{ font-size: 2.8vw; }
  .about-hero-sub{ font-size: 1.9vw; }
  .about-portrait-name{ font-size: 3.6vw; }
  .about-portrait-roles{ font-size: 2.4vw; }
  .about-shift-heading{ font-size: 7vw; }
  .about-services li{ font-size: 4.2vw; }
  .about-team-text p{ font-size: 2.3vw; }
  .about-signoff p:not(.about-signoff-name){ font-size: 2.3vw; }
  .about-signoff-name{ font-size: 2.1vw !important; }
}

/* ---------- About — iPad landscape: light nudge only. Desktop's 2-column
   layout stays; just adds enough breathing room below the hero so "Wir
   sind / Wir machen" isn't already peeking into view before scrolling. ---------- */
@media (min-width: 1024px) and (max-width: 1200px) and (orientation: landscape){
  .about-hero{ padding-bottom: 20vw; }
}

/* ---------- Work grid (fully custom, responsive layout) ---------- */
.work-grid-new{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  padding-top: 8vw;
  padding-bottom: var(--section-gap);
  padding-left: 3vw;
  padding-right: 3vw;
}
.work-tile{
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 1.375vw;
  overflow: hidden;
  background: #111;
}
.work-tile video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.work-tile:hover video{ transform: scale(1.045); }
.work-tile-scrim{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.625vw 1.5vw 1.25vw;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,0));
}
.work-tile-title{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(17px, 1.25vw, 26px);
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 4px;
}
.work-tile-sub{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 0.8125vw, 17px);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: rgba(255,255,255,.82);
  margin: 0;
}
.work-tile-cta{
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--pink);
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 0.875vw, 18px);
  text-transform: uppercase;
  letter-spacing: .02em;
  padding: 0 3vw;
  opacity: 0;
  transition: opacity .25s ease;
}
.work-tile:hover .work-tile-cta{ opacity: 1; }

@media (max-width: 700px){
  .work-grid-new{ grid-template-columns: 1fr; gap: 20px; padding-top: 108px; padding-bottom: 90px; }
  .work-tile{ border-radius: 18px; }
  .work-tile-scrim{ padding: 32px 18px 18px; }
  .work-tile-title{ font-size: 17px; }
  .work-tile-sub{ font-size: 12px; }
  .work-tile-cta{ display: none; }
}

/* ---------- Contact page (fully custom, responsive layout) ---------- */
.contact-layout{
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 2.8vw;
  align-items: center;
  max-width: none;
  margin: 0;
  padding-top: 11.75vw;
  padding-bottom: 6.875vw;
}
@media (min-width: 701px){
  body.page-contact{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  body.page-contact .contact-page{
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8.625vw;
    padding-bottom: 2vw;
  }
  body.page-contact .site-footer{
    flex-shrink: 0;
  }
  body.page-contact .contact-layout{
    padding-top: 0;
    padding-bottom: 0;
  }
}
.contact-video{
  border-radius: 1.75vw;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #111;
  width: 35vw;
}
.contact-video video{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.contact-info{ display: flex; flex-direction: column; gap: 1.875vw; max-width: 25vw; margin: 0; }
.contact-hotline h3{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(12px, 0.8125vw, 17px);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #111;
  margin: 0 0 0.875vw;
}
.contact-link{
  display: block;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.0625vw, 22px);
  color: var(--pink);
  text-decoration: none;
  margin-bottom: 4px;
  transition: color .15s ease;
}
.contact-link:hover{ color: var(--blue); }
.contact-link-lg{ font-size: clamp(17px, 1.1875vw, 25px); font-weight: 700; }
.contact-link-phone{ font-weight: 400; margin-top: 0.15vw; }
.contact-people{
  display: flex;
  flex-direction: column;
  gap: 1.375vw;
  margin-top: 8px;
}
.contact-person h3{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1vw, 21px);
  color: #111;
  margin: 0 0 2px;
}
.contact-person-role{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 0.8125vw, 17px);
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #8a8a8a;
  margin: 0 0 8px;
}
.contact-joke{ margin-top: 6px; }
.contact-joke .cc-process-cta-btn{ padding: 0.6vw 1.4vw; font-size: clamp(14px, 0.7vw, 16px); }

@media (max-width: 700px){
  .contact-layout{ grid-template-columns: 1fr; justify-content: stretch; max-width: none; gap: 36px; padding-top: 132px; padding-bottom: 90px; }
  .contact-video{ border-radius: 20px; width: 100%; }
  .contact-info{ max-width: none; margin: 0; align-items: center; text-align: center; }
  .contact-joke{ display: flex; justify-content: center; }
  .contact-hotline h3{ font-size: 12px; }
  .contact-link{ font-size: 15px; }
  .contact-link-lg{ font-size: 17px; }
  .contact-person h3{ font-size: 15px; }
  .contact-person-role{ font-size: 12px; }
  .contact-joke .cc-process-cta-btn{ padding: 13px 26px; font-size: 14px; }
}

/* ---------- Contact — iPad portrait: same composition as desktop (video +
   gap + info, centered as one unit), just scaled up so it feels more
   present on the bigger canvas. ---------- */
@media (min-width: 701px) and (max-width: 1024px) and (orientation: portrait){
  .contact-video{ width: 44vw; }
  .contact-info{ max-width: 32vw; gap: 2.4vw; }
  .contact-hotline h3{ font-size: clamp(15px, 1.1vw, 21px); }
  .contact-link{ font-size: clamp(19px, 1.5vw, 27px); }
  .contact-link-lg{ font-size: clamp(21px, 1.6vw, 30px); }
  .contact-person h3{ font-size: clamp(19px, 1.4vw, 25px); }
  .contact-person-role{ font-size: clamp(15px, 1.1vw, 21px); }
  .contact-joke .cc-process-cta-btn{ padding: 1.1vw 2.2vw; font-size: clamp(16px, 1.1vw, 20px); }
}

/* ---------- Home: desktop-only content below the hero (marquee + process) ---------- */
.home-desktop-extra{ background: #fff; }
@media (max-width: 700px){
  .home-desktop-extra{ display: none; }
}

.cc-process{
  padding: 0 48px 90px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cc-process-box{
  background: transparent;
  border: 4px solid var(--pink);
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 40px;
}
.cc-process-box:nth-child(even){ grid-template-columns: 0.9fr 1.1fr; }
.cc-process-box:nth-child(even) .cc-process-media{ order: 2; }
.cc-process-media{
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0,0,0,.06);
  border: 4px solid var(--pink);
  box-sizing: border-box;
}
.cc-process-media img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.cc-process-copy{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.cc-process-copy h3{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 2.8vw, 36px);
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--pink);
  margin: 0 0 18px;
}
.cc-process-copy ul{
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cc-process-copy li{
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--pink);
  opacity: .8;
}
.cc-process-cta{ text-align: center; padding: 10px 48px 110px; }
.cc-process-cta-btn{
  display: inline-flex;
  background: var(--pink);
  color: #fff;
  padding: 17px 42px;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
}
.home-cta-btn{ padding: 21px 50px; font-size: 18px; }

@media (max-width: 1100px){
  .cc-process-box, .cc-process-box:nth-child(even){ grid-template-columns: 1fr; }
  .cc-process-box:nth-child(even) .cc-process-media{ order: 0; }
}

.m-home-process .cc-process{ padding: 0 16px 50px; gap: 20px; }
.m-home-process .cc-process-box{ padding: 20px; gap: 20px; border-radius: 22px; border-width: 3px; }
.m-home-process .cc-process-cta{ padding: 0 16px 60px; }
.m-home-process .home-cta-btn{ padding: 16px 36px; font-size: 15px; }
