:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-8a10c7a *//* ============================================
   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;
  --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;
  --section-pad-m: 72px;
  --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
   ============================================ */
.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;
}

/* ============================================
   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;
}

.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);
}

.h2--mixed {
  text-transform: none;
  font-size: clamp(28px, 4vw, 44px);
}

.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;
}

.section--deep .body-text {
  color: var(--light-text);
}

.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;
}

/* ============================================
   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;
}

.imp-btn--text,
a.imp-btn--text {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  color: var(--gold) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}

.imp-btn--text:hover,
a.imp-btn--text:hover {
  opacity: 0.7;
}

.imp-btn--text::after,
a.imp-btn--text::after {
  content: ' →';
  display: inline-block;
  transition: transform 0.3s;
}

.imp-btn--text:hover::after,
a.imp-btn--text:hover::after {
  transform: translateX(4px);
}

/* ============================================
   PAGE HERO (Subpages)
   ============================================ */
.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--tall {
  min-height: 65vh;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21,21,21,0.2) 0%, rgba(21,21,21,0.7) 60%, rgba(21,21,21,0.95) 100%),
    linear-gradient(135deg, #2a2826 0%, #1a1917 50%, #0f0e0d 100%);
  background-size: cover;
  background-position: center;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.page-hero .h1 {
  color: var(--white);
  max-width: 700px;
}

.page-hero .subline {
  color: var(--light-text-soft);
  margin-top: 16px;
}

.page-hero .imp-btn-group {
  margin-top: 32px;
}

.page-hero--light {
  background: var(--off-white);
  min-height: auto;
  padding: 60px 0 80px;
}

.page-hero--light .h1 {
  color: var(--black);
}

.page-hero--light .subline {
  color: var(--mid);
}

/* ============================================
   CONTENT GRIDS
   ============================================ */
.grid-60-40 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.grid-40-60 {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.grid-50-50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* ============================================
   IMAGE PLACEHOLDERS
   ============================================ */
.img-placeholder {
  width: 100%;
  background: linear-gradient(135deg, var(--sand) 0%, #c4bdb1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 2px;
  text-transform: uppercase;
  overflow: hidden;
}

.img-placeholder--16-9 { aspect-ratio: 16/9; }
.img-placeholder--3-2 { aspect-ratio: 3/2; }
.img-placeholder--4-3 { aspect-ratio: 4/3; }
.img-placeholder--3-4 { aspect-ratio: 3/4; }
.img-placeholder--1-1 { aspect-ratio: 1/1; }

.img-placeholder--dark {
  background: linear-gradient(135deg, #2a2a2a 0%, var(--deep) 100%);
  color: rgba(255,255,255,0.2);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.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);
  color: var(--black);
}

.service-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--sand) 0%, #c4bdb1 100%);
}

.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;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  margin-top: 32px;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

.section--white .faq-item,
.section--off .faq-item {
  border-color: var(--sand);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
  user-select: none;
}

.faq-q:hover {
  color: var(--gold);
}

.section--deep .faq-q {
  color: rgba(255,255,255,0.85);
}

.section--deep .faq-q:hover {
  color: var(--gold);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0, 0.2, 1), padding 0.4s;
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid);
  padding: 0 0 0;
}

.section--deep .faq-a {
  color: var(--light-text-soft);
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 0 20px;
}

/* ============================================
   PRICE CARDS
   ============================================ */
.price-card {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--sand);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.price-card--featured {
  border: 2px solid var(--gold);
}

.price-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.price-card__name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 12px;
  margin-bottom: 24px;
}

.price-card__price {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--black);
  margin-bottom: 4px;
}

.price-card__label {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 8px;
}

.price-card__strike {
  font-size: 13px;
  color: var(--mid);
  text-decoration: line-through;
}

.price-card__features {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  text-align: left;
}

.price-card__features li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--off-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-card__features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.price-card__features li.disabled {
  color: var(--sand);
}

.price-card__features li.disabled::before {
  content: '—';
  color: var(--sand);
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.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);
}

.section--deep .testimonial__quote {
  color: var(--light-text);
}

.section--deep .testimonial__author {
  color: var(--light-text-soft);
}

/* ============================================
   VORHER-NACHHER
   ============================================ */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 32px;
}

.before-after__item {
  position: relative;
  overflow: hidden;
}

.before-after__label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.form-field {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--sand);
  background: var(--off-white);
  color: var(--black);
  transition: border-color 0.3s;
  width: 100%;
}

.form-field:focus {
  outline: none;
  border-color: var(--gold);
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field--textarea {
  min-height: 120px;
  resize: vertical;
  grid-column: 1 / -1;
}

/* ============================================
   SCROLL 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);
}

/* ============================================
   UTILITY
   ============================================ */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }

.list-checks {
  list-style: none;
  padding: 0;
}

.list-checks li {
  padding: 8px 0;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.list-checks li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
  :root {
    --section-pad: 72px;
    --gutter: 20px;
  }

  .grid-60-40,
  .grid-40-60,
  .grid-50-50,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-hero {
    min-height: 40vh;
    padding-bottom: 48px;
  }

  .imp-btn-group {
    flex-direction: column;
  }

  .imp-btn {
    width: 100%;
    justify-content: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .before-after {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */