/* ===========================
   Root Variables
   =========================== */
:root {
  /* Colors */
  /* Brand core */
  --color-primary: #0A5F55;
  --color-primary-hover: #0C7567;

  --color-secondary: #FF6A21;
  --color-secondary-hover: #E85F1D;

  --color-dark: #0D2F28;
  --color-light: #F5F4EC;

  --color-bg: var(--color-light);
  --color-bg-alt: #D8C3A6;
  --color-surface: #FAF7F0;
  --color-surface-alt: #E6D8C2;

  --color-text-main: #2A2A2A;
  --color-text-soft: #4A4A4A;
  --color-text-muted: #777777;
  --color-text-on-dark: #FEFCF8;
  --color-text-on-accent: #FFFFFF;

  --color-border-subtle: #E4DFD4;
  --color-border-strong: #B6A58A;

  --color-logo-return: #33B6A8;

  /* Links */
  --color-link: var(--color-primary);
  --color-link-hover: var(--color-secondary);

  /* Sub Brand Colors */
  /* 1. Website Design */
--service-webdesign: #1FA395;
--service-webdesign-bg: #E9F7F5;

/* 2. Website Development */
--service-webdev: #0A4E47;
--service-webdev-bg: #E6F2F0;

/* 3. Website Maintenance */
--service-maintenance: #738F47;
--service-maintenance-bg: #F3F7EB;

/* 4. SEO & Generative Authority */
--service-authority: #C98A2C;
--service-authority-bg: #FBF4E6;

/* 5. Digital Intelligence & Performance Insights */
--service-intelligence: #1C6FA8;
--service-intelligence-bg: #E7F2FA;

/* 6. Customer Engagement & Growth */
--service-growth: #F45E4C;
--service-growth-bg: #FDECEA;

  /* Semantic states */
  --color-success: #198A6A;
  --color-success-bg: #E8F7F1;

  --color-danger: #D64532;
  --color-danger-bg: #FDECEA;

  --color-warning: #F5A93C;
  --color-warning-bg: #FFF7E8;

  --color-info: #0B7F78;
  --color-info-bg: #E7F6F4;

  /* Font sizes */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-xxl: 2rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --font-family: "aktiv-grotesk", sans-serif;
 
  /* 1. Word Breaking (To prevent long strings from overflowing containers) */
  --util-word-break-long: break-word; 
  --util-word-break-normal: normal; /* Default behavior */
  
  /* 2. Hyphenation (To create more even line wraps on justified/narrow blocks) */
  --util-hyphens-auto: auto; /* Enables automatic hyphenation based on lang attribute */
  --util-hyphens-none: none; /* Disables hyphenation */

  /* 3. Text Alignment */
  --util-align-center: center;
  --util-align-left: left;
  --util-align-right: right;
  --util-align-justify: justify;

  /* 4. Text Transform */
  --util-transform-caps: uppercase;
  --util-transform-lower: lowercase;
  --util-transform-initial: none; /* Reset/Default */

  /* 5. Text Decoration */
  --util-decoration-link: underline;
  --util-decoration-none: none;
  
  /* 6. Letter/Word Spacing (Can be used to slightly widen or condense text) */
  --util-letter-spacing-wide: 0.08em; 
  --util-letter-spacing-tight: -0.015em;

  /* Font Weights */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-bold: 700;
  --fw-black: 900;

  /* Line Heights */
  --line-height-reset: 1;
  --line-height-compact: 0.92;
  --line-height-snug: 1.07;
  --line-height-tight: 1.14;
  --line-height-medium: 1.15;
  --line-height-relaxed: 1.43;
  --line-height-loose: 1.8;

  /* Widths */
  --width-xs: 65%;
  --width-sm: 70%;
  --width-md: 75%;
  --width-lg: 80%;
  --width-xl: 90%;
  --width-full: 100%;
  --width-half: 50%;
}

