:root {
      --dark: #1e1a1c;
      --text: #2a2527;
      --muted: #9a9096;
      --soft: #f4ede8;
      --soft-light: #faf7f5;
      --accent: #7c3f5a;
      --accent-light: #a35876;
      --accent-glow: rgba(124, 63, 90, 0.18);
      --white: #fff;
      --glass: rgba(255,255,255,0.72);
      --glass-border: rgba(255,255,255,0.5);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Montserrat", sans-serif;
      font-weight: 300;
      color: var(--text);
      background: #fff;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .container-1600 {
      width: min(1600px, calc(100% - 80px));
      margin: 0 auto;
    }

    .section-label {
      margin-bottom: 34px;
      font-size: 10px;
      line-height: 1;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: var(--accent);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-label::before,
    .section-label::after {
      content: "";
      display: inline-block;
      width: 28px;
      height: 1px;
      background: var(--accent);
      flex-shrink: 0;
    }

    .section-title,
    .hero h1,
    .footer-cta h2 {
      font-family: "Cormorant Garamond", serif;
      font-weight: 500;
      letter-spacing: -.03em;
    }

    .section-title {
      margin: 0;
      font-size: clamp(27px, 2.35vw, 42px);
      line-height: 1.08;
      color: var(--dark);
    }

    .section-text {
      max-width: 620px;
      margin: 28px 0 0;
      font-size: 17px;
      line-height: 1.64;
      color: #000;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      max-width: 100%;
      white-space: nowrap;
      overflow: visible;
      line-height: 1.2;
      margin-top: 42px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--accent);
      position: relative;
      padding-bottom: 10px;
      transition: gap .3s ease;
    }

    .text-link::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: var(--accent);
      transition: width .3s ease;
    }

    .text-link:hover {
      gap: 10px;
      color: var(--accent-light);
    }

    .text-link:hover::after {
      background: var(--accent-light);
    }

    .img-soft {
      filter: saturate(.75) sepia(.12) brightness(1.02) contrast(.9);
    }

    /* HEADER */
    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 50;
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(20px) saturate(1.8);
      -webkit-backdrop-filter: blur(20px) saturate(1.8);
      border-bottom: 1px solid rgba(124,63,90,0.08);
      box-shadow: 0 2px 40px rgba(30,20,25,0.06);
      transition: background .3s ease, box-shadow .3s ease;
    }

    .navbar-custom {
      width: min(1600px, calc(100% - 80px));
      min-height: 88px;
      margin: 0 auto;
      padding: 0;
    }



    @media (min-width: 1200px) {
      .navbar-custom {
        display: grid;
        grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
        align-items: center;
        column-gap: 28px;
      }

      .navbar-custom > .navbar-brand-custom {
        grid-column: 1;
        justify-self: start;
      }

      .navbar-custom > .navbar-collapse {
        display: contents !important;
      }

      .navbar-nav-custom {
        grid-column: 2;
        justify-self: center;
        justify-content: center;
        margin-left: 0;
        margin-right: 0;
      }

      .header-actions {
        grid-column: 3;
        justify-self: end;
        margin-left: 0;
      }
    }

    .navbar-brand-custom {
      display: inline-flex;
      align-items: center;
      font-family: "Montserrat", sans-serif;
      font-size: 26px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: .075em;
      color: var(--dark);
      white-space: nowrap;
    }

    .brand-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      display: inline-block;
      margin-left: 3px;
      margin-bottom: 12px;
    }

    .brand-text-main {
      color: var(--dark);
    }

    .brand-text-accent {
      color: var(--accent);
    }

.navbar-brand-custom .brand-text-main,
.footer-brand .brand-text-main,
.offcanvas-head-custom .brand-text-main {
  font-weight: 400;
}

