.elementor-405 .elementor-element.elementor-element-e47d217{padding:10px 10px 60px 10px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-72428ec *//* ============================================
   INTER MEDIA PRODUCTION — DESIGN SYSTEM
   Shared CSS for content sections of intermp.ch
   Header & Footer are handled separately
   ============================================ */

:root {
  --off-white: #F7F5F1;
  --black: #1C1C1C;
  --deep: #151515;
  --sand: #D9D3C7;
  --gold: #B9924C;
  --white: #FFFFFF;
  --mid: #888888;
  --creme: #F0EBE3;
  --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;
}

*,
*::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);
}

.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--creme {
  background: var(--creme);
}

.section--compact {
  padding: 80px 0;
}

.overline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.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;
}

.section--deep .h3 {
  color: var(--white);
}

.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;
}

.body-text--full {
  max-width: 100%;
}

.body-text + .body-text {
  margin-top: 16px;
}

.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;
}

/* Page Hero */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 80px;
  margin-top: var(--header-h);
  background: var(--deep);
  overflow: hidden;
}

.page-hero--light {
  background: var(--off-white);
  min-height: auto;
  padding: 60px 0 80px;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.page-hero--light .h1 {
  color: var(--black);
}

.page-hero--light .subline {
  color: var(--mid);
}

/* Legal content */
.legal-content {
  max-width: 920px;
}

.legal-h2 {
  margin-top: 56px;
}

.legal-h3 {
  margin-top: 28px;
}

.legal-list {
  margin-top: 20px;
  margin-bottom: 20px;
}

.legal-box {
  margin-top: 20px;
  padding: 24px;
  background: var(--off-white);
  border: 1px solid var(--sand);
}

.legal-box p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--black);
}

.list-checks {
  list-style: none;
  padding: 0;
}

.list-checks li {
  padding: 8px 0;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.7;
}

.list-checks li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Reveal */
.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: 767px) {
  :root {
    --section-pad: 72px;
    --gutter: 20px;
  }

  .page-hero {
    min-height: 40vh;
    padding-bottom: 48px;
  }

  .legal-h2 {
    margin-top: 40px;
  }

  .legal-box {
    padding: 18px;
  }
}/* End custom CSS */