:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-bcf1bc7 *//* ============================================
   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;
}

.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;
}

/* 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--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;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* 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--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 */
.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;
}

.section--deep .faq-a {
  color: var(--light-text-soft);
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 0 20px;
}

/* Utility */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

.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;
}

/* 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;
  }

  .grid-2,
  .grid-3 {
    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;
  }
}/* End custom CSS */