.navbar-brand-custom .brand-text-accent,
.footer-brand .brand-text-accent,
.offcanvas-head-custom .brand-text-accent {
  font-weight: 700;
}

    .navbar-nav-custom {
      display: flex;
      align-items: center;
      gap: 28px;
      margin-left: 0;
      margin-right: 0;
    }

    .navbar-nav-custom .nav-link {
      padding: 34px 0;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #555;
      position: relative;
      white-space: nowrap;
      transition: color .2s ease;
    }

    .navbar-nav-custom .nav-link:hover,
    .navbar-nav-custom .nav-link.active {
      color: var(--accent);
    }

    .navbar-nav-custom .nav-link.active:after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 22px;
      height: 1.5px;
      background: var(--accent);
      border-radius: 2px;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-left: 32px;
    }

    .header-phone {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 500;
      color: #444;
      white-space: nowrap;
      transition: color .2s ease;
    }

    .header-phone:hover {
      color: var(--accent);
    }

    .header-phone i {
      color: var(--accent);
      font-size: 14px;
    }

    .header-btn {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 22px;
      background: var(--accent);
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .075em;
      text-transform: uppercase;
      white-space: nowrap;
      border-radius: 3px;
      transition: all .25s ease;
      box-shadow: 0 4px 18px rgba(124,63,90,0.28);
    }

    .header-btn:hover {
      background: var(--accent-light);
      color: #fff;
      box-shadow: 0 6px 24px rgba(124,63,90,0.38);
      transform: translateY(-1px);
    }

    .navbar-toggler {
      border: 0;
      padding: 0;
      box-shadow: none !important;
    }

    .navbar-toggler-icon-custom {
      display: flex;
      flex-direction: column;
      gap: 6px;
      width: 32px;
    }

    .navbar-toggler-icon-custom span {
      width: 100%;
      height: 1.5px;
      background: var(--dark);
      border-radius: 2px;
      transition: all .3s ease;
    }

    /* HERO */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 760px;
      overflow: hidden;
      padding-top: 88px;
      background: #fff;
    }


    .hero-video {
      position: absolute;
      inset: 88px 0 0;
      z-index: 0;
      width: 100%;
      height: calc(100% - 88px);
      overflow: hidden;
      background: #24151d;
    }

    .hero-video::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(130deg, rgba(15, 10, 20, .72) 0%, rgba(15, 10, 20, .45) 50%, rgba(15, 10, 20, .1) 100%);
      z-index: 2;
    }

    .hero-video video {
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
    }

    .hero-swiper {
      position: absolute;
      inset: 88px 0 0;
      z-index: 0;
      width: 100%;
      height: calc(100% - 88px);
    }

    .hero-swiper .swiper-slide {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .hero-swiper .swiper-slide:after {
      content: "";
      position: absolute;
      inset: 0;
      background: 
        linear-gradient(130deg, rgba(15, 10, 20, .72) 0%, rgba(15, 10, 20, .45) 50%, rgba(15, 10, 20, .1) 100%);
      z-index: 2;
    }

    .hero-swiper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      transform: scale(1);
      transition: transform 14s ease;
    }

    .hero-swiper .swiper-slide-active img {
      transform: scale(1.025);
    }

    .hero-content {
      position: relative;
      z-index: 3;
      height: calc(100vh - 88px);
      min-height: 668px;
      width: min(1600px, calc(100% - 80px));
      margin: 0 auto;
      display: flex;
      align-items: center;
      padding: 90px 0 160px;
    }

    .hero-box {
      max-width: 980px;
    }

    .hero-kicker {
      margin-bottom: 24px;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: 10px;
      letter-spacing: .24em;
      text-transform: uppercase;
      color: rgba(255,255,255,.7);
    }

    .hero-kicker::before,
    .hero-kicker::after {
      content: "";
      display: inline-block;
      width: 24px;
      height: 1px;
      background: rgba(255,255,255,.5);
      flex-shrink: 0;
    }

    .hero h1 {
      margin: 0;
      max-width: 1320px;
      font-size: clamp(44px, 4vw, 68px);
      line-height: 1.04;
      color: #fff;
      text-shadow: 0 4px 60px rgba(10, 5, 15, .3);
    }

    .hero-lead {
      max-width: 620px;
      margin: 30px 0 0;
      font-size: 16px;
      line-height: 2;
      color: rgba(255,255,255,.82);
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 44px;
    }

    .hero-btn,
    .hero-btn-secondary {
      min-height: 62px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .075em;
      text-transform: uppercase;
      transition: all .3s ease;
      border-radius: 3px;
    }

    .hero-btn {
      min-width: 210px;
      padding: 0 40px;
      background: var(--accent);
      color: #fff;
      box-shadow: 0 8px 32px rgba(124,63,90,0.45);
    }

    .hero-btn:hover {
      background: #fff;
      color: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 14px 40px rgba(255,255,255,0.2);
    }

    .hero-btn-secondary {
      min-width: 180px;
      padding: 0 34px;
      border: 1px solid rgba(255,255,255,.5);
      color: #fff;
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(12px);
    }

    .hero-btn-secondary:hover {
      background: rgba(255,255,255,.16);
      color: #fff;
      transform: translateY(-2px);
    }

    .hero-tabs {
      position: absolute;
      right: 0;
      bottom: 0;
      z-index: 5;
      width: 700px;
      height: 96px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      display: grid;
      grid-template-columns: 80px 80px 80px 1fr 80px 80px;
      align-items: center;
      text-align: center;
      font-size: 10px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #9a9096;
      border-top: 1px solid rgba(124,63,90,0.08);
      box-shadow: -10px -10px 60px rgba(20,10,30,0.12);
    }

    .hero-tabs strong {
      color: var(--accent);
      font-weight: 600;
      letter-spacing: .18em;
    }

    .hero-slider-prev,
    .hero-slider-next {
      width: 100%;
      height: 96px;
      border: 0;
      background: transparent;
      color: var(--accent);
      font-size: 14px;
      cursor: pointer;
      transition: .25s ease;
    }

    .hero-slider-prev:hover,
    .hero-slider-next:hover {
      background: rgba(124,63,90,0.06);
    }

    /* ABOUT */
    .about {
      padding: 160px 0 120px;
      background: #fff;
      position: relative;
    }

    .about::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(124,63,90,0.15), transparent);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 140px;
      align-items: center;
    }

    .about-content {
      max-width: 620px;
    }

    .about-image {
      width: 100%;
      height: 600px;
      object-fit: cover;
      object-position: center;
      border-radius: 2px;
      box-shadow: 0 40px 100px rgba(30, 20, 25, .14);
    }

    /* AVAILABLE */
    .available {
      padding: 110px 0 150px;
      background: var(--soft-light);
      position: relative;
    }

    .available::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(124,63,90,0.12), transparent);
    }

    .available .section-label {
      margin-bottom: 72px;
    }

    .available-grid {
      display: grid;
      grid-template-columns: 2fr 1.05fr;
      gap: 72px;
      align-items: stretch;
    }

    .available-image-wrap {
      position: relative;
      height: 570px;
      background: var(--soft);
      overflow: hidden;
      border-radius: 4px;
    }

    .available-swiper,
    .available-swiper .swiper-slide {
      width: 100%;
      height: 100%;
    }

    .available-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 5s ease;
    }

    .available-swiper .swiper-slide-active .available-image {
      transform: scale(1.03);
    }

    .available-image-arrows {
      position: absolute;
      right: 0;
      bottom: 0;
      z-index: 5;
      width: 132px;
      height: 66px;
      background: var(--accent);
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      border-radius: 4px 0 0 0;
      overflow: hidden;
      box-shadow: 0 18px 44px rgba(30,20,25,.18);
    }

    .available-image-arrows .available-slider-prev,
    .available-image-arrows .available-slider-next {
      height: 66px;
      color: #fff;
      border-radius: 0;
      background: transparent;
    }

    .available-image-arrows .available-slider-prev {
      border-right: 1px solid rgba(255,255,255,.28);
    }

    .available-image-arrows .available-slider-prev:hover,
    .available-image-arrows .available-slider-next:hover {
      color: #fff;
      background: rgba(255,255,255,.16);
    }

    .available-card {
      min-height: 570px;
      display: flex;
      flex-direction: column;
      padding-top: 14px;
    }

    .available-title-row {
      display: grid;
      grid-template-columns: 1fr 128px;
      align-items: start;
      gap: 28px;
      margin-bottom: 66px;
    }

    .available-title h3 {
      margin: 0 0 12px;
      font-family: "Cormorant Garamond", serif;
      font-size: 29px;
      font-weight: 500;
      line-height: 1.12;
      letter-spacing: -.02em;
      color: var(--dark);
      transition: all .3s ease;
    }

    .available-title span {
      display: block;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .available-slider-prev,
    .available-slider-next {
      width: 100%;
      height: 58px;
      border: 0;
      background: transparent;
      color: #9a8a84;
      transition: .25s ease;
      border-radius: 3px;
    }

    .available-slider-prev:hover,
    .available-slider-next:hover {
      color: var(--accent);
      background: rgba(124,63,90,0.08);
    }

    .available-text-arrows {
      display: grid;
      grid-template-columns: 1fr 1fr;
      width: 128px;
      height: 58px;
      border-left: 1px solid rgba(124,63,90,.18);
      border-right: 1px solid rgba(124,63,90,.18);
    }

    .available-text-arrows .available-slider-prev {
      border-right: 1px solid rgba(124,63,90,.18);
    }

    .available-card p {
      max-width: 430px;
      margin: 0;
      font-size: 17px;
      line-height: 1.64;
      color: #000;
    }

    .thumb-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: auto;
      margin-bottom: 0;
    }

    .thumb-row img {
      width: 100%;
      height: 125px;
      object-fit: cover;
      object-position: center;
      cursor: pointer;
      transition: all .3s ease;
      border-radius: 2px;
    }

    .thumb-row img:hover {
      opacity: .8;
      transform: scale(1.02);
    }

    /* PROJECTS */
    .projects {
      padding: 120px 0 130px;
      background: #fff;
      overflow: hidden;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: minmax(0, 580px) minmax(0, 1fr);
      gap: 100px;
      align-items: center;
    }

    .projects-content {
      max-width: 600px;
    }

    .project-stage {
      min-width: 0;
      padding: 0;
      overflow: hidden;
      background: transparent;
    }

    .project-swiper {
      width: 100%;
      overflow: visible;
    }

    .project-swiper .swiper-wrapper {
      align-items: stretch;
    }

    .project-swiper .swiper-slide {
      width: 520px;
      height: auto;
    }

    .project-card {
      position: relative;
      width: 100%;
      aspect-ratio: 1.2 / 1;
      overflow: hidden;
      background: transparent;
      border-radius: 4px;
      box-shadow: 0 30px 80px rgba(30, 20, 25, .1);
    }

    .project-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 5s ease;
    }

    .project-swiper .swiper-slide-active .project-card img {
      transform: scale(1.04);
    }

    .project-slide-badge {
      position: absolute;
      right: 0;
      bottom: 0;
      width: min(340px, calc(100% - 20px));
      height: 62px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      display: grid;
      grid-template-columns: 52px 1fr 52px;
      align-items: center;
      text-align: center;
      border-top: 1px solid rgba(124,63,90,0.08);
      border-left: 1px solid rgba(124,63,90,0.08);
      border-radius: 4px 0 4px 0;
    }

    .project-slide-badge span {
      padding: 0 12px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--accent);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .slide-nav-btn {
      height: 62px;
      border: 0;
      background: transparent;
      color: #9a8a84;
      font-size: 12px;
      transition: .25s ease;
    }

    .slide-nav-btn:hover {
      color: var(--accent);
    }

    /* FOOTER */
    .site-footer {
      width: 100%;
      background: #1a1418;
      color: rgba(255,255,255,.72);
      position: relative;
      overflow: hidden;
    }

    .site-footer:before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 10% 0%, rgba(124,63,90,0.32), transparent 50%),
        radial-gradient(ellipse at 90% 100%, rgba(124,63,90,0.18), transparent 50%);
      pointer-events: none;
    }

    .footer-cta {
      position: relative;
      z-index: 2;
      padding: 100px 0 80px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .footer-cta-grid {
      display: grid;
      grid-template-columns: 1.3fr .7fr;
      gap: 80px;
      align-items: center;
    }

    .footer-cta h2 {
      max-width: 780px;
      margin: 0;
      font-size: clamp(31px, 2.8vw, 48px);
      line-height: 1.08;
      color: #fff;
    }

    .footer-cta p {
      max-width: 560px;
      margin: 22px 0 0;
      font-size: 16px;
      line-height: 1.78;
      color: rgba(255,255,255,.6);
    }

    .footer-cta-actions {
      display: flex;
      justify-content: flex-end;
      gap: 14px;
      flex-wrap: wrap;
    }

    .footer-btn,
    .footer-phone-btn {
      min-height: 58px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 500;
      transition: all .25s ease;
      border-radius: 3px;
    }

    .footer-btn {
      padding: 0 32px;
      background: var(--accent);
      color: #fff;
      font-size: 11px;
      letter-spacing: .075em;
      text-transform: uppercase;
      box-shadow: 0 6px 24px rgba(124,63,90,0.38);
    }

    .footer-btn:hover {
      background: var(--accent-light);
      color: #fff;
      transform: translateY(-1px);
    }

    .footer-phone-btn {
      gap: 10px;
      padding: 0 28px;
      border: 1px solid rgba(255,255,255,.15);
      color: #fff;
      font-size: 13px;
    }

    .footer-phone-btn:hover {
      background: rgba(255,255,255,.07);
      border-color: rgba(255,255,255,.28);
      color: #fff;
    }

    .footer-main {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.15fr .75fr .9fr;
      gap: 80px;
      padding: 72px 0 60px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      font-family: "Montserrat", sans-serif;
      font-size: 28px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: .075em;
      margin-bottom: 22px;
      white-space: nowrap;
    }

    .footer-brand .brand-text-main {
      color: #fff;
    }

    .footer-brand .brand-text-accent {
      color: var(--accent);
    }

    .footer-text {
      max-width: 360px;
      margin: 0;
      font-size: 14px;
      line-height: 1.9;
      color: rgba(255,255,255,.55);
    }

    .footer-title {
      font-size: 10px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255,255,255,.9);
      margin-bottom: 22px;
    }

    .footer-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      font-size: 14px;
      color: rgba(255,255,255,.58);
    }

    .footer-list a {
      transition: color .2s ease;
    }

    .footer-list a:hover {
      color: rgba(255,255,255,.9);
    }

    .footer-contact-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      font-size: 14px;
      color: rgba(255,255,255,.58);
    }

    .footer-contact-list span,
    .footer-contact-list a {
      display: inline-flex;
      align-items: flex-start;
      gap: 12px;
      line-height: 1.65;
      transition: color .2s ease;
    }

    .footer-contact-list a:hover {
      color: rgba(255,255,255,.9);
    }

    .footer-contact-list i {
      color: var(--accent-light);
      margin-top: 3px;
    }

    .footer-bottom {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      padding: 32px 0;
      font-size: 12px;
      color: rgba(255,255,255,.4);
      letter-spacing: .04em;
    }

    .footer-legal {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
    }

    .footer-legal a {
      transition: color .2s ease;
    }

    .footer-legal a:hover {
      color: rgba(255,255,255,.7);
    }

    .footer-socials {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
    }

    .footer-socials a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.12);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.55);
      transition: all .25s ease;
    }

    .footer-socials a:hover {
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.25);
      color: #fff;
    }

    /* SCROLL ANIMATIONS */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-box > * {
      animation: fadeInUp .8s ease both;
    }

    .hero-box > *:nth-child(1) { animation-delay: .2s; }
    .hero-box > *:nth-child(2) { animation-delay: .4s; }
    .hero-box > *:nth-child(3) { animation-delay: .55s; }
    .hero-box > *:nth-child(4) { animation-delay: .7s; }

    @media (max-width: 1499px) {
      .navbar-nav-custom {
        gap: 20px;
      }

      .header-actions {
        gap: 12px;
        margin-left: 22px;
      }

      .header-phone {
        font-size: 12px;
      }

      .header-btn {
        padding: 0 16px;
      }
    }

    @media (max-width: 1399px) {
      .container-1600,
      .navbar-custom,
      .hero-content {
        width: calc(100% - 64px);
      }

      .about-grid {
        gap: 80px;
      }

      .available-grid {
        grid-template-columns: 1.55fr 1fr;
      }

      .projects-grid {
        grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
        gap: 70px;
      }

      .project-swiper .swiper-slide {
        width: 460px;
      }

      .footer-main {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 52px;
      }
    }

    @media (max-width: 1199px) {
      .navbar-custom {
        min-height: 78px;
      }

      .navbar-brand-custom {
        font-size: 24px;
      }

      .navbar-collapse {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.96);
        backdrop-filter: blur(20px);
        padding: 16px 28px 24px;
        box-shadow: 0 24px 50px rgba(30, 20, 25, .1);
        border-bottom: 1px solid rgba(124,63,90,0.08);
      }

      .navbar-nav-custom {
        align-items: flex-start;
        gap: 0;
      }

      .navbar-nav-custom .nav-link {
        padding: 14px 0;
      }

      .navbar-nav-custom .nav-link.active:after {
        bottom: 6px;
      }

      .header-actions {
        align-items: flex-start;
        flex-direction: column;
        margin-left: 0;
        margin-top: 16px;
      }

      .header-btn {
        width: 100%;
      }

      .hero {
        padding-top: 78px;
      }

      .hero-swiper {
        inset: 78px 0 0;
        height: calc(100% - 78px);
      }

      .hero-content {
        height: calc(100vh - 78px);
      }

      .hero-tabs {
        width: 100%;
      }

      .about-grid,
      .available-grid,
      .projects-grid,
      .footer-cta-grid,
      .footer-main {
        grid-template-columns: 1fr;
      }

      .available-card {
        min-height: auto;
      }

      .thumb-row {
        margin-top: 64px;
      }

      .projects {
        padding: 110px 0 110px;
      }

      .project-swiper .swiper-slide {
        width: 480px;
      }

      .footer-cta-actions {
        justify-content: flex-start;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 767px) {
      body {
        font-size: 15px;
      }

      .container-1600,
      .navbar-custom,
      .hero-content {
        width: calc(100% - 32px);
      }

      .site-header {
        background: rgba(255,255,255,0.94);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
      }

      .navbar-custom {
        min-height: 68px;
      }

      .navbar-brand-custom {
        max-width: calc(100vw - 96px);
        overflow: visible;
        font-size: 20px;
        letter-spacing: .08em;
      }

      .brand-dot {
        width: 5px;
        height: 5px;
        margin-bottom: 10px;
      }

      .navbar-toggler-icon-custom {
        width: 28px;
        gap: 5px;
      }

      .navbar-collapse {
        top: 68px;
        left: -16px;
        right: -16px;
        max-height: calc(100vh - 68px);
        padding: 10px 24px 24px;
        overflow-y: auto;
        background: rgba(255,255,255,0.98);
      }

      .navbar-nav-custom .nav-link {
        width: 100%;
        padding: 15px 0;
        font-size: 13px;
        letter-spacing: .03em;
        border-bottom: 1px solid rgba(124,63,90,0.08);
      }

      .navbar-nav-custom .nav-link.active:after {
        display: none;
      }

      .header-actions {
        display: none;
      }

      .section-label {
        margin-bottom: 22px;
        gap: 10px;
        font-size: 8px;
        letter-spacing: .2em;
      }

      .section-label::before,
      .section-label::after {
        width: 22px;
      }

      .section-title {
        font-size: clamp(25px, 7.8vw, 33px);
        line-height: 1.1;
      }

      .section-text {
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.6;
        color: #000;
      }

      .text-link {
        margin-top: 28px;
        font-size: 9px;
        letter-spacing: .14em;
      }

      .hero {
        height: auto;
        min-height: 100svh;
        padding-top: 68px;
      }

      .hero-swiper {
        inset: 68px 0 0;
        height: calc(100% - 68px);
      }

      .hero-swiper .swiper-slide:after {
        background: linear-gradient(150deg, rgba(15,10,20,.78) 0%, rgba(15,10,20,.54) 48%, rgba(15,10,20,.24) 100%);
      }

      .hero-swiper img {
        object-position: 66% center;
      }

      .hero-content {
        min-height: calc(100svh - 68px);
        height: auto;
        align-items: flex-end;
        padding: 92px 0 92px;
      }

      .hero-box {
        max-width: 100%;
      }

      .hero-kicker {
        margin-bottom: 18px;
        gap: 10px;
        font-size: 9px;
        letter-spacing: .18em;
      }

      .hero-kicker::before,
      .hero-kicker::after {
        width: 22px;
      }

      .hero h1 {
        max-width: 100%;
        font-size: clamp(31px, 7.8vw, 39px);
        line-height: 1.05;
        letter-spacing: -.035em;
      }

      .hero-lead {
        max-width: 100%;
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.8;
        color: rgba(255,255,255,.86);
      }

      .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 32px;
      }

      .hero-btn,
      .hero-btn-secondary,
      .footer-btn,
      .footer-phone-btn {
        width: 100%;
      }

      .hero-btn,
      .hero-btn-secondary {
        min-height: 54px;
        min-width: 0;
        padding: 0 22px;
        font-size: 10px;
      }

      .hero-tabs {
        display: none;
      }

      .about {
        padding: 78px 0 72px;
      }

      .about-grid {
        gap: 38px;
      }

      .about-image {
        height: 360px;
        border-radius: 4px;
        box-shadow: 0 22px 54px rgba(30,20,25,.12);
      }

      .available {
        padding: 74px 0 82px;
      }

      .available .section-label {
        margin-bottom: 34px;
      }

      .available-grid {
        gap: 34px;
      }

      .available-image-wrap {
        height: 360px;
        border-radius: 4px;
      }

      .available-image-arrows {
        width: 118px;
        height: 58px;
      }

      .available-image-arrows .available-slider-prev,
      .available-image-arrows .available-slider-next {
        height: 58px;
      }

      .available-card {
        padding-top: 0;
      }

      .available-title-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 24px;
      }

      .available-title h3 {
        margin-bottom: 10px;
        font-size: 22px;
        line-height: 1.12;
      }

      .available-card p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.6;
        color: #000;
      }

      .available-slider-prev,
      .available-slider-next {
        height: 50px;
      }

      .thumb-row {
        gap: 8px;
        margin-top: 30px;
        margin-bottom: 0;
      }

      .thumb-row img {
        height: 110px;
      }

      .projects {
        padding: 76px 0 84px;
      }

      .projects-grid {
        gap: 38px;
      }

      .project-stage {
        margin-right: -16px;
      }

      .project-swiper .swiper-slide {
        width: min(78vw, 330px);
      }

      .project-card {
        aspect-ratio: 1 / 1.08;
        border-radius: 4px;
        box-shadow: 0 22px 54px rgba(30,20,25,.12);
      }

      .project-slide-badge {
        width: calc(100% - 14px);
        height: 56px;
        grid-template-columns: 44px 1fr 44px;
      }

      .project-slide-badge span {
        padding: 0 8px;
        font-size: 9px;
        letter-spacing: .12em;
      }

      .slide-nav-btn {
        height: 56px;
      }

      .footer-cta {
        padding: 68px 0 52px;
      }

      .footer-cta-grid {
        gap: 32px;
      }

      .footer-cta h2 {
        font-size: clamp(30px, 9vw, 40px);
        line-height: 1.08;
      }

      .footer-cta p {
        font-size: 18px;
        line-height: 1.58;
      }

      .footer-cta-actions {
        gap: 12px;
      }

      .footer-btn,
      .footer-phone-btn {
        min-height: 54px;
      }

      .footer-main {
        padding: 50px 0 42px;
        gap: 34px;
      }

      .footer-brand {
        font-size: 24px;
      }

      .footer-text,
      .footer-list,
      .footer-contact-list {
        font-size: 14px;
      }

      .footer-title {
        margin-bottom: 16px;
      }

      .footer-bottom {
        gap: 22px;
        padding: 28px 0 34px;
        font-size: 11px;
      }

      .footer-legal {
        gap: 18px;
      }
    }

    @media (max-width: 420px) {
      .container-1600,
      .navbar-custom,
      .hero-content {
        width: calc(100% - 28px);
      }

      .navbar-brand-custom {
        font-size: 18px;
        letter-spacing: .07em;
      }

      .hero h1 {
        font-size: clamp(31px, 8.6vw, 38px);
      }

      .hero-content {
        padding-bottom: 78px;
      }

      .hero-lead,
      .section-text,
      .available-card p,
      .footer-cta p {
        font-size: 19px;
      }

      .about-image,
      .available-image-wrap {
        height: 330px;
      }

      .thumb-row img {
        height: 82px;
      }

      .project-swiper .swiper-slide {
        width: 82vw;
      }
    }

.admin-bar .site-header {
  top: 32px;
}
.offcanvas-nav-wrap {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
}
.offcanvas-backdrop-custom {
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 25, .42);
  opacity: 0;
  transition: opacity .35s ease;
}
.offcanvas-panel-custom {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  background: #f7f0eb;
  transform: translateX(-100%);
  transition: transform .45s cubic-bezier(.76,0,.24,1);
  display: flex;
  flex-direction: column;
  padding: 24px clamp(24px, 6vw, 70px) 38px;
  overflow-y: auto;
}
.offcanvas-panel-custom::before {
  content: none;
}
.offcanvas-nav-wrap.is-open {
  visibility: visible;
  pointer-events: auto;
}
.offcanvas-nav-wrap.is-open .offcanvas-backdrop-custom {
  opacity: 1;
}
.offcanvas-nav-wrap.is-open .offcanvas-panel-custom {
  transform: translateX(0);
}
.offcanvas-head-custom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(124,63,90,.14);
}