@supports (font-size: clamp(1rem, 1vi, 1rem)) {
  :root {
		--text-xs: clamp(0.79rem, 0.05vi + 0.78rem, 0.82rem);
		--text-s: clamp(0.89rem, 0.14vi + 0.86rem, 0.99rem);
		--text-m: clamp(1rem, 0.27vi + 0.95rem, 1.19rem);
		--text-l: clamp(1.13rem, 0.43vi + 1.04rem, 1.43rem);
		--text-xl: clamp(1.27rem, 0.63vi + 1.14rem, 1.71rem);
  }
}
/* For browsers that don't support clamp */
@supports not (font-size: clamp(1rem, 1vi, 1rem)) {
  :root {
		--text-xs: 0.79rem;
		--text-s: 0.89rem;
		--text-m: 1rem;
		--text-l: 1.13rem;
		--text-xl: 1.27rem;
  }
  @media screen and (min-width: 1440px) {
    :root {
			--text-xs: 0.82rem;
			--text-s: 0.99rem;
			--text-m: 1.19rem;
			--text-l: 1.43rem;
			--text-xl: 1.71rem;
    }
  }
}

/* For browsers that support clamp  */
@supports (font-size: clamp(1rem, 1vi, 1rem)) {
  :root {
		--headings-h6: clamp(0.8rem, -0.04vi + 0.81rem, 0.77rem);
		--headings-h5: clamp(1rem, 0.05vi + 0.99rem, 1.03rem);
		--headings-h4: clamp(1.25rem, 0.18vi + 1.21rem, 1.38rem);
		--headings-h3: clamp(1.56rem, 0.39vi + 1.49rem, 1.83rem);
		--headings-h2: clamp(1.95rem, 0.7vi + 1.81rem, 2.44rem);
		--headings-h1: clamp(2.44rem, 1.16vi + 2.21rem, 3.26rem);
		--headings-hero-title: clamp(3.05rem, 1.84vi + 2.68rem, 4.34rem);
  }
}
/* For browsers that don't support clamp */
@supports not (font-size: clamp(1rem, 1vi, 1rem)) {
  :root {
		--headings-h6: 0.8rem;
		--headings-h5: 1rem;
		--headings-h4: 1.25rem;
		--headings-h3: 1.56rem;
		--headings-h2: 1.95rem;
		--headings-h1: 2.44rem;
		--headings-hero-title: 3.05rem;
  }
  @media screen and (min-width: 1440px) {
    :root {
			--headings-h6: 0.77rem;
			--headings-h5: 1.03rem;
			--headings-h4: 1.38rem;
			--headings-h3: 1.83rem;
			--headings-h2: 2.44rem;
			--headings-h1: 3.26rem;
			--headings-hero-title: 4.34rem;
    }
  }
}

/* General CSS */
/* Base setup for 1rem = 16px */
html {
  font-size: 100%; /* Ensures 1rem = 16px by default if browser is 16px */
}

