.elementor-353 .elementor-element.elementor-element-2a66341{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-3c4f5db *//* ============================================
   INTER MEDIA PRODUCTION — DESIGN SYSTEM
   Shared CSS for content sections of intermp.ch
   Header & Footer are handled separately
   ============================================ */

/* ============================================
   DESIGN TOKENS / CSS VARIABLES
   ============================================ */
:root {
  --off-white: #F7F5F1;
  --black: #1C1C1C;
  --deep: #151515;
  --sand: #D9D3C7;
  --gold: #B9924C;
  --white: #FFFFFF;
  --mid: #888888;
  --light-text: rgba(255,255,255,0.8);
  --light-text-soft: rgba(255,255,255,0.55);
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --gutter: 24px;
  --section-pad: 120px;
  --header-h: 80px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  background: var(--off-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--gold);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-pad) 0;
}

.section--off {
  background: var(--off-white);
}

.section--white {
  background: var(--white);
}

.section--deep {
  background: var(--deep);
  color: var(--white);
}

.section--sand {
  background: var(--sand);
}

.section--compact {
  padding: 80px 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.overline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section--deep .overline {
  color: var(--gold);
}

.h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
}

.section--deep .h1 {
  color: var(--white);
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
}

.section--deep .h2 {
  color: var(--white);
}

.h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}

.subline {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--mid);
  line-height: 1.6;
  max-width: 560px;
}

.section--deep .subline {
  color: var(--light-text-soft);
}

.body-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  max-width: 640px;
}

.section--deep .body-text {
  color: var(--light-text);
}

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.imp-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.imp-btn-group--center {
  justify-content: center;
}

.imp-btn,
a.imp-btn,
a.imp-btn:link,
a.imp-btn:visited {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  border: 1px solid transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  padding: 16px 36px !important;
  cursor: pointer !important;
  transition: all 0.35s cubic-bezier(0.25, 0, 0.2, 1) !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.imp-btn--primary,
a.imp-btn--primary,
a.imp-btn.imp-btn--primary {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
}

.imp-btn--primary:hover,
a.imp-btn--primary:hover,
a.imp-btn.imp-btn--primary:hover {
  background: var(--black) !important;
  color: var(--white) !important;
  border-color: var(--black) !important;
}

.imp-btn--outline,
a.imp-btn--outline,
a.imp-btn.imp-btn--outline {
  background: transparent !important;
  color: var(--black) !important;
  border: 1px solid var(--black) !important;
}

.imp-btn--outline:hover,
a.imp-btn--outline:hover,
a.imp-btn.imp-btn--outline:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: transparent !important;
}

.section--deep .imp-btn--outline,
.section--deep a.imp-btn--outline {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.3) !important;
}

.section--deep .imp-btn--outline:hover,
.section--deep a.imp-btn--outline:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: transparent !important;
}

.imp-btn--small,
a.imp-btn--small,
a.imp-btn.imp-btn--small {
  font-size: 11px !important;
  padding: 12px 24px !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 80px;
  background: var(--deep);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21,21,21,0.28) 0%, rgba(21,21,21,0.58) 45%, rgba(21,21,21,0.88) 100%),
    url('https://intermp.ch/wp-content/uploads/2026/04/Evgeniia-Internicola-Fotografin-InterMediaProduction-GmbH.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--deep);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.hero .h1 {
  color: var(--white);
  max-width: 760px;
}

.hero .subline {
  color: rgba(255,255,255,0.82);
  margin-top: 20px;
  max-width: 620px;
}

.hero .imp-btn-group {
  margin-top: 40px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--light-text-soft);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollPulse 2s ease-in-out infinite;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ============================================
   INTRO / ABOUT
   ============================================ */
.intro__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro__image {
  position: relative;
  overflow: hidden;
}

.intro__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.intro__image::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--gold);
  opacity: 0.3;
  pointer-events: none;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0, 0.2, 1), box-shadow 0.4s;
  display: block;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.service-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sand) 0%, #c4bdb1 100%);
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.service-card:hover .service-card__img img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 20px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-card__text {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================
   PROCESS
   ============================================ */
.process__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.process-step__title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.process-step__text {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

.process-step:not(:last-child)::after {
  display: none;
}

/* ============================================
   KPI / STATS
   ============================================ */
.kpi__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}

.kpi__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.kpi__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-text-soft);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.testimonial {
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.testimonial__quote {
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 16px;
}

.testimonial__author {
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
}

/* ============================================
   LOGOS
   ============================================ */
.logos__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
}

.logo-item {
  width: 100%;
  max-width: 120px;
  margin: 0 auto;
  height: 48px;
  background: var(--sand);
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--mid);
  letter-spacing: 1px;
  transition: opacity 0.3s;
}

.logo-item:hover {
  opacity: 0.8;
}

.logo-item--image {
  background: transparent;
  object-fit: contain;
  width: 100%;
  max-width: 140px;
  height: 48px;
  opacity: 0.75;
  filter: grayscale(100%);
}

.logo-item--image:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ============================================
   PROJECTS TEASER
   ============================================ */
.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.project-card__img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sand) 0%, #bbb5aa 100%);
}

.project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0, 0.2, 1);
}

.project-card:hover .project-card__img img {
  transform: scale(1.05);
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(21,21,21,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s;
}

.project-card:hover .project-card__overlay {
  opacity: 1;
}

.project-card__category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.project-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   RUSSISCH TEASER
   ============================================ */
.russisch-teaser {
  background: var(--sand);
}

.russisch-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.russisch-teaser__image-wrap {
  width: 100%;
  overflow: hidden;
}

.russisch-teaser__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-final .h1 {
  margin-bottom: 16px;
}

.cta-final .subline {
  margin: 0 auto 32px;
  max-width: 480px;
}

.cta-final__contact {
  margin-top: 24px;
  font-size: 14px;
  color: var(--light-text-soft);
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 0, 0.2, 1), transform 0.7s cubic-bezier(0.25, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1023px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__grid {
    grid-template-columns: 1fr 1fr;
  }

  .kpi__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .logos__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  :root {
    --section-pad: 72px;
    --gutter: 20px;
  }

  .services__grid,
  .process__grid,
  .kpi__grid,
  .projects__grid,
  .logos__row {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .intro__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro__grid > :last-child {
    order: -1;
  }

  .russisch-teaser__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero {
    min-height: 58vh;
    padding-bottom: 48px;
  }

  .imp-btn-group {
    flex-direction: column;
  }

  .imp-btn {
    width: 100%;
    justify-content: center;
  }

  .hero__scroll {
    display: none;
  }
}/* End custom CSS */