.offcanvas-head-custom .brand-text-main {
  font-size: clamp(25px, 6.2vw, 36px);
}
.offcanvas-head-custom .brand-text-accent {
  font-size: clamp(14px, 3.2vw, 18px);
}
.offcanvas-close-custom {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(124,63,90,.18);
  border-radius: 0;
  background: rgba(255,255,255,.68);
  color: var(--accent);
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(30,20,25,.08);
}
.offcanvas-nav-custom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 0 0;
  margin: 0;
  list-style: none;
}
.offcanvas-nav-custom li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.offcanvas-nav-custom a {
  display: block;
  position: relative;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(124,63,90,.18);
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(17px, 4.4vw, 22px);
  font-weight: 500;
  letter-spacing: .035em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--dark);
  box-shadow: none;
  transition: color .25s ease, padding-left .25s ease;
}
.offcanvas-nav-custom a::after {
  content: none;
}
.offcanvas-nav-custom .current-menu-item > a,
.offcanvas-nav-custom a:hover {
  color: var(--accent);
  padding-left: 10px;
}
.offcanvas-nav-custom .current-menu-item > a::after,
.offcanvas-nav-custom a:hover::after {
  transform: none;
}
body.nav-open {
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .navbar-custom .navbar-collapse {
    display: none !important;
  }
}
@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
.navbar-nav-custom,
.footer-list,
.footer-legal-list {
  padding-left: 0;
  list-style: none;
}
.navbar-nav-custom li,
.footer-list li,
.footer-legal-list li {
  list-style: none;
}
.navbar-nav-custom a {
  padding: 34px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #555;
  position: relative;
  white-space: nowrap;
  transition: color .2s ease;
}
.navbar-nav-custom a:hover,
.navbar-nav-custom .current-menu-item > a {
  color: var(--accent);
}
.navbar-nav-custom .current-menu-item > a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}
.footer-list {
  margin: 0;
}
.footer-legal-list {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
}
@media (max-width: 767.98px) {
  .footer-legal-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.available-image-link {
  display: block;
  width: 100%;
  height: 100%;
}
.available-title h3 a,
.available-title h3 span.available-dynamic-title {
  color: inherit;
  text-decoration: none;
}
.available-card-link {
  display: block;
  max-width: 430px;
  color: inherit;
  text-decoration: none;
}
.available-card-link p {
  transition: color .25s ease;
}
.available-card-link:hover p,
.available-title h3 a:hover {
  color: var(--accent);
}
.available-dynamic-link.is-disabled {
  pointer-events: none;
}
.project-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.project-slide-badge {
  z-index: 3;
}

.promise {
  padding: 115px 0 110px;
  background: var(--soft-light);
  border-top: 1px solid rgba(124,63,90,.1);
}
.promise-grid {
  display: grid;
  grid-template-columns: minmax(0, 580px) minmax(0, 1fr);
  gap: 90px;
  align-items: start;
}
.promise-list {
  display: grid;
  gap: 16px;
}
.promise-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid rgba(124,63,90,.09);
  box-shadow: 0 18px 44px rgba(30,20,25,.06);
}
.promise-item i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  border-radius: 50%;
}
.promise-item span {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}
.benefits {
  padding: 115px 0 120px;
  background: #fff;
}
.benefits-head,
.testimonials-head {
  max-width: 760px;
  margin-bottom: 58px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.benefit-card {
  min-height: 315px;
  padding: 34px 30px;
  background: var(--soft-light);
  border: 1px solid rgba(124,63,90,.09);
}
.benefit-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  color: var(--accent);
  border: 1px solid rgba(124,63,90,.22);
  border-radius: 50%;
  font-size: 22px;
}
.benefit-card h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 500;
  color: var(--dark);
}
.benefit-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #000;
}
.testimonials {
  padding: 115px 0 120px;
  background: var(--soft-light);
  border-top: 1px solid rgba(124,63,90,.1);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 32px;
  background: #fff;
  border: 1px solid rgba(124,63,90,.09);
  box-shadow: 0 18px 44px rgba(30,20,25,.06);
}
.testimonial-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.68;
  color: #000;
}
.testimonial-card strong {
  display: block;
  margin-top: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-strip {
  padding: 120px 0;
  background: #fff;
}
.contact-strip-grid {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
  gap: 90px;
  align-items: center;
}
.contact-person {
  margin: 30px 0 34px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #000;
}
.contact-person strong {
  font-size: 17px;
  font-weight: 600;
}
.contact-person span {
  font-size: 14px;
  color: var(--muted);
}
.contact-strip-image {
  width: 100%;
  height: 540px;
  object-fit: cover;
  box-shadow: 0 34px 90px rgba(30,20,25,.12);
}
.contact-strip .hero-btn {
  color: #fff;
}
.contact-strip .hero-btn:hover {
  color: var(--accent);
}
@media (max-width: 1199px) {
  .promise-grid,
  .contact-strip-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .benefits-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .promise,
  .benefits,
  .testimonials,
  .contact-strip {
    padding: 74px 0 82px;
  }
  .promise-grid,
  .contact-strip-grid {
    gap: 34px;
  }
  .benefits-head,
  .testimonials-head {
    margin-bottom: 34px;
  }
  .benefits-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .promise-item {
    padding: 18px 18px;
    grid-template-columns: 30px 1fr;
    gap: 13px;
  }
  .promise-item i {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  .promise-item span,
  .testimonial-card p,
  .benefit-card p {
    font-size: 16px;
    line-height: 1.6;
  }
  .benefit-card,
  .testimonial-card {
    min-height: auto;
    padding: 28px 24px;
  }
  .benefit-card h3 {
    font-size: 22px;
  }
  .contact-strip-image {
    height: 360px;
  }
}


/* Version 1.1.5 adjustments */
@media (max-width: 991.98px) {
  .available-title-row {
    grid-template-columns: 1fr 112px;
    gap: 18px;
    margin-bottom: 36px;
  }
  .available-title h3 {
    font-size: 25px;
    line-height: 1.14;
  }
  .available-text-arrows {
    width: 112px;
    height: 52px;
  }
  .available-text-arrows .available-slider-prev,
  .available-text-arrows .available-slider-next {
    height: 52px;
  }
}
@media (max-width: 575.98px) {
  .available-title-row {
    grid-template-columns: 1fr 96px;
  }
  .available-title h3 {
    font-size: 23px;
  }
  .available-text-arrows {
    width: 96px;
  }
  .offcanvas-nav-custom a {
    font-size: 17px;
    padding: 17px 0;
  }
}

/* Privacura Feinschliff 1.1.6 */
.project-slide-badge {
  left: 0;
  right: auto;
  border-left: 0;
  border-right: 1px solid rgba(124,63,90,0.08);
  border-radius: 0 4px 0 4px;
}
.available-image-arrows {
  left: 0;
  right: auto;
  border-radius: 0 4px 0 0;
}
.available-text-arrows {
  background: var(--accent);
  border: 0;
  box-shadow: 0 14px 34px rgba(30,20,25,.14);
  overflow: hidden;
}
.available-text-arrows .available-slider-prev,
.available-text-arrows .available-slider-next {
  color: #fff;
  background: transparent;
  border-radius: 0;
}
.available-text-arrows .available-slider-prev {
  border-right: 1px solid rgba(255,255,255,.28);
}
.available-text-arrows .available-slider-prev:hover,
.available-text-arrows .available-slider-next:hover {
  color: #fff;
  background: rgba(255,255,255,.16);
}
.offcanvas-nav-custom a {
  font-size: clamp(15px, 3.8vw, 19px);
  padding: 15px 0;
  letter-spacing: .025em;
}
.hero h1 {
  font-size: clamp(47px, 4.15vw, 91px);
}
@media (max-width: 991.98px) {
  .hero h1 {
    font-size: clamp(34px, 8.4vw, 42px);
    line-height: 1.04;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 10px;
  }
  .hero-btn,
  .hero-btn-secondary {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 0 14px;
    font-size: 9px;
    letter-spacing: .045em;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .offcanvas-nav-custom a {
    font-size: 15px;
    padding: 14px 0;
  }
  .hero h1 {
    font-size: clamp(32px, 8.9vw, 39px);
  }
  .hero-actions {
    gap: 8px;
  }
  .hero-btn,
  .hero-btn-secondary {
    min-height: 50px;
    padding: 0 10px;
    font-size: 8px;
    letter-spacing: .035em;
  }
  .available-image-arrows {
    left: 0;
    right: auto;
  }
  .project-slide-badge {
    left: 0;
    right: auto;
  }
}

/* Privacura Feinschliff 1.1.7 */
.available .section-label {
  display: inline-flex;
  width: auto;
  max-width: max-content;
}
.available .section-label::before,
.available .section-label::after {
  width: 28px;
  flex: 0 0 28px;
}
.available .text-link {
  width: max-content;
  max-width: max-content;
  align-self: flex-start;
}
a,
button,
.text-link,
.navbar-nav-custom a,
.offcanvas-nav-custom a,
.footer-legal a,
.footer-contact-list a,
.footer-list a,
.available-title h3 a,
.available-card-link,
.project-card-link,
.hero-btn,
.hero-btn-secondary {
  transition: color .28s ease, background-color .28s ease, border-color .28s ease, opacity .28s ease, transform .28s ease, padding-left .28s ease, gap .28s ease;
}
.text-link::after,
.navbar-nav-custom a::after,
.footer-legal a::after {
  transition: width .28s ease, background-color .28s ease, transform .28s ease, opacity .28s ease;
}
.text-link:hover {
  transform: translateX(4px);
}
.navbar-nav-custom a:hover,
.offcanvas-nav-custom a:hover,
.footer-list a:hover,
.footer-contact-list a:hover,
.footer-legal a:hover,
.footer-socials a:hover,
.available-title h3 a:hover,
.available-card-link:hover,
.hero-btn:hover,
.hero-btn-secondary:hover {
  transform: translateY(-1px);
}
.available-card-link:hover {
  opacity: .92;
}
.available-dynamic-link.is-disabled:hover,
.project-card-link:hover {
  transform: none;
}
@media (max-width: 575.98px) {
  .available .section-label::before,
  .available .section-label::after {
    width: 22px;
    flex-basis: 22px;
  }
}


.footer-contact-list > span {
  font-size: 13px;
  line-height: 1.55;
}
.footer-legal {
  gap: 18px;
}
.footer-legal-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal-list a {
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .035em;
}
@media (max-width: 767.98px) {
  .footer-legal-list {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
  .footer-legal-list a {
    font-size: 10px;
  }
}

@media (max-width: 991.98px) {
  .hero-content {
    align-items: center;
    padding: 56px 0 128px;
  }
  .hero-tabs {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: translateY(-50%);
    pointer-events: none;
  }
  .hero-tabs span,
  .hero-tabs strong {
    display: none;
  }
  .hero-slider-prev,
  .hero-slider-next {
    position: absolute;
    top: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 50%;
    background: rgba(20,10,28,.28);
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    pointer-events: auto;
  }
  .hero-slider-prev {
    left: 18px;
  }
  .hero-slider-next {
    right: 18px;
  }
  .hero-slider-prev:hover,
  .hero-slider-next:hover {
    background: rgba(124,63,90,.78);
    color: #fff;
  }
}
@media (max-width: 575.98px) {
  .hero-content {
    padding: 44px 0 112px;
  }
  .hero-slider-prev,
  .hero-slider-next {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
  .hero-slider-prev {
    left: 12px;
  }
  .hero-slider-next {
    right: 12px;
  }
}


/* Version 1.2.2 FAQ und Versprechen */
.faq-section {
  padding: 115px 0 110px;
  background: var(--soft-light);
  border-top: 1px solid rgba(124,63,90,.1);
}
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 90px;
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 110px;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(124,63,90,.1);
  box-shadow: 0 14px 34px rgba(30,20,25,.045);
}
.faq-item summary {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr 38px;
  gap: 22px;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  color: var(--dark);
  transition: color .25s ease, background .25s ease;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary span {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: -.01em;
}
.faq-item summary i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  background: rgba(124,63,90,.08);
  color: var(--accent);
  font-size: 15px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.faq-item summary:hover {
  color: var(--accent);
  background: rgba(124,63,90,.035);
}
.faq-item[open] summary i {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}
.faq-answer {
  padding: 0 24px 24px;
}
.faq-answer p {
  max-width: 760px;
  margin: 0;
  font-size: 17px;
  line-height: 1.58;
  color: #000;
}
.promise-compact {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid rgba(124,63,90,.08);
}
.promise-compact-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}
.promise-compact .section-title {
  font-size: clamp(31px, 2.8vw, 46px);
}
.promise-list-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.promise-list-compact .promise-item {
  padding: 16px 18px;
  box-shadow: none;
  background: var(--soft-light);
}
.promise-list-compact .promise-item span {
  font-size: 15px;
  line-height: 1.45;
}
.promise-list-compact .promise-item i {
  width: 28px;
  height: 28px;
  font-size: 13px;
}
@media (max-width: 1199px) {
  .faq-grid,
  .promise-compact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .faq-intro {
    position: static;
  }
}
@media (max-width: 767px) {
  .faq-section,
  .promise-compact {
    padding: 74px 0 82px;
  }
  .faq-grid,
  .promise-compact-grid {
    gap: 30px;
  }
  .faq-item summary {
    min-height: 64px;
    grid-template-columns: 1fr 34px;
    gap: 16px;
    padding: 18px 18px;
  }
  .faq-item summary span {
    font-size: 22px;
  }
  .faq-item summary i {
    width: 34px;
    height: 34px;
  }
  .faq-answer {
    padding: 0 18px 20px;
  }
  .faq-answer p {
    font-size: 16px;
    line-height: 1.56;
  }
  .promise-list-compact {
    grid-template-columns: 1fr;
  }
}


/* Version 1.2.3 FAQ Feinschliff */
.faq-item {
  border: 0;
  border-bottom: 1px solid rgba(124,63,90,.16);
  box-shadow: none;
}
.faq-item:first-child {
  border-top: 1px solid rgba(124,63,90,.16);
}
.faq-item summary {
  min-height: 66px;
  grid-template-columns: 1fr 34px;
  padding: 20px 0;
  background: transparent;
}
.faq-item summary span {
  font-size: 22px;
  line-height: 1.22;
}
.faq-item summary i {
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1px solid rgba(124,63,90,.24);
  border-radius: 50%;
  font-size: 13px;
}
.faq-item summary:hover {
  background: transparent;
}
.faq-item summary:hover i {
  background: rgba(124,63,90,.08);
}
.faq-item[open] summary {
  padding-bottom: 14px;
}
.faq-item[open] summary i {
  transform: rotate(180deg);
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.faq-answer {
  padding: 0 46px 24px 0;
}
.faq-answer p {
  padding-top: 6px;
  font-size: 16px;
  line-height: 1.66;
}
@media (max-width: 767px) {
  .faq-item summary {
    min-height: 58px;
    grid-template-columns: 1fr 31px;
    padding: 17px 0;
  }
  .faq-item summary span {
    font-size: 20px;
    line-height: 1.2;
  }
  .faq-item summary i {
    width: 31px;
    height: 31px;
    font-size: 12px;
  }
  .faq-item[open] summary {
    padding-bottom: 12px;
  }
  .faq-answer {
    padding: 0 0 21px 0;
  }
  .faq-answer p {
    padding-top: 5px;
    font-size: 15px;
    line-height: 1.62;
  }
}

/* Version 1.2.4 Hero Mobile Pfeile */
@media (max-width: 991.98px) {
  .hero-tabs {
    top: auto;
    bottom: 34px;
    height: 44px;
    transform: none;
  }
  .hero-slider-prev,
  .hero-slider-next {
    top: 0;
    bottom: auto;
    z-index: 6;
  }
  .hero-content {
    padding-bottom: 150px;
  }
}
@media (max-width: 575.98px) {
  .hero-tabs {
    bottom: 28px;
    height: 40px;
  }
  .hero-content {
    padding-bottom: 138px;
  }
}

/* Version 1.2.5 FAQ sauber */
.faq-section {
  padding: 110px 0;
  background: var(--soft-light);
}
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  gap: 86px;
  align-items: start;
}
.faq-list {
  display: block;
  border-top: 1px solid rgba(124,63,90,.18);
}
.faq-item {
  margin: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(124,63,90,.18);
  box-shadow: none;
}
.faq-item:first-child {
  border-top: 0;
}
.faq-item summary {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 22px;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary span {
  display: block;
  min-width: 0;
  padding-right: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -.01em;
}
.faq-item summary i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  flex: 0 0 38px;
  border: 1px solid rgba(124,63,90,.28);
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  font-size: 13px;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.faq-item summary:hover span {
  color: var(--accent);
}
.faq-item summary:hover i {
  background: rgba(124,63,90,.08);
  border-color: rgba(124,63,90,.42);
}
.faq-item[open] summary {
  padding-bottom: 16px;
}
.faq-item[open] summary i {
  transform: rotate(180deg);
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.faq-answer {
  max-width: 830px;
  padding: 0 64px 28px 0;
}
.faq-answer p {
  margin: 0;
  padding-top: 8px;
  font-size: 16px;
  line-height: 1.68;
  color: #000;
}
@media (max-width: 1199px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .faq-intro {
    position: static;
  }
}
@media (max-width: 767px) {
  .faq-section {
    padding: 76px 0 82px;
  }
  .faq-grid {
    gap: 32px;
  }
  .faq-item summary {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 16px;
    padding: 20px 0;
  }
  .faq-item summary span {
    padding-right: 0;
    font-size: 19px;
    line-height: 1.24;
  }
  .faq-item summary i {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 12px;
  }
  .faq-item[open] summary {
    padding-bottom: 12px;
  }
  .faq-answer {
    padding: 0 0 24px 0;
  }
  .faq-answer p {
    padding-top: 8px;
    font-size: 15px;
    line-height: 1.66;
  }
}

/* Version 1.2.6 FAQ Hintergrund sauber */
.faq-section {
  background: var(--soft-light);
  border-top: 1px solid rgba(124,63,90,.1);
}
.faq-grid {
  align-items: start;
}
.faq-intro .section-title {
  font-size: clamp(31px, 3vw, 48px);
  line-height: 1.04;
}
.faq-list {
  gap: 14px;
}
.faq-item,
.faq-item:first-child {
  background: #fff;
  border: 1px solid rgba(124,63,90,.12);
  box-shadow: 0 14px 34px rgba(30,20,25,.045);
}
.faq-item summary {
  min-height: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  gap: 22px;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
}
.faq-item summary span {
  min-width: 0;
  font-size: 22px;
  line-height: 1.22;
}
.faq-item summary i {
  width: 36px;
  height: 36px;
  justify-self: end;
  flex: 0 0 36px;
  background: rgba(124,63,90,.08);
  border: 1px solid rgba(124,63,90,.2);
  border-radius: 50%;
  color: var(--accent);
  font-size: 13px;
}
.faq-item summary:hover {
  background: rgba(124,63,90,.035);
}
.faq-item summary:hover i {
  background: rgba(124,63,90,.12);
}
.faq-item[open] summary {
  padding-bottom: 12px;
}
.faq-item[open] summary i {
  transform: rotate(180deg);
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.faq-answer {
  padding: 4px 24px 26px;
}
.faq-answer p {
  max-width: 780px;
  margin: 0;
  padding-top: 0;
  font-size: 16px;
  line-height: 1.64;
  color: #000;
}
@media (max-width: 767px) {
  .faq-intro .section-title {
    font-size: 32px;
    line-height: 1.05;
  }
  .faq-list {
    gap: 12px;
  }
  .faq-item summary {
    min-height: 62px;
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 14px;
    padding: 17px 16px;
  }
  .faq-item summary span {
    font-size: 19px;
    line-height: 1.22;
  }
  .faq-item summary i {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    font-size: 12px;
  }
  .faq-item[open] summary {
    padding-bottom: 10px;
  }
  .faq-answer {
    padding: 3px 16px 22px;
  }
  .faq-answer p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Header Layout 1.2.8 */
@media (min-width: 1200px) {
  .navbar-custom {
    display: grid;
    grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
    align-items: center;
    column-gap: 28px;
  }

  .navbar-custom > .navbar-brand-custom {
    grid-column: 1;
    justify-self: start;
  }

  .navbar-custom > .navbar-collapse {
    display: contents !important;
  }

  .navbar-nav-custom {
    grid-column: 2;
    justify-self: center;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .navbar-custom {
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    column-gap: 18px;
  }

  .navbar-nav-custom {
    gap: 16px;
  }

  .navbar-nav-custom .nav-link {
    font-size: 11px;
    letter-spacing: .065em;
  }

  .header-phone {
    font-size: 11px;
  }

  .header-btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 10px;
  }
}


/* Privacura 1.3.2 Back to top und Mobile Footer */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  box-shadow: 0 18px 44px rgba(30,20,25,.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease, background-color .28s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent-light);
  color: #fff;
  transform: translateY(-3px);
}
@media (max-width: 767.98px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    font-size: 15px;
  }
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 36px;
  }
  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-main > div:nth-child(3) {
    grid-column: 1 / -1;
  }
  .footer-title {
    margin-bottom: 14px;
  }
  .footer-list {
    gap: 10px;
  }
}
@media (max-width: 420px) {
  .footer-main {
    column-gap: 18px;
  }
  .footer-list,
  .footer-contact-list {
    font-size: 13px;
  }
}

.subhero {
  position: relative;
  width: 100%;
  height: 65vh;
  min-height: 560px;
  overflow: hidden;
  padding-top: 88px;
  background: var(--dark);
}
.subhero-image {
  position: absolute;
  inset: 88px 0 0;
  width: 100%;
  height: calc(100% - 88px);
  object-fit: cover;
  object-position: center center;
}
.subhero-content {
  position: relative;
  z-index: 2;
  width: min(1600px, calc(100% - 80px));
  height: calc(65vh - 88px);
  min-height: 472px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 70px 0 90px;
}
.subhero-box {
  max-width: 980px;
}
.subhero h1 {
  margin: 0;
  max-width: 1020px;
  font-size: clamp(42px, 4.2vw, 68px);
  line-height: 1.04;
  color: #fff;
  text-shadow: 0 4px 60px rgba(10,5,15,.3);
}
.offer-intro-section,
.offer-services-section,
.offer-spitex-section,
.offer-when-section,
.offer-extra-section {
  padding: 118px 0;
  background: #fff;
}
.offer-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(0, 1fr);
  gap: 96px;
  align-items: center;
}
.offer-intro-content .section-title {
  margin-bottom: 34px;
}
.rich-text p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.78;
  color: #000;
}
.rich-text p:last-child {
  margin-bottom: 0;
}

.rich-text strong,
.rich-text b,
.section-text strong,
.section-text b,
.detail-intro-content .rich-text strong,
.detail-intro-content .rich-text b,
.detail-block-content .rich-text strong,
.detail-block-content .rich-text b,
.detail-cta-card .rich-text strong,
.detail-cta-card .rich-text b {
  font-weight: 600 !important;
}
.offer-intro-media {
  position: relative;
}
.offer-intro-media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
  box-shadow: 0 34px 90px rgba(30,20,25,.12);
}
.offer-intro-note {
  position: absolute;
  left: -48px;
  bottom: 44px;
  max-width: 360px;
  padding: 28px 32px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 24px 70px rgba(30,20,25,.14);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 1.12;
  color: var(--dark);
}
.offer-section-head {
  max-width: 760px;
  margin-bottom: 58px;
}
.offer-services-section {
  background: var(--soft-light);
  border-top: 1px solid rgba(124,63,90,.1);
  border-bottom: 1px solid rgba(124,63,90,.1);
}
.offer-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.offer-service-card {
  background: #fff;
  border: 1px solid rgba(124,63,90,.09);
  box-shadow: 0 18px 44px rgba(30,20,25,.06);
}
.offer-service-image {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.offer-service-body {
  padding: 34px 32px 38px;
}
.offer-service-body h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 500;
  color: var(--dark);
}
.offer-service-body p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.65;
  color: #000;
}
.offer-service-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}
.offer-service-body li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.55;
  color: #000;
}
.offer-service-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 9px;
  height: 1px;
  background: var(--accent);
}
.offer-spitex-card {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(0, 1fr);
  gap: 90px;
  align-items: center;
  padding: 70px;
  background: var(--dark);
  color: #fff;
}
.offer-spitex-card .section-title,
.offer-spitex-card .section-text,
.offer-spitex-card .rich-text p {
  color: #fff;
}
.offer-spitex-card .section-label {
  color: rgba(255,255,255,.72);
}
.offer-spitex-card .section-label::before,
.offer-spitex-card .section-label::after {
  background: rgba(255,255,255,.45);
}
.offer-spitex-image {
  width: 100%;
  height: 470px;
  object-fit: cover;
  display: block;
}
.offer-when-section {
  background: var(--soft-light);
}
.offer-when-grid {
  align-items: start;
}
.offer-process-section {
  padding: 118px 0;
  background: var(--accent);
  color: #fff;
}
.offer-section-head-light .section-label,
.offer-section-head-light .section-title {
  color: #fff;
}
.offer-section-head-light .section-label::before,
.offer-section-head-light .section-label::after {
  background: rgba(255,255,255,.52);
}
.offer-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.offer-process-card {
  min-height: 340px;
  padding: 32px 26px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
}
.offer-process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}
.offer-process-card h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  line-height: 1.08;
  font-weight: 500;
  color: #fff;
}
.offer-process-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.62;
  color: rgba(255,255,255,.82);
}
.offer-extra-section {
  background: #fff;
}
.offer-extra-card {
  max-width: 940px;
  padding: 66px 72px;
  background: var(--soft-light);
  border: 1px solid rgba(124,63,90,.1);
  box-shadow: 0 22px 64px rgba(30,20,25,.06);
}
.offer-contact-strip {
  background: var(--soft-light);
}
@media (max-width: 1399px) {
  .offer-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .offer-intro-grid,
  .offer-spitex-card {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .offer-services-grid {
    grid-template-columns: 1fr;
  }
  .offer-service-card {
    display: grid;
    grid-template-columns: 42% 1fr;
  }
  .offer-service-image {
    height: 100%;
    min-height: 360px;
  }
  .offer-intro-note {
    left: 28px;
  }
}
@media (max-width: 991.98px) {
  .subhero {
    height: 65vh;
    min-height: 520px;
  }
  .subhero-content {
    width: min(100% - 40px, 1600px);
    height: calc(65vh - 88px);
    min-height: 432px;
    padding: 60px 0 80px;
  }
  .subhero h1 {
    font-size: clamp(38px, 8vw, 58px);
  }
  .offer-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .subhero {
    height: 65vh;
    min-height: 500px;
    padding-top: 76px;
  }
  .subhero-image {
    inset: 76px 0 0;
    height: calc(100% - 76px);
  }
  .subhero-content {
    width: calc(100% - 34px);
    height: calc(65vh - 76px);
    min-height: 424px;
    padding: 44px 0 58px;
  }
  .subhero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.02;
  }
  .offer-intro-section,
  .offer-services-section,
  .offer-spitex-section,
  .offer-when-section,
  .offer-extra-section,
  .offer-process-section {
    padding: 76px 0;
  }
  .offer-section-head {
    margin-bottom: 34px;
  }
  .offer-intro-grid {
    gap: 34px;
  }
  .offer-intro-media img {
    height: 380px;
  }
  .offer-intro-note {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin-top: -48px;
    margin-left: 18px;
    margin-right: 18px;
    font-size: 25px;
    padding: 24px 25px;
  }
  .offer-service-card {
    display: block;
  }
  .offer-service-image {
    height: 320px;
    min-height: 0;
  }
  .offer-service-body {
    padding: 28px 24px 32px;
  }
  .offer-service-body h3 {
    font-size: 29px;
  }
  .offer-service-body p,
  .rich-text p {
    font-size: 15px;
    line-height: 1.68;
  }
  .offer-spitex-card {
    padding: 34px 24px;
    gap: 34px;
  }
  .offer-spitex-image {
    height: 330px;
  }
  .offer-process-grid {
    grid-template-columns: 1fr;
  }
  .offer-process-card {
    min-height: auto;
    padding: 28px 24px;
  }
  .offer-extra-card {
    padding: 34px 24px;
  }
}