::selection {
  background-color: var(--color-secondary-hover, #e53510);
  color: #13181B;
}

::-moz-selection {
  background-color: var(--color-secondary-hover, #e53510);
  color: #13181B;
}

/* ===========================
   Utility Classes
   =========================== */

/* Typography */
.text-xs { font-size: var(--fs-xs); }
.text-sm { font-size: var(--fs-sm); }
.text-base { font-size: var(--fs-base); }
.text-lg { font-size: var(--fs-lg); }
.text-xl { font-size: var(--fs-xl); }
.text-xxl { font-size: var(--fs-xxl); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Font Weight Utilities */
.fw-light      { font-weight: var(--fw-light); }
.fw-roman      { font-weight: var(--fw-roman); }
.fw-bold       { font-weight: var(--fw-bold); }
.fw-black      { font-weight: var(--fw-black); }

.font-bold { font-weight: 700; }
.font-light { font-weight: 300; }

/* ===========================
   Display Family
   =========================== */
.font-display-400 { font-family: var(--font-display); font-weight: 400; font-style: normal; }
.font-display-400i { font-family: var(--font-display); font-weight: 400; font-style: italic; }

.font-display-500 { font-family: var(--font-display); font-weight: 500; font-style: normal; }
.font-display-500i { font-family: var(--font-display); font-weight: 500; font-style: italic; }

.font-display-700 { font-family: var(--font-display); font-weight: 700; font-style: normal; }
.font-display-700i { font-family: var(--font-display); font-weight: 700; font-style: italic; }

.font-display-900 { font-family: var(--font-display); font-weight: 900; font-style: normal; }
.font-display-900i { font-family: var(--font-display); font-weight: 900; font-style: italic; }

/* ===========================
   Text Family
   =========================== */
.font-text-400 { font-family: var(--font-text); font-weight: 400; font-style: normal; }
.font-text-400i { font-family: var(--font-text); font-weight: 400; font-style: italic; }

.font-text-700 { font-family: var(--font-text); font-weight: 700; font-style: normal; }
.font-text-700i { font-family: var(--font-text); font-weight: 700; font-style: italic; }

/* ===========================
   Line Height Utilities
   =========================== */
.lh-reset   { line-height: var(--line-height-reset); }
.lh-compact { line-height: var(--line-height-compact); }
.lh-snug    { line-height: var(--line-height-snug); }
.lh-tight   { line-height: var(--line-height-tight); }
.lh-medium  { line-height: var(--line-height-medium); }
.lh-relaxed { line-height: var(--line-height-relaxed); }
.lh-loose   { line-height: var(--line-height-loose); }

/* ===========================
   Width Utilities
   =========================== */
.w-xs   { width: var(--width-xs); }
.w-sm   { width: var(--width-sm); }
.w-md   { width: var(--width-md); }
.w-lg   { width: var(--width-lg); }
.w-xl   { width: var(--width-xl); }
.w-full { width: var(--width-full); }
.w-half { width: var(--width-half); }

/* ===========================
   Colors
   =========================== */
.bg-primary { background-color: var(--color-primary); color: #fff; }
.bg-secondary { background-color: var(--color-secondary); color: #fff; }
.bg-success { background-color: var(--color-success); color: #fff; }
.bg-danger { background-color: var(--color-danger); color: #fff; }
.bg-warning { background-color: var(--color-warning); color: #212529; }
.bg-dark { background-color: var(--color-dark); color: #fff; }
.bg-light { background-color: var(--color-light); color: #212529; }

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-success { color: var(--color-success); }
.text-danger { color: var(--color-danger); }
.text-warning { color: var(--color-warning); }
.text-dark { color: var(--color-dark); }
.text-light { color: var(--color-light); }

/* Spacing (margin + padding) */
.m-1 { margin: var(--space-1); }
.m-2 { margin: var(--space-2); }
.m-3 { margin: var(--space-3); }
.m-4 { margin: var(--space-4); }
.m-5 { margin: var(--space-5); }

.p-1 { padding: var(--space-1); }
.p-2 { padding: var(--space-2); }
.p-3 { padding: var(--space-3); }
.p-4 { padding: var(--space-4); }
.p-5 { padding: var(--space-5); }

/* Layout */
.flex { display: flex; }
.flex-center { display: flex; justify-content: center; align-items: center; }

/* MOBILE FIRST: < 480px (phone portrait) */
/* Default: all grids stack, 1 column */
.grid-2 > .inner-section-container,
.grid-3 > .inner-section-container,
.grid-4 > .inner-section-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
}

/* Extra spacing for grid-4 on mobile */
.grid-4 > .inner-section-container {
    gap: var(--space-4);
}

/* -------------------------------------------------------------
   ≥ 480px (phone landscape)
   ------------------------------------------------------------- */
@media (min-width: 480px) {

    /* grid-4: switch to 2 columns */
    .grid-4 > .inner-section-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
}

/* -------------------------------------------------------------
   ≥ 768px (tablet portrait)
   ------------------------------------------------------------- */
@media (min-width: 768px) {

    /* grid-2: 2 columns */
    .grid-2 > .inner-section-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }

    /* grid-3: still 2 columns for readability */
    .grid-3 > .inner-section-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }

    /* grid-4: 3 columns */
    .grid-4 > .inner-section-container {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-4);
    }
}

/* -------------------------------------------------------------
   ≥ 1024px (tablet landscape)
   ------------------------------------------------------------- */
@media (min-width: 1024px) {

    /* grid-3: full 3 columns */
    .grid-3 > .inner-section-container {
        grid-template-columns: repeat(3, 1fr);
    }

    /* grid-4: full 4 columns */
    .grid-4 > .inner-section-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* -------------------------------------------------------------
   ≥ 1120px (desktop)
   Optional: slightly larger gaps for bigger screens
   ------------------------------------------------------------- */
@media (min-width: 1120px) {

    .grid-2 > .inner-section-container,
    .grid-3 > .inner-section-container,
    .grid-4 > .inner-section-container {
        gap: calc(var(--space-3) * 1.1);
    }

    .grid-4 > .inner-section-container {
        gap: calc(var(--space-4) * 1.1);
    }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: var(--fs-base);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: #005bb5; }

.btn-secondary { background: var(--color-secondary); color: #fff; }
.btn-secondary:hover { background: #e85a50; }

.btn-outline-primary {
  background: transparent;
  border: 1px solid var(--color-light, #F5F4EC); 
  color: var(--color-light, #F5F4EC);
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--color-secondary, #FF6A21);
  color: var(--color-light, #F5F4EC);
  border: 1px solid var(--color-secondary, #FF6A21);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline-secondary {
  background: transparent;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
}

.btn-outline-secondary:hover {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}

.main-menu .menu-item:hover a,
.main-menu .menu-item:focus-within a {
    background-color: transparent !important;
}

.main-menu a {
  font-family: var(--font-family);
  font-size: var(--text-m);
  font-weight: var(--fw-bold);
  color: var(--color-light, #F5F4EC);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-menu a:hover {
  color: var(--color-secondary-hover, #E85F1D);
}



/* ====================================================================== */
/* 1. VERTICAL SPACING UTILITIES (Mobile-First) */
/* ====================================================================== */

/* --- Default (Mobile Portrait: < 480px) --- */
/* Smallest size is 0.3rem, with 0.5rem steps */

.divider-xs { margin-top: 0.3rem; margin-bottom: 0.3rem; width: 100%; }
.divider-s { margin-top: 0.8rem; margin-bottom: 0.8rem; width: 100%; } /* 0.3 + 0.5 */
.divider-m { margin-top: 1.3rem; margin-bottom: 1.3rem; width: 100%; } /* 0.8 + 0.5 */
.divider-l { margin-top: 1.8rem; margin-bottom: 1.8rem; width: 100%; } 
.divider-xl { margin-top: 2.3rem; margin-bottom: 2.3rem; width: 100%; } 
.divider-xxl { margin-top: 2.8rem; margin-bottom: 2.8rem; width: 100%; } 

/* --- Mobile Landscape / Small Tablet (>= 480px) --- */
@media (min-width: 480px) {
    /* Smallest size is 0.4rem, with 0.5rem steps */
    .divider-xs { margin-top: 0.4rem; margin-bottom: 0.4rem; }
    .divider-s { margin-top: 0.9rem; margin-bottom: 0.9rem; } /* 0.4 + 0.5 */
    .divider-m { margin-top: 1.4rem; margin-bottom: 1.4rem; } /* 0.9 + 0.5 */
    .divider-l { margin-top: 1.9rem; margin-bottom: 1.9rem; } 
    .divider-xl { margin-top: 2.4rem; margin-bottom: 2.4rem; } 
    .divider-xxl { margin-top: 2.9rem; margin-bottom: 2.9rem; } 
}

/* --- Tablet Portrait (>= 768px) --- */
@media (min-width: 768px) {
    /* Smallest size is 0.5rem, with 0.5rem steps */
    .divider-xs { margin-top: 0.5rem; margin-bottom: 0.5rem; }
    .divider-s { margin-top: 1.0rem; margin-bottom: 1.0rem; } /* 0.5 + 0.5 */
    .divider-m { margin-top: 1.5rem; margin-bottom: 1.5rem; } /* 1.0 + 0.5 */
    .divider-l { margin-top: 2.0rem; margin-bottom: 2.0rem; }
    .divider-xl { margin-top: 2.5rem; margin-bottom: 2.5rem; }
    .divider-xxl { margin-top: 3.0rem; margin-bottom: 3.0rem; }
}

/* --- Desktop (>= 992px) --- */
@media (min-width: 992px) {
    /* Smallest size is 0.6rem, with 0.5rem steps */
    .divider-xs { margin-top: 0.6rem; margin-bottom: 0.6rem; }
    .divider-s { margin-top: 1.1rem; margin-bottom: 1.1rem; } /* 0.6 + 0.5 */
    .divider-m { margin-top: 1.6rem; margin-bottom: 1.6rem; } /* 1.1 + 0.5 */
    .divider-l { margin-top: 2.1rem; margin-bottom: 2.1rem; }
    .divider-xl { margin-top: 2.6rem; margin-bottom: 2.6rem; }
    .divider-xxl { margin-top: 3.1rem; margin-bottom: 3.1rem; }
}

/* custom Classes */
/* The header element itself */
.breakdance .bde-header-builder.bde-header-builder--sticky .main-header,
.breakdance .bde-header-builder {
  position: fixed!important;
  top: var(--bde-header-sticky-top)!important;
  left: 0!important;
  width: 100%!important;
  z-index: 200!important;
  background: rgba(255, 255, 255, 0.08); /* adjust to taste */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition-property: min-height!important;
  transition-duration: var(--bde-header-sticky-duration)!important;
  transition-timing-function: ease-in-out!important;
}

.breakdance .bde-header-builder {
    position: fixed!important;
    width: 100%!important;
    background: rgba(255, 255, 255, 0.08)!important;
    backdrop-filter: blur(14px)!important;
    -webkit-backdrop-filter: blur(14px)!important;
    --bde-header-width: var(--bde-section-width)!important;
    --bde-header-sticky-top: calc(var(--bde-header-sticky-offset) + var(--wp-admin--admin-bar--height, 0px))!important;
    --bde-header-sticky-offset: 0px!important;
    --bde-header-sticky-duration: var(--bde-transition-duration)!important;
    z-index: 200!important;
    transition-property: min-height!important;
    transition-duration: var(--bde-header-sticky-duration)!important;
    transition-timing-function: ease-in-out!important;
}

.breakdance .bde-header-builder .bde-header-builder__container {
    display: flex!important;
    align-items: center!important;
    justify-content: space-between!important;
    height: 80px!important;
    margin: 0!important;
    padding: 0!important;
    width: 100%!important;
    box-sizing: border-box!important;
    max-width: unset!important;
    gap: unset!important;
}

.left-header-container {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

/* Wrapper to control the size */
.logo-wrapper {
  width: 80px; 
  height: 80px;
  display: block;
}
/* section css */
.inner-section-container {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding-left: 0;
  padding-right: 0;
}

/* Tablet-landscape and below (≤1119px) – add side padding */
@media (max-width: 1119px) {
  .inner-section-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* Logo color animation */
@keyframes color-cycle {
  0%    { fill: var(--color-light); }
  14%   { fill: #1FA395; } /* Webdesign */
  28%   { fill: #0A4E47; } /* Webdev */
  42%   { fill: #738F47; } /* Maintenance */
  57%   { fill: #C98A2C; } /* Authority */
  71%   { fill: #1C6FA8; } /* Intelligence */
  85%   { fill: #F45E4C; } /* Growth */
  100%  { fill: var(--color-light); }
}

.logo-background-color {
  fill: var(--color-logo-return); 
  transition: fill 0.3s ease-in-out;
}

.logo-wrapper.is-animated .logo-background-color {
  animation: color-cycle 14s ease-in-out infinite;
}

.logo-wrapper:hover .logo-background-color {
  fill: #e53510;
}

.logo-wrapper.header-transparent .logo-background-color {
  fill: #FFFFFF;
}

.logo-wrapper.header-sticky .logo-background-color {
  fill: #000000;
}

.inner-header-row > .oxy-header-container {
    padding-right: 1.25rem; 
    padding-left: 0; 
}

.inner-header-row .oxy-header-container .oxy-header-left {
    padding-left: 0;
}
/* End of Logo animation */

/* Section Heights CSS */
/* General / normal Sections */
/* BASE: Desktop ≥1441px */
.normal-section {
  padding-top: 4.6875rem;   /* ~75px */
  padding-bottom: 4.6875rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ≤1440px */
@media (max-width: 1440px) {
  .normal-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}

/* ≤992px */
@media (max-width: 992px) {
  .normal-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* ≤768px Landscape */
@media (max-width: 768px) and (orientation: landscape) {
  .normal-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

/* ≤480px */
@media (max-width: 480px) {
  .normal-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* BASE: Desktop ≥1441px (Standard) */
.hero-section,
.service-hero {
  min-height: clamp(600px, 80vh, 900px);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  width: 100%;
}

/* ≤1440px – Laptops / kleinere Desktops */
@media (max-width: 1440px) {
  .hero-section,
  .service-hero {
    min-height: clamp(600px, 80vh, 900px);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    width: 100%;
  }
}

/* ≤992px – Tablets */
@media (max-width: 992px) {
  .hero-section,
  .service-hero {
    min-height: clamp(500px, 70vh, 700px);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* ≤768px – Landscape Tablets */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section,
  .service-hero {
    min-height: 500px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* ≤480px – Phones */
@media (max-width: 480px) {
  .hero-section,
  .service-hero {
    min-height: clamp(400px, 60vh, 600px);
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.hero-body-text-container {
    max-width: 65ch;
}

.hero-section .inner-section-container,
.service-hero .inner-section-container {
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.main-hero-title {
  font-family: var(--font-family);
  font-weight: var(--fw-black);
  font-style: normal;
  font-size: var(--headings-h1);
  letter-spacing: var(--util-letter-spacing-wide);
  line-height: var(--line-height-snug);
  color: var(--color-text-on-accent);
}

.main-hero-intro {
  font-family: var(--font-family);
  font-weight: var(--fw-light);
  font-size: var(--headings-h4);
  letter-spacing: var(--util-letter-spacing-wide);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-on-accent);
}

.intro-text {
  font-family: var(--font-family);
  font-weight: var(--fw-black);
  font-style: normal;
  font-size: var(--headings-h3);
  letter-spacing: var(--util-letter-spacing-wide);
  line-height: var(--line-height-snug);
  color: var(--color-text-on-accent);
  width: 70%;
}

.intro-content {
  font-family: var(--font-family);
  font-weight: var(--fw-regular);
  font-style: normal;
  font-size: var(--headings-h5);
  letter-spacing: var(--util-letter-spacing-wide);
  line-height: var(--line-height-snug);
  color: var(--color-text-on-accent);
  width: 70%;
}

/* Service Template CSS */
/* Hintergrund nur für Service-Hero (CPT, Toolset, etc.) */
.service-hero {
  background-color: var(--service-hero-bg-color, #f4f4f4);
  background-image: var(--service-hero-bg-2560);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ≤1440px */
@media (max-width: 1440px) {
  .service-hero {
    background-image: var(
      --service-hero-bg-1440,
      var(--service-hero-bg-2560)
    );
  }
}

/* ≤992px – Tablets / darunter, Portrait-Bild */
@media (max-width: 992px) {
  .service-hero {
    background-image: var(
      --service-hero-bg-portrait,
      var(--service-hero-bg-1440, var(--service-hero-bg-2560))
    );
  }
}

/* ≤768px Landscape */
@media (max-width: 768px) and (orientation: landscape) {
  .service-hero {
    background-image: var(
      --service-hero-bg-portrait,
      var(--service-hero-bg-1440, var(--service-hero-bg-2560))
    );
  }
}

/* ≤480px Phones */
@media (max-width: 480px) {
  .service-hero {
    background-image: var(
      --service-hero-bg-portrait,
      var(--service-hero-bg-1440, var(--service-hero-bg-2560))
    );
  }
}