/* Version 1.3.6 Unterseite Angebot an Home-Stil angeglichen */
.subhero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -.03em;
}
.subhero .hero-lead {
  max-width: 680px;
  margin-top: 26px;
  font-size: 18px;
  line-height: 1.62;
  color: rgba(255,255,255,.9);
}
.offer-intro-section,
.offer-services-section,
.offer-spitex-section,
.offer-when-section,
.offer-extra-section,
.offer-process-section,
.offer-contact-strip {
  background: #fff;
  color: var(--text);
}
.offer-intro-section,
.offer-spitex-section,
.offer-extra-section,
.offer-contact-strip {
  padding: 115px 0 120px;
}
.offer-services-section,
.offer-when-section,
.offer-process-section {
  padding: 115px 0 120px;
  background: var(--soft-light);
  border-top: 1px solid rgba(124,63,90,.1);
  border-bottom: 1px solid rgba(124,63,90,.1);
}
.offer-intro-grid {
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
  gap: 90px;
}
.offer-intro-content .section-title {
  margin-bottom: 28px;
}
.rich-text p,
.offer-service-body p,
.offer-service-body li,
.offer-process-card p {
  font-size: 16px;
  line-height: 1.66;
  color: #000;
}
.offer-intro-media img,
.offer-service-image,
.offer-spitex-image,
.contact-strip-image {
  box-shadow: 0 34px 90px rgba(30,20,25,.12);
}
.offer-intro-media img {
  height: 540px;
}
.offer-intro-note {
  background: #fff;
  border: 1px solid rgba(124,63,90,.09);
  box-shadow: 0 18px 44px rgba(30,20,25,.06);
  color: var(--dark);
}
.offer-services-section {
  background: #fff;
}
.offer-services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.offer-service-card,
.offer-process-card,
.offer-extra-card,
.offer-spitex-card {
  background: #fff;
  border: 1px solid rgba(124,63,90,.09);
  box-shadow: 0 18px 44px rgba(30,20,25,.06);
  color: var(--text);
}
.offer-service-card {
  overflow: hidden;
}
.offer-service-image {
  height: 330px;
}
.offer-service-body h3,
.offer-process-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--dark);
}
.offer-service-body h3 {
  font-size: 30px;
}
.offer-service-body ul {
  gap: 12px;
}
.offer-service-body li::before {
  background: var(--accent);
}
.offer-spitex-card {
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
  gap: 90px;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}
.offer-spitex-card .section-title,
.offer-spitex-card .section-text,
.offer-spitex-card .rich-text p {
  color: var(--dark);
}
.offer-spitex-card .section-label {
  color: var(--accent);
}
.offer-spitex-card .section-label::before,
.offer-spitex-card .section-label::after {
  background: var(--accent);
}
.offer-spitex-image {
  height: 500px;
}
.offer-when-section .faq-grid {
  grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  gap: 86px;
}
.offer-process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.offer-process-card {
  min-height: 315px;
  padding: 34px 28px;
  backdrop-filter: none;
}
.offer-process-card span {
  background: var(--accent);
  color: #fff;
}
.offer-process-card h3 {
  font-size: 25px;
  line-height: 1.1;
}
.offer-process-card p {
  font-size: 14px;
  line-height: 1.6;
}
.offer-extra-card {
  max-width: 940px;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}
.offer-contact-strip {
  border-top: 1px solid rgba(124,63,90,.1);
}
@media (max-width: 1399px) {
  .offer-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .offer-intro-grid,
  .offer-spitex-card,
  .offer-when-section .faq-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .offer-services-grid {
    grid-template-columns: 1fr;
  }
  .offer-service-card {
    display: grid;
    grid-template-columns: 42% 1fr;
  }
  .offer-service-image {
    height: 100%;
    min-height: 360px;
  }
}
@media (max-width: 767.98px) {
  .subhero .hero-lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.55;
  }
  .offer-intro-section,
  .offer-services-section,
  .offer-spitex-section,
  .offer-when-section,
  .offer-extra-section,
  .offer-process-section,
  .offer-contact-strip {
    padding: 76px 0;
  }
  .offer-intro-media img,
  .offer-spitex-image {
    height: 380px;
  }
  .offer-service-card {
    display: block;
  }
  .offer-service-image {
    height: 320px;
    min-height: 0;
  }
  .offer-service-body h3 {
    font-size: 28px;
  }
  .rich-text p,
  .offer-service-body p,
  .offer-service-body li {
    font-size: 15px;
    line-height: 1.64;
  }
  .offer-process-grid {
    grid-template-columns: 1fr;
  }
  .offer-process-card {
    min-height: auto;
    padding: 28px 24px;
  }
}

/* Version 1.3.7 Angebot-Unterseite sauber im Home-Stil */
.subhero {
  height: 65vh;
  min-height: 560px;
  padding-top: 88px;
  background: var(--dark);
}
.subhero-image {
  inset: 88px 0 0;
  height: calc(100% - 88px);
}
.subhero-content {
  width: min(1600px, calc(100% - 80px));
  height: calc(65vh - 88px);
  min-height: 472px;
  padding: 70px 0 90px;
}
.subhero h1 {
  max-width: 980px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 4.1vw, 66px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.03em;
  color: #fff;
}
.subhero .hero-lead {
  max-width: 680px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.58;
  color: rgba(255,255,255,.9);
}
.offer-intro-section,
.offer-services-section,
.offer-spitex-section,
.offer-when-section,
.offer-process-section,
.offer-extra-section,
.offer-contact-strip {
  padding: 112px 0;
  background: #fff;
  color: var(--text);
}
.offer-services-section,
.offer-process-section {
  background: var(--soft-light);
  border-top: 1px solid rgba(124,63,90,.08);
  border-bottom: 1px solid rgba(124,63,90,.08);
}
.offer-when-section {
  background: #fff;
}
.offer-intro-grid,
.offer-spitex-card {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
  gap: 88px;
  align-items: center;
}
.offer-intro-content .section-title,
.offer-section-head .section-title,
.offer-spitex-card .section-title,
.offer-extra-card .section-title {
  max-width: 760px;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.02;
  color: var(--dark);
}
.rich-text p,
.offer-service-body p,
.offer-service-body li,
.offer-process-card p,
.offer-contact-strip .section-text p {
  font-size: 16px;
  line-height: 1.66;
  color: #000;
}
.rich-text p {
  margin: 0 0 18px;
}
.rich-text p:last-child {
  margin-bottom: 0;
}

.rich-text strong,
.rich-text b,
.section-text strong,
.section-text b,
.detail-intro-content .rich-text strong,
.detail-intro-content .rich-text b,
.detail-block-content .rich-text strong,
.detail-block-content .rich-text b,
.detail-cta-card .rich-text strong,
.detail-cta-card .rich-text b {
  font-weight: 600 !important;
}
.offer-intro-media img,
.offer-service-image,
.offer-spitex-image,
.contact-strip-image {
  width: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 34px 90px rgba(30,20,25,.12);
}
.offer-intro-media img {
  height: 540px;
}
.offer-intro-note {
  background: #fff;
  border: 1px solid rgba(124,63,90,.09);
  box-shadow: 0 18px 44px rgba(30,20,25,.06);
  color: var(--dark);
}
.offer-section-head {
  max-width: 780px;
  margin-bottom: 52px;
}
.offer-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.offer-service-card,
.offer-process-card,
.offer-extra-card {
  background: #fff;
  border: 1px solid rgba(124,63,90,.09);
  box-shadow: 0 18px 44px rgba(30,20,25,.06);
  color: var(--text);
}
.offer-service-card {
  overflow: hidden;
}
.offer-service-image {
  height: 330px;
}
.offer-service-body {
  padding: 34px 32px 38px;
}
.offer-service-body h3,
.offer-process-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--dark);
}
.offer-service-body h3 {
  margin-bottom: 18px;
  font-size: 30px;
  line-height: 1.08;
}
.offer-service-body ul {
  gap: 12px;
}
.offer-service-body li::before {
  background: var(--accent);
}
.offer-spitex-card {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}
.offer-spitex-card .section-title,
.offer-spitex-card .section-text,
.offer-spitex-card .rich-text p,
.offer-spitex-card .section-label {
  color: var(--dark);
}
.offer-spitex-card .section-label {
  color: var(--accent);
}
.offer-spitex-card .section-label::before,
.offer-spitex-card .section-label::after {
  background: var(--accent);
}
.offer-spitex-image {
  height: 500px;
}
.offer-when-section .faq-grid {
  grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  gap: 86px;
}
.offer-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.offer-process-card {
  min-height: 315px;
  padding: 34px 28px;
  backdrop-filter: none;
}
.offer-process-card span {
  background: var(--accent);
  color: #fff;
}
.offer-process-card h3 {
  margin-bottom: 16px;
  font-size: 25px;
  line-height: 1.1;
}
.offer-process-card p {
  font-size: 14px;
  line-height: 1.6;
}
.offer-extra-section {
  background: #fff;
}
.offer-extra-card {
  max-width: 980px;
  padding: 58px 64px;
}
.offer-contact-strip {
  border-top: 1px solid rgba(124,63,90,.1);
  background: var(--soft-light);
}
.offer-contact-strip .contact-strip-grid {
  align-items: center;
}
.offer-contact-strip .contact-person strong,
.offer-contact-strip .contact-person span {
  display: block;
}
.offer-contact-strip .contact-person strong {
  font-size: 18px;
  color: var(--dark);
}
.offer-contact-strip .contact-person span {
  margin-top: 4px;
  color: #000;
}
@media (max-width: 1399px) {
  .offer-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .offer-intro-grid,
  .offer-spitex-card,
  .offer-when-section .faq-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .offer-services-grid {
    grid-template-columns: 1fr;
  }
  .offer-service-card {
    display: grid;
    grid-template-columns: 42% 1fr;
  }
  .offer-service-image {
    height: 100%;
    min-height: 360px;
  }
}
@media (max-width: 991.98px) {
  .offer-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .subhero {
    height: 65vh;
    min-height: 500px;
    padding-top: 76px;
  }
  .subhero-image {
    inset: 76px 0 0;
    height: calc(100% - 76px);
  }
  .subhero-content {
    width: calc(100% - 34px);
    height: calc(65vh - 76px);
    min-height: 424px;
    padding: 44px 0 58px;
  }
  .subhero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.02;
  }
  .subhero .hero-lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.52;
  }
  .offer-intro-section,
  .offer-services-section,
  .offer-spitex-section,
  .offer-when-section,
  .offer-process-section,
  .offer-extra-section,
  .offer-contact-strip {
    padding: 76px 0;
  }
  .offer-intro-content .section-title,
  .offer-section-head .section-title,
  .offer-spitex-card .section-title,
  .offer-extra-card .section-title {
    font-size: clamp(32px, 10vw, 44px);
  }
  .offer-section-head {
    margin-bottom: 34px;
  }
  .offer-intro-grid,
  .offer-spitex-card {
    gap: 34px;
  }
  .offer-intro-media img,
  .offer-spitex-image {
    height: 380px;
  }
  .offer-intro-note {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin: -46px 18px 0;
    padding: 24px 25px;
    font-size: 25px;
  }
  .offer-service-card {
    display: block;
  }
  .offer-service-image {
    height: 320px;
    min-height: 0;
  }
  .offer-service-body {
    padding: 28px 24px 32px;
  }
  .offer-service-body h3 {
    font-size: 28px;
  }
  .rich-text p,
  .offer-service-body p,
  .offer-service-body li {
    font-size: 15px;
    line-height: 1.64;
  }
  .offer-process-grid {
    grid-template-columns: 1fr;
  }
  .offer-process-card {
    min-height: auto;
    padding: 28px 24px;
  }
  .offer-extra-card {
    padding: 34px 24px;
  }
}

/* Angebot Template Typografie Fix 1.3.8 */
.offer-intro-content .section-title,
.offer-section-head .section-title,
.offer-spitex-card .section-title,
.offer-extra-card .section-title,
.offer-contact-strip .section-title {
  max-width: 720px;
  font-size: clamp(27px, 2.35vw, 42px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.03em;
}
.offer-service-body h3 {
  font-size: clamp(23px, 1.75vw, 30px) !important;
  line-height: 1.12 !important;
  letter-spacing: -.02em;
}
.offer-process-card h3 {
  font-size: clamp(22px, 1.55vw, 27px) !important;
  line-height: 1.12 !important;
}
.offer-intro-note {
  font-size: clamp(24px, 2vw, 34px) !important;
  line-height: 1.14 !important;
}
.offer-section-head {
  max-width: 720px;
}
.offer-extra-card {
  max-width: 980px;
}
@media (max-width: 767.98px) {
  .offer-intro-content .section-title,
  .offer-section-head .section-title,
  .offer-spitex-card .section-title,
  .offer-extra-card .section-title,
  .offer-contact-strip .section-title {
    font-size: clamp(27px, 8vw, 36px) !important;
    line-height: 1.1 !important;
  }
  .offer-service-body h3,
  .offer-process-card h3 {
    font-size: 25px !important;
    line-height: 1.12 !important;
  }
  .offer-intro-note {
    font-size: 22px !important;
    line-height: 1.18 !important;
  }
}


/* Angebot Template Feinschliff 1.4.0 */
.offer-intro-note {
  display: none !important;
}
.offer-intro-media {
  position: relative;
}
.offer-extra-section {
  padding: 120px 0 130px;
  background: #fff !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}
.offer-extra-card {
  max-width: 620px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.offer-extra-card .section-label {
  margin-bottom: 24px;
}
.offer-extra-card .section-title {
  max-width: 620px;
  margin-bottom: 28px;
}
.offer-extra-card .section-text,
.offer-extra-card .rich-text p {
  max-width: 600px;
}
.offer-extra-card .text-link {
  margin-top: 32px;
}
@media (max-width: 767.98px) {
  .offer-extra-section {
    padding: 76px 0;
  }
  .offer-extra-card .section-label {
    margin-bottom: 18px;
  }
  .offer-extra-card .section-title {
    margin-bottom: 22px;
  }
}


/* Angebot Unterseite: Weitere Angebote im Startseiten-Stil */
.offer-extra-section {
  padding: 115px 0 120px !important;
  background: var(--soft-light) !important;
  border-top: 1px solid rgba(124,63,90,.1) !important;
  border-bottom: 1px solid rgba(124,63,90,.1) !important;
}
.offer-extra-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 90px;
  align-items: start;
}
.offer-extra-head {
  max-width: 540px;
}
.offer-extra-head .section-label {
  margin-bottom: 26px;
}
.offer-extra-head .section-title {
  max-width: 560px;
  margin-bottom: 0;
}
.offer-extra-content {
  max-width: 680px;
  padding-top: 66px;
}
.offer-extra-content .section-text,
.offer-extra-content .rich-text p {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.72;
  color: #000;
}
.offer-extra-content .text-link {
  margin-top: 34px;
}
.offer-extra-card {
  max-width: none !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 1199.98px) {
  .offer-extra-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .offer-extra-content {
    padding-top: 0;
  }
}
@media (max-width: 767.98px) {
  .offer-extra-section {
    padding: 78px 0 !important;
  }
  .offer-extra-grid {
    gap: 28px;
  }
  .offer-extra-head .section-label {
    margin-bottom: 18px;
  }
  .offer-extra-content .section-text,
  .offer-extra-content .rich-text p {
    font-size: 15px;
    line-height: 1.66;
  }
  .offer-extra-content .text-link {
    margin-top: 28px;
  }
}

/* Angebot Unterseite: saubere abwechselnde Section-Hintergründe 1.4.1 */
.offer-intro-section {
  background: #fff !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}
.offer-services-section {
  background: var(--soft-light) !important;
  border-top: 1px solid rgba(124,63,90,.1) !important;
  border-bottom: 1px solid rgba(124,63,90,.1) !important;
}
.offer-spitex-section {
  background: #fff !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}
.offer-spitex-card {
  background: transparent !important;
  color: var(--text) !important;
  padding: 0 !important;
}
.offer-spitex-card .section-title,
.offer-spitex-card .section-text,
.offer-spitex-card .rich-text p {
  color: #000 !important;
}
.offer-spitex-card .section-label {
  color: var(--accent) !important;
}
.offer-spitex-card .section-label::before,
.offer-spitex-card .section-label::after {
  background: rgba(124,63,90,.45) !important;
}
.offer-when-section {
  background: var(--soft-light) !important;
  border-top: 1px solid rgba(124,63,90,.1) !important;
  border-bottom: 1px solid rgba(124,63,90,.1) !important;
}
.offer-process-section {
  background: #fff !important;
  color: var(--text) !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}
.offer-section-head-light .section-label,
.offer-section-head-light .section-title {
  color: var(--text) !important;
}
.offer-section-head-light .section-label::before,
.offer-section-head-light .section-label::after {
  background: rgba(124,63,90,.45) !important;
}
.offer-process-card {
  background: var(--soft-light) !important;
  border: 1px solid rgba(124,63,90,.1) !important;
  box-shadow: 0 18px 44px rgba(30,20,25,.05) !important;
  backdrop-filter: none !important;
}
.offer-process-card span {
  background: var(--accent) !important;
  color: #fff !important;
}
.offer-process-card h3 {
  color: var(--dark) !important;
}
.offer-process-card p {
  color: #000 !important;
}
.offer-extra-section {
  background: var(--soft-light) !important;
  border-top: 1px solid rgba(124,63,90,.1) !important;
  border-bottom: 1px solid rgba(124,63,90,.1) !important;
}
.offer-contact-strip {
  background: #fff !important;
  border-top: 0 !important;
}

/* Über uns Unterseite 1.4.3 */
.about-page-story-section,
.about-page-founders-section,
.about-page-statement-section,
.about-page-contact-strip {
  padding: 112px 0;
}
.about-page-story-section,
.about-page-statement-section {
  background: #fff;
}
.about-page-founders-section,
.about-page-contact-strip {
  background: var(--soft-light);
  border-top: 1px solid rgba(124,63,90,.1);
  border-bottom: 1px solid rgba(124,63,90,.1);
}
.about-page-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(0, 1fr);
  gap: 92px;
  align-items: center;
}
.about-page-story-content .section-title,
.about-page-founders-head .section-title,
.about-page-contact-strip .section-title {
  max-width: 720px;
  font-size: clamp(27px, 2.35vw, 42px);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.about-page-story-media img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
  box-shadow: 0 34px 90px rgba(30,20,25,.12);
}
.about-page-founders-grid {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
  gap: 90px;
  align-items: start;
}
.about-page-founders-head .section-text {
  max-width: 560px;
}
.about-page-founders-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.about-page-founder-card {
  min-height: 0;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(124,63,90,.09);
  box-shadow: 0 18px 44px rgba(30,20,25,.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.about-page-founder-image {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
}
.about-page-founder-body {
  padding: 30px 32px 32px;
}
.about-page-founder-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(19px, 1.15vw, 23px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -.03em;
  color: var(--dark);
}
.about-page-founder-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--accent);
}
.about-page-statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  gap: 90px;
  align-items: center;
}
.about-page-statement-content {
  max-width: 920px;
}
.about-page-statement-content blockquote {
  max-width: 820px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 2.5vw, 42px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -.035em;
  color: var(--dark);
}
.about-page-statement-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  box-shadow: 0 34px 90px rgba(30,20,25,.12);
}
.about-page-contact-strip {
  border-bottom: 0;
}
@media (max-width: 1199.98px) {
  .about-page-story-grid,
  .about-page-founders-grid,
  .about-page-statement-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .about-page-founders-list {
    max-width: 760px;
  }
}
@media (max-width: 767.98px) {
  .about-page-story-section,
  .about-page-founders-section,
  .about-page-statement-section,
  .about-page-contact-strip {
    padding: 76px 0;
  }
  .about-page-story-grid,
  .about-page-founders-grid,
  .about-page-statement-grid {
    gap: 34px;
  }
  .about-page-story-content .section-title,
  .about-page-founders-head .section-title,
  .about-page-contact-strip .section-title {
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.1;
  }
  .about-page-story-media img,
  .about-page-statement-image {
    height: 380px;
  }
  .about-page-founders-list {
    grid-template-columns: 1fr;
  }
  .about-page-founder-card {
    min-height: 0;
  }
  .about-page-founder-image {
    height: 320px;
  }
  .about-page-founder-body {
    padding: 26px 26px 28px;
  }
  .about-page-founder-card h3 {
    font-size: 21px;
    line-height: 1.18;
  }
  .about-page-founder-card p {
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: .045em;
  }
  .about-page-statement-content blockquote {
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.12;
  }
}

/* Warum Priva Cura Unterseite 1.4.5 */
.why-page-intro-section,
.why-page-benefits-section,
.why-page-livein-section,
.why-page-spitex-section,
.why-page-contact-strip {
  padding: 112px 0;
}
.why-page-intro-section,
.why-page-livein-section,
.why-page-contact-strip {
  background: #fff;
}
.why-page-benefits-section,
.why-page-spitex-section {
  background: var(--soft-light);
  border-top: 1px solid rgba(124,63,90,.1);
  border-bottom: 1px solid rgba(124,63,90,.1);
}
.why-page-intro-grid,
.why-page-split-grid,
.why-page-spitex-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 620px);
  gap: 90px;
  align-items: center;
}
.why-page-intro-grid {
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
}
.why-page-intro-content .section-title,
.why-page-split-content .section-title,
.why-page-spitex-content .section-title,
.why-page-contact-strip .section-title,
.why-page-benefits-section .section-title {
  max-width: 720px;
  font-size: clamp(27px, 2.35vw, 42px);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.why-page-intro-media img,
.why-page-split-media img,
.why-page-spitex-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  box-shadow: 0 34px 90px rgba(30,20,25,.12);
}
.why-page-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.why-page-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.why-page-benefit-card {
  min-height: 250px;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid rgba(124,63,90,.09);
  box-shadow: 0 18px 44px rgba(30,20,25,.06);
}
.why-page-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 20px;
}
.why-page-benefit-card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 1.5vw, 27px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--dark);
}
.why-page-benefit-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #000;
}
.why-page-spitex-grid {
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
}
.why-page-contact-strip {
  border-top: 0;
}
@media (max-width: 1399.98px) {
  .why-page-benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1199.98px) {
  .why-page-intro-grid,
  .why-page-split-grid,
  .why-page-spitex-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }
}
@media (max-width: 767.98px) {
  .why-page-intro-section,
  .why-page-benefits-section,
  .why-page-livein-section,
  .why-page-spitex-section,
  .why-page-contact-strip {
    padding: 76px 0;
  }
  .why-page-intro-grid,
  .why-page-split-grid,
  .why-page-spitex-grid {
    gap: 34px;
  }
  .why-page-intro-content .section-title,
  .why-page-split-content .section-title,
  .why-page-spitex-content .section-title,
  .why-page-contact-strip .section-title,
  .why-page-benefits-section .section-title {
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.1;
  }
  .why-page-intro-media img,
  .why-page-split-media img,
  .why-page-spitex-image {
    height: 380px;
  }
  .why-page-button-row {
    gap: 10px;
    margin-top: 28px;
  }
  .why-page-button-row .hero-btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 10px;
  }
  .why-page-benefits-grid {
    grid-template-columns: 1fr;
  }
  .why-page-benefit-card {
    min-height: 0;
    padding: 28px 24px;
  }
}
/* Globale Content-Typografie 1.4.6 */
.section-text,
.section-text p,
.section-text li,
.rich-text,
.rich-text p,
.rich-text li,
.about-content .section-text,
.projects-content .section-text,
.available-dynamic-text,
.promise-item span,
.benefit-card p,
.testimonial-card p,
.contact-strip .section-text,
.offer-service-body p,
.offer-service-body li,
.offer-process-card p,
.offer-spitex-card p,
.offer-spitex-card li,
.offer-when-list p,
.offer-extra-content .section-text,
.about-page-founder-body p,
.about-page-statement-content p,
.why-page-benefit-card p,
.why-page-intro-content .section-text,
.why-page-split-content .section-text,
.why-page-spitex-content .section-text,
.faq-answer,
.faq-answer p {
  font-size: 17px !important;
  line-height: 1.64 !important;
}
.section-text p,
.rich-text p {
  margin-top: 0;
}
.section-text p:last-child,
.rich-text p:last-child {
  margin-bottom: 0;
}

.rich-text strong,
.rich-text b,
.section-text strong,
.section-text b,
.detail-intro-content .rich-text strong,
.detail-intro-content .rich-text b,
.detail-block-content .rich-text strong,
.detail-block-content .rich-text b,
.detail-cta-card .rich-text strong,
.detail-cta-card .rich-text b {
  font-weight: 600 !important;
}
@media (max-width: 767.98px) {
  .section-text,
  .section-text p,
  .section-text li,
  .rich-text,
  .rich-text p,
  .rich-text li,
  .about-content .section-text,
  .projects-content .section-text,
  .available-dynamic-text,
  .promise-item span,
  .benefit-card p,
  .testimonial-card p,
  .contact-strip .section-text,
  .offer-service-body p,
  .offer-service-body li,
  .offer-process-card p,
  .offer-spitex-card p,
  .offer-spitex-card li,
  .offer-when-list p,
  .offer-extra-content .section-text,
  .about-page-founder-body p,
  .about-page-statement-content p,
  .why-page-benefit-card p,
  .why-page-intro-content .section-text,
  .why-page-split-content .section-text,
  .why-page-spitex-content .section-text,
  .faq-answer,
  .faq-answer p {
    font-size: 17px !important;
    line-height: 1.64 !important;
  }
}

.cost-page-intro-section,
.cost-page-comparison-section,
.cost-page-support-section,
.cost-page-contact-strip {
  padding: 120px 0;
}
.cost-page-intro-section,
.cost-page-contact-strip {
  background: #fff;
}
.cost-page-comparison-section {
  background: var(--soft-light);
}
.cost-page-support-section {
  background: var(--soft);
}
.cost-page-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 680px);
  justify-content: space-between;
  gap: 80px;
  align-items: start;
}
.cost-page-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 70px;
}
.cost-page-price-card {
  position: relative;
  min-height: 620px;
  padding: 54px;
  background: #fff;
  border: 1px solid rgba(124, 63, 90, .12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.cost-page-price-card.is-featured {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.cost-page-price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 220px;
  height: 220px;
  background: rgba(124, 63, 90, .08);
  border-radius: 50%;
  transform: translate(45%, -45%);
}
.cost-page-price-card.is-featured::before {
  background: rgba(255, 255, 255, .12);
}
.cost-page-price-top,
.cost-page-price-main,
.cost-page-price-list {
  position: relative;
  z-index: 1;
}
.cost-page-price-eyebrow {
  display: inline-flex;
  margin-bottom: 22px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.cost-page-price-card.is-featured .cost-page-price-eyebrow {
  color: rgba(255, 255, 255, .78);
}
.cost-page-price-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 2.4vw, 44px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -.03em;
  color: var(--dark);
}
.cost-page-price-card.is-featured h3 {
  color: #fff;
}
.cost-page-price-source {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(42, 37, 39, .58);
}
.cost-page-price-card.is-featured .cost-page-price-source {
  color: rgba(255, 255, 255, .72);
}
.cost-page-price-main {
  margin: 52px 0 48px;
}
.cost-page-price-prefix,
.cost-page-price-period {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(42, 37, 39, .68);
}
.cost-page-price-card.is-featured .cost-page-price-prefix,
.cost-page-price-card.is-featured .cost-page-price-period {
  color: rgba(255, 255, 255, .78);
}
.cost-page-price-main strong {
  display: inline-block;
  margin: 8px 8px 2px 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(50px, 4.2vw, 78px);
  line-height: .95;
  font-weight: 600;
  letter-spacing: -.045em;
  color: var(--dark);
}
.cost-page-price-card.is-featured .cost-page-price-main strong {
  color: #fff;
}
.cost-page-price-currency {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}
.cost-page-price-card.is-featured .cost-page-price-currency {
  color: rgba(255, 255, 255, .9);
}
.cost-page-price-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.cost-page-price-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.cost-page-price-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(124, 63, 90, .1);
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
}
.cost-page-price-card.is-featured .cost-page-price-list span {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}
.cost-page-price-list .is-negative span {
  background: #c93d3d;
  color: #fff;
}
.cost-page-price-list p {
  margin: 0;
  font-size: 17px;
  line-height: 1.64;
  color: #000;
}
.cost-page-price-card.is-featured .cost-page-price-list p {
  color: rgba(255, 255, 255, .9);
}
.cost-page-support-head {
  max-width: 850px;
}
.cost-page-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 70px;
}
.cost-page-support-card {
  padding: 48px;
  background: #fff;
  border: 1px solid rgba(124, 63, 90, .1);
}
.cost-page-support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 22px;
}
.cost-page-support-card h3 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(27px, 2vw, 38px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -.03em;
  color: var(--dark);
}
.cost-page-support-card .section-text {
  margin-top: 0;
  max-width: none;
}
.cost-page-support-card ul {
  padding-left: 20px;
  margin: 0;
}
.cost-page-support-card li + li {
  margin-top: 10px;
}
.cost-page-contact-strip {
  border-top: 0;
}
@media (max-width: 1199.98px) {
  .cost-page-intro-grid,
  .cost-page-price-grid,
  .cost-page-support-grid {
    grid-template-columns: 1fr;
  }
  .cost-page-price-card {
    min-height: 0;
  }
}
@media (max-width: 767.98px) {
  .cost-page-intro-section,
  .cost-page-comparison-section,
  .cost-page-support-section,
  .cost-page-contact-strip {
    padding: 76px 0;
  }
  .cost-page-intro-grid {
    gap: 32px;
  }
  .cost-page-price-grid,
  .cost-page-support-grid {
    gap: 18px;
    margin-top: 44px;
  }
  .cost-page-price-card,
  .cost-page-support-card {
    padding: 30px 24px;
  }
  .cost-page-price-main {
    margin: 38px 0 34px;
  }
  .cost-page-price-list {
    gap: 14px;
  }
}
.cost-page-price-list p,
.cost-page-support-card .section-text,
.cost-page-support-card .section-text p,
.cost-page-support-card .section-text li,
.cost-page-intro-section .section-text,
.cost-page-intro-section .section-text p,
.cost-page-contact-strip .section-text,
.cost-page-contact-strip .section-text p {
  font-size: 17px !important;
  line-height: 1.64 !important;
}


.contact-page-intro-section,
.contact-page-locations-section,
.contact-page-form-section,
.contact-page-maps-section {
  padding: 118px 0;
}
.contact-page-intro-section,
.contact-page-form-section {
  background: #fff;
}
.contact-page-locations-section,
.contact-page-maps-section {
  background: var(--soft-light);
}
.contact-page-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(340px, 1fr);
  gap: 96px;
  align-items: center;
}
.contact-page-intro-content .section-title,
.contact-page-form-content .section-title,
.contact-page-maps-head .section-title {
  max-width: 760px;
}
.contact-page-main-card,
.contact-page-location-card,
.contact-page-form-card,
.contact-page-map-frame {
  position: relative;
  background: #fff;
  border: 1px solid rgba(124, 63, 90, .1);
  box-shadow: 0 22px 70px rgba(30, 20, 25, .06);
}
.contact-page-main-card::before,
.contact-page-location-card::before,
.contact-page-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  opacity: .9;
}
.contact-page-main-card {
  min-height: 300px;
  padding: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-page-main-icon {
  position: absolute;
  top: 30px;
  right: 34px;
  font-size: 58px;
  line-height: 1;
  color: rgba(124, 63, 90, .07);
  pointer-events: none;
}
.contact-page-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 19px;
}
.contact-page-card-label {
  display: block;
  margin-bottom: 14px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-page-email {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  font-size: clamp(22px, 1.65vw, 30px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -.025em;
  color: var(--dark);
  overflow-wrap: anywhere;
  transition: color .3s ease, transform .3s ease;
}
.contact-page-email:hover {
  color: var(--accent);
  transform: translateX(5px);
}
.contact-page-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 66px;
}
.contact-page-location-card {
  padding: 42px;
}
.contact-page-location-card h3 {
  margin: 0 0 26px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(25px, 1.8vw, 34px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -.03em;
  color: var(--dark);
}
.contact-page-location-text,
.contact-page-location-text div,
.contact-page-location-text a {
  font-size: 17px;
  line-height: 1.64;
  color: #000;
}
.contact-page-location-text {
  display: grid;
  gap: 14px;
}
.contact-page-location-text strong {
  font-weight: 600;
  color: var(--dark);
}
.contact-page-location-text a {
  width: fit-content;
  color: var(--accent);
  font-weight: 500;
  transition: color .3s ease, transform .3s ease;
}
.contact-page-location-text a:hover {
  color: var(--dark);
  transform: translateX(5px);
}
.contact-page-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  gap: 96px;
  align-items: start;
}
.contact-page-form-card {
  padding: 46px;
}
.contact-page-form-card form,
.contact-page-form-card .wpcf7-form {
  display: grid;
  gap: 18px;
  margin: 0;
}
.contact-page-form-card p {
  margin: 0;
}
.contact-page-form-card br {
  display: none;
}
.contact-page-form-card label {
  display: block;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--dark);
}
.contact-page-form-card .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}
.contact-page-form-card input,
.contact-page-form-card textarea,
.contact-page-form-card select {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  border: 1px solid rgba(30, 20, 25, .14);
  border-radius: 0;
  background: #fff;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  outline: none;
  appearance: none;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.contact-page-form-card input::placeholder,
.contact-page-form-card textarea::placeholder {
  color: rgba(30, 20, 25, .48);
}
.contact-page-form-card textarea {
  min-height: 165px;
  resize: vertical;
}
.contact-page-form-card input:focus,
.contact-page-form-card textarea:focus,
.contact-page-form-card select:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(124, 63, 90, .09);
}
.contact-page-form-card input[type="checkbox"],
.contact-page-form-card input[type="radio"] {
  width: auto;
  min-height: 0;
  margin-right: 9px;
  padding: 0;
  appearance: auto;
}
.contact-page-form-card input[type="submit"],
.contact-page-form-card button,
.contact-page-form-card .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 54px;
  margin-top: 8px;
  padding: 16px 30px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}
.contact-page-form-card input[type="submit"]:hover,
.contact-page-form-card button:hover,
.contact-page-form-card .wpcf7-submit:hover {
  background: var(--dark);
  transform: translateY(-2px);
}
.contact-page-form-card .wpcf7-spinner {
  margin: 0 0 0 14px;
}
.contact-page-form-card .wpcf7-not-valid-tip {
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.4;
  color: #b3261e;
}
.contact-page-form-card .wpcf7 form .wpcf7-response-output,
.contact-page-form-card .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(124, 63, 90, .22);
  font-size: 14px;
  line-height: 1.5;
  color: #000;
}
.contact-page-maps-head {
  max-width: 780px;
  margin-bottom: 54px;
}
.contact-page-map-frame {
  overflow: hidden;
  min-height: 440px;
}
.contact-page-map-frame iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
}
@media (max-width: 1199.98px) {
  .contact-page-intro-grid,
  .contact-page-locations-grid,
  .contact-page-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-page-intro-grid,
  .contact-page-form-grid {
    gap: 52px;
  }
}
@media (max-width: 767.98px) {
  .contact-page-intro-section,
  .contact-page-locations-section,
  .contact-page-form-section,
  .contact-page-maps-section {
    padding: 76px 0;
  }
  .contact-page-intro-grid,
  .contact-page-form-grid {
    gap: 34px;
  }
  .contact-page-main-card,
  .contact-page-location-card,
  .contact-page-form-card {
    padding: 30px 24px;
  }
  .contact-page-main-card {
    min-height: 230px;
  }
  .contact-page-main-icon {
    top: 24px;
    right: 24px;
    font-size: 46px;
  }
  .contact-page-locations-grid {
    gap: 18px;
    margin-top: 42px;
  }
  .contact-page-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    font-size: 18px;
  }
  .contact-page-email {
    font-size: 22px;
  }
  .contact-page-form-card input,
  .contact-page-form-card textarea,
  .contact-page-form-card select {
    min-height: 52px;
    font-size: 16px;
  }
  .contact-page-form-card input[type="submit"],
  .contact-page-form-card button,
  .contact-page-form-card .wpcf7-submit {
    width: 100%;
  }
  .contact-page-map-frame,
  .contact-page-map-frame iframe {
    min-height: 340px;
    height: 340px;
  }
}

.section-text,
.rich-text,
.rich-text p,
.rich-text li,
.detail-intro-content .section-text,
.detail-block-content .section-text,
.detail-cta-card .section-text,
.offer-extra-content .section-text,
.offer-extra-content .rich-text p {
  font-size: 17px !important;
  line-height: 1.64 !important;
}
.detail-hero {
  height: 65vh;
  min-height: 560px;
}
.detail-intro-section,
.detail-blocks-section,
.detail-cta-section {
  padding: 118px 0;
}
.detail-intro-section,
.detail-cta-section {
  background: #fff;
}
.detail-blocks-section {
  background: var(--soft-light);
}
.detail-intro-grid,
.detail-block {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(0, 1fr);
  gap: 96px;
  align-items: center;
}
.detail-block.is-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 680px);
}
.detail-block.is-reverse .detail-block-content {
  order: 2;
}
.detail-block.is-reverse .detail-block-media {
  order: 1;
}
.detail-blocks-list {
  display: grid;
  gap: 110px;
}
.detail-intro-content .section-title,
.detail-block-content .section-title {
  margin-bottom: 34px;
}
.detail-intro-media img,
.detail-block-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  box-shadow: 0 34px 90px rgba(30,20,25,.1);
}
.detail-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 52px;
  padding: 62px 68px;
  background: var(--soft-light);
  border: 1px solid rgba(124,63,90,.1);
}
.detail-cta-card .section-title {
  max-width: 680px;
}
.detail-cta-card .btn-main {
  flex-shrink: 0;
}
@media (max-width: 1199.98px) {
  .detail-intro-grid,
  .detail-block,
  .detail-block.is-reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .detail-block.is-reverse .detail-block-content,
  .detail-block.is-reverse .detail-block-media {
    order: initial;
  }
  .detail-cta-card {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .detail-hero {
    min-height: 520px;
  }
  .detail-intro-section,
  .detail-blocks-section,
  .detail-cta-section {
    padding: 76px 0;
  }
  .detail-intro-grid,
  .detail-block {
    gap: 34px;
  }
  .detail-blocks-list {
    gap: 76px;
  }
  .detail-intro-media img,
  .detail-block-media img {
    height: 360px;
  }
  .detail-cta-card {
    padding: 34px 26px;
    gap: 30px;
  }
}

.detail-simple-section {
  padding: clamp(72px, 8vw, 120px) 0;
}
.detail-simple-content {
  width: min(980px, 100%);
  margin: 0 auto;
}
.detail-simple-content .section-title {
  max-width: 760px;
}
.detail-simple-extra {
  display: grid;
  gap: 28px;
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(65, 45, 64, .14);
}
.detail-simple-item h3 {
  margin: 0 0 10px;
  color: var(--color-dark);
  font-family: var(--font-serif);
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.16;
}
@media (max-width: 767.98px) {
  .detail-simple-section {
    padding: 62px 0;
  }
  .detail-simple-extra {
    gap: 24px;
    margin-top: 28px;
    padding-top: 28px;
  }
  .detail-simple-item h3 {
    font-size: 24px;
  }
}

/* Kontakt final clean */
.contact-page-main-section {
  padding: 118px 0;
  background: #fff;
}
.contact-page-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
  gap: 96px;
  align-items: start;
}
.contact-page-main-content .section-title {
  max-width: 680px;
}
.contact-page-direct-mail {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(124, 63, 90, .16);
}
.contact-page-direct-mail span {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-page-direct-mail a {
  display: inline-flex;
  width: fit-content;
  color: var(--dark);
  font-size: 17px;
  line-height: 1.64;
  font-weight: 500;
  transition: color .3s ease, transform .3s ease;
}
.contact-page-direct-mail a:hover {
  color: var(--accent);
  transform: translateX(5px);
}
.contact-page-form-panel {
  padding: 52px;
  background: var(--soft-light);
  border: 1px solid rgba(124, 63, 90, .1);
}
.contact-page-form-title {
  margin: 0 0 22px;
  max-width: 520px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 2.5vw, 48px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -.04em;
  color: var(--dark);
}
.contact-page-form-panel .section-text {
  margin-bottom: 30px;
}
.contact-page-form-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.contact-page-form-card::before {
  display: none;
}
.contact-page-locations-section {
  padding: 118px 0;
  background: var(--soft-light);
}
.contact-page-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 66px;
}
.contact-page-location-card {
  display: grid;
  grid-template-rows: auto 300px;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(124, 63, 90, .1);
  box-shadow: 0 22px 70px rgba(30, 20, 25, .05);
}
.contact-page-location-card::before {
  display: none;
}
.contact-page-location-info {
  padding: 42px;
}
.contact-page-location-card h3 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 2vw, 40px);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -.04em;
  color: var(--dark);
}
.contact-page-location-text,
.contact-page-location-text div,
.contact-page-location-text a {
  font-size: 17px !important;
  line-height: 1.64 !important;
  color: #000;
}
.contact-page-location-text {
  display: grid;
  gap: 12px;
}
.contact-page-location-text strong {
  font-weight: 600;
  color: var(--dark);
}
.contact-page-location-text a {
  width: fit-content;
  color: var(--accent);
  font-weight: 500;
  transition: color .3s ease, transform .3s ease;
}
.contact-page-location-text a:hover {
  color: var(--dark);
  transform: translateX(5px);
}
.contact-page-location-map {
  width: 100%;
  min-height: 300px;
  background: #eee8e4;
}
.contact-page-location-map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}
.contact-page-maps-section,
.contact-page-intro-section,
.contact-page-form-section {
  display: none;
}
@media (max-width: 1199.98px) {
  .contact-page-main-grid,
  .contact-page-locations-grid {
    grid-template-columns: 1fr;
  }
  .contact-page-main-grid {
    gap: 52px;
  }
}
@media (max-width: 767.98px) {
  .contact-page-main-section,
  .contact-page-locations-section {
    padding: 76px 0;
  }
  .contact-page-main-grid {
    gap: 34px;
  }
  .contact-page-form-panel,
  .contact-page-location-info {
    padding: 30px 24px;
  }
  .contact-page-form-title {
    font-size: 31px;
  }
  .contact-page-locations-grid {
    gap: 18px;
    margin-top: 42px;
  }
  .contact-page-location-card {
    grid-template-rows: auto 260px;
  }
  .contact-page-location-map,
  .contact-page-location-map iframe {
    min-height: 260px;
    height: 260px;
  }
}


/* Saubere Subhero-Logik wie Startseite */
.subhero {
  position: relative;
  overflow: hidden;
}
.subhero-image,
.subhero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767.98px) {
  .subhero-image {
    inset: 0;
    height: 100%;
  }
}

/* Kontakt Maps Filter ohne Box-Farben */
.contact-page-form-panel {
  background: var(--soft-light);
  border-color: rgba(124, 63, 90, .1);
}
.contact-page-locations-section {
  background: var(--soft-light);
}
.contact-page-location-card {
  background: #fff;
  border-color: rgba(124, 63, 90, .1);
  box-shadow: 0 22px 70px rgba(30, 20, 25, .05);
}
.contact-page-location-info {
  background: #fff;
}
.contact-page-location-map {
  background: #eee8e4;
  border-top: 1px solid rgba(124, 63, 90, .1);
}
.contact-page-location-card:nth-child(even),
.contact-page-location-card:nth-child(even) .contact-page-location-info {
  background: #fff;
}
.contact-page-location-card:nth-child(even) .contact-page-location-map {
  background: #eee8e4;
}
.contact-page-location-map iframe {
  filter: grayscale(.18) sepia(.16) saturate(.88) hue-rotate(-8deg) brightness(1.03) contrast(.96);
}


/* Subhero final sauber */
.subhero-image {
  display: block;
}

/* Fixed Navigation sauber */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
}
body:not(.home) {
  padding-top: 88px;
}
body:not(.home) .subhero,
body:not(.home) .contact-page-hero,
body:not(.home) .offer-page-hero,
body:not(.home) .about-page-hero,
body:not(.home) .why-page-hero,
body:not(.home) .cost-page-hero,
body:not(.home) .detail-page-hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body:not(.home) .subhero-image {
  inset: 0 !important;
  height: 100% !important;
}
@media (max-width: 991.98px) {
  body:not(.home) {
    padding-top: 76px;
  }
}
@media (max-width: 767.98px) {
  body:not(.home) {
    padding-top: 66px;
  }
  body:not(.home) .subhero-image {
    inset: 0 !important;
    height: 100% !important;
  }
}


/* Mobile Hero Text ausblenden */
@media (max-width: 767.98px) {
  .hero .hero-text,
  .hero .hero-copy,
  .hero .hero-lead,
  .hero .hero-description,
  .hero .section-text {
    display: none !important;
  }
}

/* Offcanvas aktive Links linksbündig */
.offcanvas .menu,
.offcanvas .menu ul,
.offcanvas .menu li,
.offcanvas-nav,
.offcanvas-nav ul,
.offcanvas-nav li,
.offcanvas-menu,
.offcanvas-menu ul,
.offcanvas-menu li,
.mobile-menu,
.mobile-menu ul,
.mobile-menu li {
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-align: left !important;
}
.offcanvas .menu a,
.offcanvas-nav a,
.offcanvas-menu a,
.mobile-menu a,
.offcanvas .nav-link,
.offcanvas .current-menu-item > a,
.offcanvas .current_page_item > a,
.offcanvas .current-menu-ancestor > a {
  justify-content: flex-start !important;
  text-align: left !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  transform: none !important;
  border-left: 0 !important;
}
.offcanvas .current-menu-item,
.offcanvas .current_page_item,
.offcanvas .current-menu-ancestor {
  margin-left: 0 !important;
  padding-left: 0 !important;
}


/* Mobile Hero Inhalt etwas tiefer */
@media (max-width: 767.98px) {
  .hero .hero-content {
    transform: translateY(34px) !important;
  }
}
@media (max-width: 390px) {
  .hero .hero-content {
    transform: translateY(28px) !important;
  }
}


/* Unterseiten Hero etwas niedriger */
body:not(.home) .subhero,
body:not(.home) .contact-page-hero,
body:not(.home) .offer-page-hero,
body:not(.home) .about-page-hero,
body:not(.home) .why-page-hero,
body:not(.home) .cost-page-hero,
body:not(.home) .detail-page-hero {
  height: 58vh !important;
  min-height: 460px !important;
}
@media (max-width: 991.98px) {
  body:not(.home) .subhero,
  body:not(.home) .contact-page-hero,
  body:not(.home) .offer-page-hero,
  body:not(.home) .about-page-hero,
  body:not(.home) .why-page-hero,
  body:not(.home) .cost-page-hero,
  body:not(.home) .detail-page-hero {
    height: 56vh !important;
    min-height: 420px !important;
  }
}
@media (max-width: 767.98px) {
  body:not(.home) .subhero,
  body:not(.home) .contact-page-hero,
  body:not(.home) .offer-page-hero,
  body:not(.home) .about-page-hero,
  body:not(.home) .why-page-hero,
  body:not(.home) .cost-page-hero,
  body:not(.home) .detail-page-hero {
    height: 54vh !important;
    min-height: 390px !important;
  }
}


/* Logo Zeichen rechts oben wieder aktiviert */
.site-logo,
.footer-logo,
.offcanvas-logo,
.logo-text,
.brand-text {
  position: relative;
}
.site-logo::after,
.offcanvas-logo::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -13px;
  width: 8px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  opacity: .9;
}
.footer-logo::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -13px;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  opacity: .9;
}
@media (max-width: 767.98px) {
  .site-logo::after,
  .offcanvas-logo::after,
  .footer-logo::after {
    top: -4px;
    right: -10px;
    width: 7px;
    height: 7px;
    border-width: 1.3px;
  }
}


/* Logo Punkt sichtbar */
.header-logo,
.site-brand,
.brand-logo,
.brand-mark,
.footer-brand,
.footer-logo,
.offcanvas-brand,
.offcanvas-logo {
  position: relative;
  display: inline-flex;
  width: fit-content;
}
.header-logo::after,
.site-brand::after,
.brand-logo::after,
.brand-mark::after,
.offcanvas-brand::after,
.offcanvas-logo::after {
  content: "";
  position: absolute;
  top: -6px;
  right: -14px;
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
  opacity: .95;
}
.footer-brand::after,
.footer-logo::after {
  content: "";
  position: absolute;
  top: -6px;
  right: -14px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  opacity: .95;
}
@media (max-width: 767.98px) {
  .header-logo::after,
  .site-brand::after,
  .brand-logo::after,
  .brand-mark::after,
  .offcanvas-brand::after,
  .offcanvas-logo::after,
  .footer-brand::after,
  .footer-logo::after {
    top: -5px;
    right: -11px;
    width: 7px;
    height: 7px;
  }
}


/* Logo Punkt final */
.site-header .brand-text,
.site-header .logo-text,
.site-header .site-logo-text,
.site-header .header-logo-text,
.site-header .brand-wordmark,
.site-header .site-brand,
.offcanvas .brand-text,
.offcanvas .logo-text,
.offcanvas .site-logo-text,
.offcanvas .header-logo-text,
.offcanvas .brand-wordmark,
.offcanvas .site-brand {
  position: relative;
  display: inline-flex;
  width: fit-content;
}
.site-header .brand-text::after,
.site-header .logo-text::after,
.site-header .site-logo-text::after,
.site-header .header-logo-text::after,
.site-header .brand-wordmark::after,
.site-header .site-brand::after,
.offcanvas .brand-text::after,
.offcanvas .logo-text::after,
.offcanvas .site-logo-text::after,
.offcanvas .header-logo-text::after,
.offcanvas .brand-wordmark::after,
.offcanvas .site-brand::after {
  content: "";
  position: absolute;
  top: 1px;
  right: -12px;
  width: 7px;
  height: 7px;
  background: currentColor;
  border: 0;
  border-radius: 50%;
  opacity: .95;
}
.footer-brand::after,
.footer-logo::after {
  top: 1px !important;
  right: -12px !important;
  width: 7px !important;
  height: 7px !important;
}
@media (max-width: 767.98px) {
  .site-header .brand-text::after,
  .site-header .logo-text::after,
  .site-header .site-logo-text::after,
  .site-header .header-logo-text::after,
  .site-header .brand-wordmark::after,
  .site-header .site-brand::after,
  .offcanvas .brand-text::after,
  .offcanvas .logo-text::after,
  .offcanvas .site-logo-text::after,
  .offcanvas .header-logo-text::after,
  .offcanvas .brand-wordmark::after,
  .offcanvas .site-brand::after,
  .footer-brand::after,
  .footer-logo::after {
    top: 1px !important;
    right: -10px !important;
    width: 6px !important;
    height: 6px !important;
  }
}


/* Logo Punkt direkt im Header-Markup */
.site-header a,
.site-header .site-brand,
.site-header .brand,
.site-header .logo,
.site-header .header-logo,
.site-header .custom-logo-link {
  position: relative;
}
.privacura-logo-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 5px;
  transform: translateY(-12px);
  background: currentColor;
  border-radius: 50%;
  opacity: .95;
  flex: 0 0 auto;
}
.site-header .privacura-logo-dot {
  color: inherit;
}
.footer-logo::after,
.footer-brand::after {
  top: 1px !important;
}
@media (max-width: 767.98px) {
  .privacura-logo-dot {
    width: 6px;
    height: 6px;
    margin-left: 4px;
    transform: translateY(-10px);
  }
}


/* Logo Punkt sauber mit after */
.privacura-logo-dot {
  display: none !important;
}
.site-header .navbar-brand,
.site-header .custom-logo-link,
.site-header .site-logo,
.site-header .brand-logo,
.site-header .header-logo,
.site-header .site-brand,
.site-header .brand-wordmark,
.site-header .logo-text,
.site-header .brand-text,
.offcanvas .navbar-brand,
.offcanvas .custom-logo-link,
.offcanvas .site-logo,
.offcanvas .brand-logo,
.offcanvas .header-logo,
.offcanvas .site-brand,
.offcanvas .brand-wordmark,
.offcanvas .logo-text,
.offcanvas .brand-text {
  position: relative !important;
  display: inline-flex !important;
  width: fit-content;
}
.site-header .navbar-brand::after,
.site-header .custom-logo-link::after,
.site-header .site-logo::after,
.site-header .brand-logo::after,
.site-header .header-logo::after,
.site-header .site-brand::after,
.site-header .brand-wordmark::after,
.site-header .logo-text::after,
.site-header .brand-text::after,
.offcanvas .navbar-brand::after,
.offcanvas .custom-logo-link::after,
.offcanvas .site-logo::after,
.offcanvas .brand-logo::after,
.offcanvas .header-logo::after,
.offcanvas .site-brand::after,
.offcanvas .brand-wordmark::after,
.offcanvas .logo-text::after,
.offcanvas .brand-text::after {
  content: "" !important;
  position: absolute !important;
  top: 1px !important;
  right: -12px !important;
  width: 7px !important;
  height: 7px !important;
  background: currentColor !important;
  border: 0 !important;
  border-radius: 50% !important;
  opacity: .95 !important;
  display: block !important;
}
.footer-logo::after,
.footer-brand::after {
  content: "" !important;
  position: absolute !important;
  top: 1px !important;
  right: -12px !important;
  width: 7px !important;
  height: 7px !important;
  background: var(--accent) !important;
  border: 0 !important;
  border-radius: 50% !important;
  opacity: .95 !important;
  display: block !important;
}
@media (max-width: 767.98px) {
  .site-header .navbar-brand::after,
  .site-header .custom-logo-link::after,
  .site-header .site-logo::after,
  .site-header .brand-logo::after,
  .site-header .header-logo::after,
  .site-header .site-brand::after,
  .site-header .brand-wordmark::after,
  .site-header .logo-text::after,
  .site-header .brand-text::after,
  .offcanvas .navbar-brand::after,
  .offcanvas .custom-logo-link::after,
  .offcanvas .site-logo::after,
  .offcanvas .brand-logo::after,
  .offcanvas .header-logo::after,
  .offcanvas .site-brand::after,
  .offcanvas .brand-wordmark::after,
  .offcanvas .logo-text::after,
  .offcanvas .brand-text::after,
  .footer-logo::after,
  .footer-brand::after {
    top: 1px !important;
    right: -10px !important;
    width: 6px !important;
    height: 6px !important;
  }
}


/* Logo Punkt nach CURA */
.site-header .logo-cura,
.site-header .brand-cura,
.site-header .word-cura,
.site-header .cura,
.offcanvas .logo-cura,
.offcanvas .brand-cura,
.offcanvas .word-cura,
.offcanvas .cura,
.footer-logo .logo-cura,
.footer-logo .brand-cura,
.footer-logo .word-cura,
.footer-logo .cura,
.footer-brand .logo-cura,
.footer-brand .brand-cura,
.footer-brand .word-cura,
.footer-brand .cura {
  position: relative !important;
  display: inline-block !important;
}
.site-header .navbar-brand::after,
.site-header .custom-logo-link::after,
.site-header .site-logo::after,
.site-header .brand-logo::after,
.site-header .header-logo::after,
.site-header .site-brand::after,
.site-header .brand-wordmark::after,
.site-header .logo-text::after,
.site-header .brand-text::after,
.offcanvas .navbar-brand::after,
.offcanvas .custom-logo-link::after,
.offcanvas .site-logo::after,
.offcanvas .brand-logo::after,
.offcanvas .header-logo::after,
.offcanvas .site-brand::after,
.offcanvas .brand-wordmark::after,
.offcanvas .logo-text::after,
.offcanvas .brand-text::after,
.footer-logo::after,
.footer-brand::after {
  display: none !important;
  content: none !important;
}
.site-header .logo-cura::after,
.site-header .brand-cura::after,
.site-header .word-cura::after,
.site-header .cura::after,
.offcanvas .logo-cura::after,
.offcanvas .brand-cura::after,
.offcanvas .word-cura::after,
.offcanvas .cura::after {
  content: "" !important;
  position: absolute !important;
  top: 1px !important;
  right: -11px !important;
  width: 7px !important;
  height: 7px !important;
  background: currentColor !important;
  border: 0 !important;
  border-radius: 50% !important;
  opacity: .95 !important;
  display: block !important;
}
.footer-logo .logo-cura::after,
.footer-logo .brand-cura::after,
.footer-logo .word-cura::after,
.footer-logo .cura::after,
.footer-brand .logo-cura::after,
.footer-brand .brand-cura::after,
.footer-brand .word-cura::after,
.footer-brand .cura::after {
  content: "" !important;
  position: absolute !important;
  top: 3px !important;
  right: -11px !important;
  width: 7px !important;
  height: 7px !important;
  background: var(--accent) !important;
  border: 0 !important;
  border-radius: 50% !important;
  opacity: .95 !important;
  display: block !important;
}
@media (max-width: 767.98px) {
  .site-header .logo-cura::after,
  .site-header .brand-cura::after,
  .site-header .word-cura::after,
  .site-header .cura::after,
  .offcanvas .logo-cura::after,
  .offcanvas .brand-cura::after,
  .offcanvas .word-cura::after,
  .offcanvas .cura::after,
  .footer-logo .logo-cura::after,
  .footer-logo .brand-cura::after,
  .footer-logo .word-cura::after,
  .footer-logo .cura::after,
  .footer-brand .logo-cura::after,
  .footer-brand .brand-cura::after,
  .footer-brand .word-cura::after,
  .footer-brand .cura::after {
    right: -9px !important;
    width: 6px !important;
    height: 6px !important;
  }
}


/* Logo Punkt final auf CURA */
.brand-text-accent {
  position: relative !important;
  display: inline-block !important;
}
.brand-text-accent::after {
  content: "" !important;
  position: absolute !important;
  top: 1px !important;
  right: -11px !important;
  width: 7px !important;
  height: 7px !important;
  background: currentColor !important;
  border: 0 !important;
  border-radius: 50% !important;
  opacity: .95 !important;
  display: block !important;
}
.footer-brand .brand-text-accent::after {
  top: 3px !important;
  background: currentColor !important;
}
.navbar-brand-custom::after,
.footer-brand::after,
.site-header .navbar-brand::after,
.site-header .custom-logo-link::after,
.site-header .site-logo::after,
.site-header .brand-logo::after,
.site-header .header-logo::after,
.site-header .site-brand::after,
.site-header .brand-wordmark::after,
.site-header .logo-text::after,
.site-header .brand-text::after,
.offcanvas .navbar-brand::after,
.offcanvas .custom-logo-link::after,
.offcanvas .site-logo::after,
.offcanvas .brand-logo::after,
.offcanvas .header-logo::after,
.offcanvas .site-brand::after,
.offcanvas .brand-wordmark::after,
.offcanvas .logo-text::after,
.offcanvas .brand-text::after {
  display: none !important;
  content: none !important;
}
@media (max-width: 767.98px) {
  .brand-text-accent::after {
    top: 1px !important;
    right: -9px !important;
    width: 6px !important;
    height: 6px !important;
  }
  .footer-brand .brand-text-accent::after {
    top: 3px !important;
  }
}

@media (min-width: 1200px) {
  .site-header .navbar-brand-custom {
    font-size: 35px;
    transition: font-size .28s ease, letter-spacing .28s ease, transform .28s ease, color .28s ease;
  }
  .site-header.is-scrolled .navbar-brand-custom {
    font-size: 26px;
  }
}
.hero-btn-secondary {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 8px 32px rgba(255,255,255,.2);
}
.hero-btn-secondary:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 14px 40px rgba(124,63,90,.32);
}
.hero-swiper img,
.subhero-image,
.about-image,
.available-image,
.project-card img,
.contact-strip-image,
.offer-service-image,
.offer-spitex-image,
.why-page-spitex-image,
.about-page-statement-image,
.about-page-founder-image {
  display: block;
}


/* Unterseiten-Hero Bilder sanft abdunkeln ohne Overlay */
body:not(.home) .subhero {
  background: #201b1e;
}
body:not(.home) .subhero-image {
  filter: brightness(.68);
  transform: scale(1.01);
  transform-origin: center center;
}

.hero,
.hero-video {
  background: #1e1a1c;
}

@media (max-width: 1199px) {
  .hero-video {
    inset: 78px 0 0;
    height: calc(100% - 78px);
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: 68px;
  }

  .hero-video {
    inset: 68px 0 0;
    height: calc(100% - 68px);
  }

  .hero-video video {
    object-position: center center;
  }
}

/* Startseite: Header deckend und Hero-Medium exakt unter Navigation */
:root {
  --privacura-header-height: 88px;
  --privacura-adminbar-height: 0px;
}
.admin-bar {
  --privacura-adminbar-height: 32px;
}
.site-header {
  background: #fff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(124,63,90,.08) !important;
  box-shadow: 0 2px 40px rgba(30,20,25,.06) !important;
}
body.home .hero {
  padding-top: var(--privacura-header-height) !important;
}
body.home.admin-bar .hero {
  padding-top: calc(var(--privacura-header-height) + var(--privacura-adminbar-height)) !important;
}
body.home .hero-video,
body.home .hero-swiper {
  inset: var(--privacura-header-height) 0 0 !important;
  height: calc(100% - var(--privacura-header-height)) !important;
}
body.home.admin-bar .hero-video,
body.home.admin-bar .hero-swiper {
  inset: calc(var(--privacura-header-height) + var(--privacura-adminbar-height)) 0 0 !important;
  height: calc(100% - var(--privacura-header-height) - var(--privacura-adminbar-height)) !important;
}
body.home .hero-content {
  height: calc(100vh - var(--privacura-header-height)) !important;
}
body.home.admin-bar .hero-content {
  height: calc(100vh - var(--privacura-header-height) - var(--privacura-adminbar-height)) !important;
}
@media (max-width: 1199.98px) {
  :root {
    --privacura-header-height: 78px;
  }
}
@media (max-width: 782px) {
  .admin-bar {
    --privacura-adminbar-height: 46px;
  }
}
@media (max-width: 767.98px) {
  :root {
    --privacura-header-height: 68px;
  }
  body.home .hero {
    min-height: 100svh !important;
  }
  body.home .hero-content {
    min-height: calc(100svh - var(--privacura-header-height)) !important;
    height: auto !important;
  }
  body.home.admin-bar .hero-content {
    min-height: calc(100svh - var(--privacura-header-height) - var(--privacura-adminbar-height)) !important;
    height: auto !important;
  }
}

.privacura-privacy-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9998;
  width: min(360px, calc(100vw - 36px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(.98);
  transition: opacity .28s ease, transform .28s ease;
}

.privacura-privacy-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.privacura-privacy-panel {
  padding: 12px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(124, 63, 90, .16);
  box-shadow: 0 14px 42px rgba(30, 18, 25, .14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.privacura-privacy-content {
  display: grid;
  gap: 9px;
}

.privacura-privacy-eyebrow {
  margin-bottom: 3px;
  color: var(--accent);
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.privacura-privacy-panel h2 {
  margin: 0 0 4px;
  color: var(--dark);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.05;
}

.privacura-privacy-panel p {
  max-width: 100%;
  margin: 0;
  color: rgba(42, 37, 39, .8);
  font-size: 12.5px;
  line-height: 1.42;
}

.privacura-privacy-more {
  display: inline;
  color: var(--accent);
  font-size: inherit;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.privacura-privacy-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
}

.privacura-privacy-options label {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 5px 7px;
  margin: 0;
  background: #faf7f5;
  border: 1px solid rgba(124, 63, 90, .1);
  color: var(--dark);
  font-size: 11.5px;
  font-weight: 500;
}

.privacura-privacy-options input {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  accent-color: var(--accent);
}

.privacura-privacy-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  margin-top: 9px;
}

.privacura-privacy-btn,
.privacura-consent-frame-btn,
.privacura-privacy-settings {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 0 9px;
  border-radius: 2px;
  border: 1px solid rgba(124, 63, 90, .16);
  font-size: 9.5px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .055em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.privacura-privacy-btn-primary,
.privacura-consent-frame-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.privacura-privacy-btn-light {
  background: #fff;
  color: var(--accent);
}

.privacura-privacy-btn-muted {
  background: transparent;
  color: rgba(42, 37, 39, .72);
}

.privacura-privacy-settings {
  position: fixed;
  right: 18px;
  bottom: 16px;
  z-index: 9997;
  min-height: 32px;
  padding: 0 11px;
  background: rgba(255, 255, 255, .94);
  color: var(--accent);
  box-shadow: 0 10px 34px rgba(30, 18, 25, .1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .24s ease, transform .24s ease;
}

.privacura-privacy-settings.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.privacura-privacy-banner.is-visible + .privacura-privacy-settings {
  opacity: 0;
  pointer-events: none;
}

.privacura-consent-frame {
  position: relative;
  width: 100%;
  min-height: 360px;
  background: #faf7f5;
  overflow: hidden;
}

.privacura-consent-frame-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  color: var(--dark);
  border: 1px solid rgba(124, 63, 90, .13);
}

.privacura-consent-frame-placeholder strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
}

.privacura-consent-frame-placeholder span {
  max-width: 360px;
  color: rgba(42, 37, 39, .74);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .privacura-privacy-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .privacura-privacy-panel {
    padding: 11px;
  }

  .privacura-privacy-content {
    gap: 8px;
  }

  .privacura-privacy-panel h2 {
    font-size: 20px;
  }

  .privacura-privacy-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .privacura-privacy-settings {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }

  .privacura-consent-frame {
    min-height: 320px;
  }
}

@media (max-width: 767.98px) {
  .site-header .navbar-brand-custom,
  .offcanvas-head-custom .navbar-brand-custom {
    max-width: calc(100vw - 96px);
    font-size: 26.67px;
    letter-spacing: .075em;
  }

  .site-header .brand-text-accent::after,
  .offcanvas-head-custom .brand-text-accent::after {
    top: 1px !important;
    right: -12px !important;
    width: 8px !important;
    height: 8px !important;
  }
}

@media (max-width: 420px) {
  .site-header .navbar-brand-custom,
  .offcanvas-head-custom .navbar-brand-custom {
    font-size: 24px;
    letter-spacing: .07em;
  }

  .site-header .brand-text-accent::after,
  .offcanvas-head-custom .brand-text-accent::after {
    right: -11px !important;
    width: 7px !important;
    height: 7px !important;
  }
}


.footer-main {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .72fr) minmax(0, .82fr) minmax(0, .82fr);
  gap: 64px;
  align-items: start;
}
.footer-brand-column,
.footer-nav-column,
.footer-location-column {
  min-width: 0;
}
.footer-contact-mini,
.footer-location-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.55;
}
.footer-contact-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-line i {
  font-size: 15px;
  color: var(--accent);
}
.footer-contact-mini a,
.footer-location-address,
.footer-location-contact a {
  color: rgba(255, 255, 255, .58);
  transition: color .2s ease;
}
.footer-contact-mini a:hover,
.footer-location-address:hover,
.footer-location-contact a:hover {
  color: rgba(255, 255, 255, .9);
}
.footer-location-address {
  display: inline-block;
  font-size: 14px;
  line-height: 1.75;
}
@media (max-width: 1399px) {
  .footer-main {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .72fr) minmax(0, .82fr) minmax(0, .82fr);
    gap: 42px;
  }
}
@media (max-width: 1199.98px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 56px;
    row-gap: 42px;
  }
  .footer-brand-column {
    grid-column: 1 / -1;
  }
}
@media (max-width: 767.98px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 34px;
    padding: 52px 0 44px;
  }
  .footer-brand-column {
    grid-column: 1 / -1;
  }
  .footer-contact-mini {
    margin-top: 18px;
  }
  .footer-location-address {
    font-size: 13px;
    line-height: 1.65;
  }
}
@media (max-width: 420px) {
  .footer-main {
    column-gap: 18px;
    row-gap: 30px;
  }
  .footer-title {
    font-size: 9px;
    letter-spacing: .12em;
  }
  .footer-location-address,
  .footer-list,
  .footer-contact-mini,
  .footer-location-contact {
    font-size: 12px;
  }
  .footer-contact-line {
    gap: 8px;
  }
}

@media (max-width: 767.98px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 34px;
  }
  .footer-main > .footer-brand-column,
  .footer-main > .footer-nav-column {
    grid-column: 1 / -1;
  }
  .footer-main > .footer-location-column,
  .footer-main > div:nth-child(3) {
    grid-column: auto;
  }
  .footer-location-column {
    width: 100%;
  }
  .footer-location-contact {
    gap: 8px;
  }
  .footer-contact-line {
    align-items: flex-start;
  }
  .footer-contact-line i {
    margin-top: 2px;
    flex: 0 0 auto;
  }
  .footer-contact-line span {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
  }
  .footer-location-address,
  .footer-location-contact,
  .footer-contact-line {
    font-size: 11.5px;
  }
}
