:root {
    --primary: #6B6A50;
    --primary-light: #7A795D;
    --primary-dark: #54533F;
    --primary-rgb: 107, 106, 80;
    --primary-dark-rgb: 84, 83, 63;
    --accent-warm: #E7D8C5;
    --accent-warm-soft: #F0E9E0;
    --accent-soft: #c8c3b2;
    --accent-soft-rgb: 200, 195, 178;
    --accent-soft-muted: #dfd9cc;
    --accent-soft-muted-rgb: 223, 217, 204;
    --bg: #F8F6F2;
    --bg-warm: #F5F2EC;
    --surface: #FFFEFB;
    --surface-warm: #FDFBF7;
    --text: #2C2825;
    --text-muted: #5c5346;
    --border: #E8E4DD;
    --border-warm: #E0DAD0;
    --radius: 12px;
    --radius-sm: 10px;
    --radius-lg: 16px;
    --shadow: 0 2px 12px rgba(44, 40, 37, 0.06);
    --shadow-hover: 0 8px 28px rgba(44, 40, 37, 0.08);
    --transition: 0.25s ease;
    --header-h: 72px;
    --nav-rail-width: 56px;
    --location-visual-height: 400px;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow-x: clip;
  }

  body {
    margin: 0;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.68;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  main {
    max-width: 100%;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

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

  img {
    max-width: 100%;
    height: auto;
  }

  .section-title,
  .hero-title,
  .health-card-content h3,
  .service-card h3,
  .page-title {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
  }

  .header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 251, 247, 0.88);
    border-bottom: 1px solid var(--border-warm);
    box-shadow: 0 1px 0 rgba(255,255,255,0.8);
    backdrop-filter: saturate(140%) blur(10px);
    padding-top: env(safe-area-inset-top, 0px);
  }

  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 max(24px, env(safe-area-inset-right, 0px)) 0 max(24px, env(safe-area-inset-left, 0px));
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  .logo {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--primary);
    white-space: nowrap;
    min-width: 0;
    flex-shrink: 1;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 32px;
  }

  .nav-list a {
    font-weight: 500;
    color: var(--text);
    padding: 8px 0;
    transition: color var(--transition);
  }

  .nav-list a:hover {
    color: var(--primary);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 11px;
    border: none;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform 0.18s ease, border-color var(--transition);
  }

  .btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
  }

  .btn-primary {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    border: 1px solid rgba(var(--primary-dark-rgb), 0.45);
    box-shadow: 0 5px 14px rgba(var(--primary-rgb), 0.18);
  }

  .btn-primary:hover {
    background: linear-gradient(145deg, #5f5e47 0%, var(--primary-dark) 100%);
    box-shadow: 0 10px 22px rgba(var(--primary-rgb), 0.25);
    transform: translateY(-1px) scale(1.02);
  }

  .btn-outline {
    background: rgba(255, 255, 255, 0.42);
    color: var(--primary);
    border: 1px solid rgba(var(--primary-rgb), 0.48);
  }

  .btn-outline:hover {
    background: rgba(var(--primary-rgb), 0.12);
    color: var(--primary-dark);
    transform: translateY(-1px) scale(1.02);
  }

  .btn-secondary {
    background: linear-gradient(145deg, #fffefb 0%, #f6f1ea 100%);
    color: var(--primary);
    border: 1px solid var(--border);
  }

  .btn-secondary:hover {
    border-color: rgba(var(--primary-rgb), 0.48);
    color: var(--primary-dark);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 8px 20px rgba(44, 40, 37, 0.09);
  }

  .btn-icon {
    padding: 10px;
    color: var(--primary);
    background: transparent;
  }

  .btn-icon:hover {
    background: var(--bg);
    color: var(--primary-dark);
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .btn-header {
    white-space: nowrap;
  }

  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform var(--transition), opacity var(--transition);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .drawer {
    position: fixed;
    top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--surface-warm);
    padding: 24px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 99;
    overflow-y: auto;
  }

  .drawer.is-open {
    transform: translateX(0);
  }

  .drawer-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    bottom: 0;
    z-index: 98;
    background: rgba(44, 40, 37, 0.42);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .drawer-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .drawer-nav ul {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
  }

  .drawer-nav a {
    display: block;
    padding: 14px 0;
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
  }

  .drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .drawer-actions .btn {
    width: 100%;
  }

  @media (min-width: 769px) {
    .drawer {
      display: none;
    }

    .header-aux-link {
      display: none !important;
    }
  }

  .hero {
    position: relative;
    min-height: 85vh;
    min-height: 85dvh;
    display: flex;
    align-items: center;
    padding: 56px 24px 72px;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--bg-warm) 0%, var(--accent-warm-soft) 35%, var(--accent-soft-muted) 70%, rgba(231, 216, 197, 0.4) 100%);
  }

  .hero-bg::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -8%;
    width: 55%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(231, 216, 197, 0.5) 0%, transparent 65%);
    border-radius: 50%;
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 40%;
    height: 50%;
    background: radial-gradient(ellipse, rgba(var(--accent-soft-rgb), 0.35) 0%, transparent 70%);
    border-radius: 50%;
  }

  .hero-inner {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    text-align: left;
  }

  .hero-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: stretch;
  }

  .hero-copy {
    padding: 14px 4px 8px;
  }

  .hero-kicker {
    margin: 0 0 8px 0;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-dark);
    font-weight: 700;
  }

  .hero-visual {
    display: flex;
    align-items: stretch;
  }

  .hero-visual-card {
    width: 100%;
    background:
      radial-gradient(circle at 22% 18%, rgba(var(--primary-rgb), 0.22), transparent 38%),
      radial-gradient(circle at 80% 16%, rgba(var(--accent-soft-rgb), 0.44), transparent 40%),
      linear-gradient(140deg, #f2efe7 0%, #f8f2e8 100%);
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(44, 40, 37, 0.09);
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }

  .hero-visual-card h3 {
    margin: 0;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.45rem;
    color: var(--text);
  }

  .hero-visual-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.55;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text);
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
  }

  .hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin: 0 0 36px 0;
    max-width: 620px;
    line-height: 1.7;
  }

  .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
  }

  .hero-tertiary-link {
    margin: 14px 0 0;
  }

  .hero-tertiary-link a {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
  }

  .hero-trust {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .hero-trust span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(var(--primary-rgb), 0.22);
    border-radius: 999px;
    padding: 7px 12px;
  }

  .hero-graphic {
    --hero-scroll-progress: 0;
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: calc(1 - var(--hero-scroll-progress, 0));
    transform: translateY(calc(var(--hero-scroll-progress, 0) * -32%));
    transition: opacity 0.08s ease-out, transform 0.08s ease-out;
    will-change: transform;
  }

  .hero-svg-full {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }

  .hero-wave-line { transform-origin: center bottom; animation: hero-wave 8s ease-in-out infinite; }
  .hero-transition-wave { transform-origin: center bottom; animation: hero-transition-wave 6s ease-in-out infinite; }
  .hero-drop { transform-origin: center center; animation: hero-float 5.5s ease-in-out infinite; }
  .hero-drop-1 { animation-delay: 0s; }
  .hero-drop-2 { animation-delay: 1.2s; }
  .hero-drop-3 { animation-delay: 2.4s; }
  .hero-drop-4 { animation-delay: 0.8s; }
  .hero-drop-5 { animation-delay: 1.8s; }
  .hero-drop-6 { animation-delay: 0.4s; }
  .hero-drop-7 { animation-delay: 2s; }
  .hero-drop-8 { animation-delay: 1s; animation-duration: 5s; }
  .hero-drop-9 { animation-delay: 2.2s; animation-duration: 7s; }
  .hero-drop-10 { animation-delay: 0.6s; animation-duration: 5.5s; }

  @keyframes hero-wave {
    0%, 100% { transform: scaleY(1) translateY(0); opacity: 1; }
    50% { transform: scaleY(1.06) translateY(-3px); opacity: 0.92; }
  }

  @keyframes hero-transition-wave {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(1.04); opacity: 0.95; }
  }

  @keyframes hero-float {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.88; }
    25% { transform: translateY(-18px) translateX(6px) scale(1.06); opacity: 1; }
    50% { transform: translateY(-8px) translateX(-4px) scale(1.02); opacity: 0.95; }
    75% { transform: translateY(-22px) translateX(-6px) scale(1.05); opacity: 1; }
  }

  .hero-inner .hero-kicker,
  .hero-inner .hero-title,
  .hero-inner .hero-sub,
  .hero-inner .hero-cta,
  .hero-inner .hero-tertiary-link,
  .hero-inner .hero-trust {
    opacity: 0;
    transform: translateY(20px);
    animation: hero-reveal 0.8s ease forwards;
  }

  .hero-inner .hero-title { animation-delay: 0.08s; }
  .hero-inner .hero-sub { animation-delay: 0.12s; }
  .hero-inner .hero-cta { animation-delay: 0.24s; }
  .hero-inner .hero-tertiary-link { animation-delay: 0.32s; }
  .hero-inner .hero-trust { animation-delay: 0.42s; }

  /* Startseite Hero im Referenz-Look (text links, Foto rechts) */
  .hero.hero-reference {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: max(78vh, 760px);
    min-height: max(78dvh, 760px);
    margin: 14px 0 0;
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
    background-color: #f5f1ea;
    box-shadow: 0 16px 36px rgba(44, 40, 37, 0.08);
    border: 0;
  }

  .hero.hero-reference .hero-bg {
    position: absolute;
    inset: 0;
    background: #f5f1ea;
  }

  .hero.hero-reference .hero-bg::before,
  .hero.hero-reference .hero-bg::after,
  .hero.hero-reference .hero-graphic {
    display: none;
  }

  .hero.hero-reference .hero-inner {
    position: relative;
    z-index: 10;
    min-height: max(78vh, 760px);
    min-height: max(78dvh, 760px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    max-width: 620px;
    padding-left: clamp(24px, 7vw, 120px);
    padding-right: 24px;
    padding-top: clamp(48px, 7vw, 92px);
    padding-bottom: clamp(86px, 9vw, 124px);
  }

  .hero.hero-reference .hero-kicker {
    margin-bottom: 16px;
    font-size: 0.84rem;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--primary-dark);
    font-weight: 700;
  }

  .hero.hero-reference .hero-title {
    font-size: clamp(2.4rem, 5.4vw, 4.15rem);
    line-height: 1.04;
    margin: 0 0 22px;
    max-width: 560px;
    letter-spacing: -0.02em;
    color: var(--text);
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .hero.hero-reference .hero-sub {
    max-width: 590px;
    margin-bottom: 30px;
    font-size: 1.04rem;
    line-height: 1.62;
    color: var(--text-muted);
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .hero.hero-reference .hero-cta {
    gap: 12px;
    margin-bottom: 18px;
  }

  .hero.hero-reference .hero-cta .btn {
    min-height: 48px;
  }

  .hero.hero-reference .hero-cta .btn-outline {
    background: rgba(255,255,255,0.72);
    border-color: rgba(var(--primary-rgb), 0.36);
    color: var(--primary-dark);
  }

  .hero.hero-reference .hero-trust {
    justify-content: flex-start;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
    row-gap: 10px;
    margin-top: 0;
    max-width: 640px;
  }

  .hero.hero-reference .hero-trust span {
    padding: 8px 14px;
    font-size: 0.86rem;
    color: #5b544a;
    border: 1px solid #d8d4ca;
    background: rgba(248, 246, 242, 0.86);
    border-radius: 999px;
    box-shadow: 0 1px 0 rgba(255,255,255,0.86);
    line-height: 1.24;
    white-space: normal;
  }

  .hero.hero-reference .hero-image-layer {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 27%;
    bottom: 0;
    width: 73%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
  }

  .hero.hero-reference .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% center;
    transform: scale(1.01);
    filter: contrast(1.06) saturate(1.01) brightness(1.01);
    z-index: 1;
  }

  .hero.hero-reference .hero-fade-main,
  .hero.hero-reference .hero-fade-haze,
  .hero.hero-reference .hero-fade-tone {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -36.98630137%;
    width: 136.98630137%;
    pointer-events: none;
  }

  .hero.hero-reference .hero-fade-main {
    background: linear-gradient(
      90deg,
      rgba(245, 241, 234, 1) 0%,
      rgba(245, 241, 234, 1) 34%,
      rgba(245, 241, 234, 0.96) 42%,
      rgba(245, 241, 234, 0.78) 48%,
      rgba(245, 241, 234, 0.45) 56%,
      rgba(245, 241, 234, 0.16) 64%,
      rgba(245, 241, 234, 0.04) 70%,
      rgba(245, 241, 234, 0) 76%
    );
    z-index: 2;
  }

  .hero.hero-reference .hero-fade-haze {
    background: radial-gradient(circle at 49% 48%, rgba(245, 241, 234, 0.09), rgba(245, 241, 234, 0) 40%);
    z-index: 3;
  }

  .hero.hero-reference .hero-fade-tone {
    background: rgba(var(--accent-soft-muted-rgb), 0.05);
    z-index: 4;
  }

  .hero.hero-reference .hero-bottom-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 28%;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      rgba(245, 241, 234, 0) 0%,
      rgba(245, 241, 234, 0.25) 35%,
      rgba(245, 241, 234, 0.65) 65%,
      rgba(245, 241, 234, 1) 100%
    );
  }

  .hero.hero-reference .hero-inner .hero-kicker,
  .hero.hero-reference .hero-inner .hero-title,
  .hero.hero-reference .hero-inner .hero-sub,
  .hero.hero-reference .hero-inner .hero-cta,
  .hero.hero-reference .hero-inner .hero-trust {
    opacity: 0;
    transform: translateY(20px);
    animation: hero-reveal 0.72s ease forwards;
  }

  .hero.hero-reference .hero-inner .hero-title { animation-delay: 0.08s; }
  .hero.hero-reference .hero-inner .hero-sub { animation-delay: 0.14s; }
  .hero.hero-reference .hero-inner .hero-cta { animation-delay: 0.24s; }
  .hero.hero-reference .hero-inner .hero-trust { animation-delay: 0.34s; }

  .hero.hero-reference .hero-image-layer {
    animation: hero-image-fade 0.72s ease forwards;
    opacity: 0;
  }

  @keyframes hero-image-fade {
    from { opacity: 0; transform: scale(0.985); }
    to { opacity: 1; transform: scale(1); }
  }

  @keyframes hero-reveal {
    to { opacity: 1; transform: translateY(0); }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-wave-line, .hero-drop { animation: none; }
    .hero-inner .hero-kicker, .hero-inner .hero-title, .hero-inner .hero-sub, .hero-inner .hero-cta, .hero-inner .hero-tertiary-link, .hero-inner .hero-trust {
      animation: none; opacity: 1; transform: none;
    }
    .hero.hero-reference .hero-inner .hero-kicker,
    .hero.hero-reference .hero-inner .hero-title,
    .hero.hero-reference .hero-inner .hero-sub,
    .hero.hero-reference .hero-inner .hero-cta,
    .hero.hero-reference .hero-inner .hero-trust,
    .hero.hero-reference .hero-image-layer {
      animation: none;
      opacity: 1;
      transform: none;
    }
  }

  @media (min-width: 769px) {
    .hero.page-hero.hero-reference::before {
      display: none;
    }

    .hero.page-hero.hero-reference {
      padding: 0;
      display: block;
      flex-direction: unset;
      justify-content: unset;
      align-items: unset;
    }

    .hero.page-hero.hero-reference .hero-inner {
      position: relative;
      z-index: 10;
      min-height: max(78vh, 760px);
      min-height: max(78dvh, 760px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      width: 100%;
      max-width: 620px;
      margin: 0;
      text-align: left;
      background: transparent;
      border: 0;
      border-radius: 0;
      box-shadow: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      padding-left: clamp(24px, 7vw, 120px);
      padding-right: 24px;
      padding-top: clamp(48px, 7vw, 92px);
      padding-bottom: clamp(86px, 9vw, 124px);
    }

    .hero.page-hero.hero-reference .hero-cta,
    .hero.page-hero.hero-reference .hero-trust {
      justify-content: flex-start;
    }

    .hero.page-hero.hero-reference .hero-sub {
      margin-left: 0;
      margin-right: 0;
      max-width: 590px;
    }
  }

  .is-temporarily-hidden {
    display: none !important;
  }

  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1), transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .reveal.is-visible { transform: none; }
  }

  /* Quick-Info: heller Bereich, Scrollübergang (Grün → Weiß) startet erst unter „Parken“ */
  .quick-info {
    position: relative;
    background: #FDFBF7;
    padding: 48px 24px 0;
    padding-bottom: 160px;
    border-bottom: none;
  }

  .quick-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      #E6DFD3 0%,
      #E8E2D7 20%,
      #ECE7DC 40%,
      #EFEAE0 60%,
      #ECE7DD 80%,
      var(--bg-warm) 100%
    );
  }

  .quick-info-seamless {
    margin-top: 0;
    padding-top: 48px;
  }

  .quick-info-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px 20px;
    background: linear-gradient(140deg, rgba(255,255,255,0.62), rgba(245, 242, 236, 0.65));
    border: 1px solid var(--border-warm);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 20px;
  }

  .quick-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 4px 2px;
  }

  .quick-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-warm-soft);
    color: var(--primary);
    border-radius: var(--radius-sm);
  }

  .quick-info-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .quick-info-item strong {
    font-size: 0.78rem;
    color: #6d6458;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .quick-info-item span:last-child {
    font-weight: 500;
    color: var(--text);
    line-height: 1.42;
  }

  .quick-info-item span:last-child a {
    color: var(--primary);
    font-weight: 500;
  }

  .quick-info-item span:last-child a:hover {
    text-decoration: underline;
  }

  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px;
  }

  .section-narrow {
    max-width: 720px;
  }

  .section-title, .page-title {
    font-size: clamp(1.75rem, 3vw, 2.15rem);
    font-weight: 600;
    color: var(--text);
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
  }

  .section-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0 0 40px 0;
    line-height: 1.7;
  }

  .section-inner-narrow {
    max-width: 980px;
  }

  .announcement-section .section-inner.section-inner-narrow {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .announcement-section .notice-block .notice-cta {
    margin-top: 16px;
  }

  .notice-block {
    background:
      radial-gradient(circle at 9% 14%, rgba(var(--primary-rgb), 0.14), transparent 28%),
      linear-gradient(145deg, #f8f3eb 0%, #fffdf9 100%);
    border: 1px solid rgba(var(--primary-rgb), 0.16);
    border-radius: 18px;
    padding: 30px 32px;
    margin: 0 auto 48px;
    max-width: 980px;
    box-shadow: 0 8px 22px rgba(44, 40, 37, 0.07);
  }

  .notice-block h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.25rem;
    margin: 0 0 10px 0;
    color: var(--primary);
  }

  .notice-block p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
  }

  .notice-kicker {
    display: inline-flex;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
  }

  .notice-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 26px;
    align-items: start;
  }

  .notice-meta {
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    border-radius: 14px;
    padding: 14px 16px;
  }

  .notice-meta p {
    margin: 0 0 12px 0;
    font-size: 0.93rem;
  }

  .notice-meta p:last-child {
    margin-bottom: 0;
  }

  .notice-checklist,
  .featured-checklist,
  .service-checklist {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--text-muted);
    line-height: 1.55;
  }

  .notice-checklist li,
  .featured-checklist li,
  .service-checklist li {
    margin-bottom: 10px;
  }

  .notice-checklist li:last-child,
  .featured-checklist li:last-child,
  .service-checklist li:last-child {
    margin-bottom: 0;
  }

  .notice-checklist strong,
  .service-checklist strong {
    color: var(--text);
    font-weight: 600;
  }

  .featured-checklist {
    font-size: 0.9375rem;
  }

  .featured-note {
    margin: 0 0 14px 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
  }

  .featured-cta-row {
    margin: 0;
  }

  .featured-cta-sep {
    margin: 0 8px;
    color: var(--text-muted);
  }

  .service-card-checks {
    grid-column: 1 / -1;
    background:
      radial-gradient(circle at 16% 12%, rgba(var(--primary-rgb), 0.18), transparent 34%),
      linear-gradient(145deg, #f2efe7 0%, #fffdf9 100%);
    border-color: rgba(var(--primary-rgb), 0.2);
  }

  .service-card-checks .service-label {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-dark);
  }

  .service-card-checks .service-checklist {
    margin: 16px 0 20px;
    max-width: 52rem;
  }

  .service-card-checks h3 {
    margin-top: 8px;
  }

  .presence-strip {
    background: linear-gradient(180deg, #f8f6f2 0%, #f2eee6 100%);
    border-top: 1px solid var(--border-warm);
    border-bottom: 1px solid var(--border-warm);
  }

  .presence-strip .section-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 16px;
    padding-top: 8px;
    padding-bottom: 44px;
  }

  .presence-card {
    background: var(--surface-warm);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 20px 20px 18px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color var(--transition);
  }

  .presence-card-featured {
    background:
      radial-gradient(circle at 14% 12%, rgba(var(--primary-rgb), 0.12), transparent 34%),
      var(--surface-warm);
  }

  .presence-card-offset {
    transform: translateY(14px);
  }

  .presence-card:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(var(--primary-rgb), 0.3);
  }

  .presence-card strong {
    display: block;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 6px;
  }

  .presence-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.55;
  }

  .services { background: var(--bg-warm); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }

  .service-card-featured {
    grid-column: span 2;
    background: linear-gradient(145deg, #f5f1ea 0%, #fffdf9 100%);
  }

  .service-card {
    background: var(--surface-warm);
    padding: 28px 26px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-warm);
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition), background var(--transition);
  }

  .service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px) scale(1.02);
    border-color: var(--accent-warm);
    background: var(--surface);
  }

  .service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--accent-warm-soft);
    color: var(--primary);
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
  }

  .service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--text);
  }

  .service-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
  }

  .thermen-region {
    background: var(--surface-warm);
    padding: 0 0 24px;
    border-top: 1px solid var(--border-warm);
  }

  .thermen-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    align-items: start;
  }

  .thermen-image {
    height: var(--location-visual-height);
    min-height: var(--location-visual-height);
    max-height: var(--location-visual-height);
    align-self: start;
  }
  .thermen-image .image-placeholder {
    height: 100%;
    min-height: 320px;
    background:
      radial-gradient(circle at 20% 30%, rgba(var(--primary-rgb), 0.22), transparent 36%),
      radial-gradient(circle at 80% 20%, rgba(var(--accent-soft-rgb), 0.55), transparent 38%),
      linear-gradient(145deg, #eee9df 0%, #e4ded2 38%, #f5efe6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9375rem;
  }

  .thermen-content {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .thermen-content .section-title { margin-bottom: 16px; }
  .thermen-content p {
    color: var(--text-muted);
    margin: 0 0 24px 0;
    line-height: 1.65;
  }

  .trust {
    background: linear-gradient(180deg, var(--accent-soft-muted) 0%, var(--accent-warm-soft) 100%);
    padding: 64px 24px;
    border-top: 1px solid var(--border-warm);
  }

  .trust-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .trust-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-warm);
  }

  .trust-image .image-placeholder.team {
    aspect-ratio: 4/3;
    min-height: 280px;
    background: var(--surface-warm);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9375rem;
  }

  .trust-image img.site-photo {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 280px;
    object-fit: cover;
    object-position: center 30%;
  }

  .trust-content .section-lead { margin-bottom: 32px; }
  .values-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .values-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .value-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    color: var(--primary);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-warm);
  }

  .values-list strong { display: block; font-size: 1rem; margin-bottom: 2px; color: var(--text); }
  .values-list span { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.5; }

  .health-focus { background: var(--bg); }
  .health-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
  }

  .health-grid .health-card:first-child,
  .health-grid .health-card:nth-child(4) {
    grid-column: span 2;
  }

  .health-card {
    background: var(--surface-warm);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-warm);
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  }

  .health-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px) scale(1.02);
    border-color: var(--accent-warm);
  }

  .health-card-tone-1 {
    background: linear-gradient(145deg, #fffdf9 0%, #f3eee5 100%);
  }

  .health-card-tone-2 {
    background: linear-gradient(145deg, #fffdf8 0%, #f8f4ec 100%);
  }

  .health-card-tone-3 {
    background: linear-gradient(145deg, #fdfcf8 0%, #ebe6da 100%);
  }

  .health-card-image .image-placeholder.small {
    aspect-ratio: 16/10;
    background: linear-gradient(150deg, var(--accent-warm) 0%, var(--accent-soft-muted) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.875rem;
  }

  .health-card-content { padding: 20px 24px; }
  .health-card-content h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--text);
  }

  .health-card-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
  }

  .health-card-content .btn {
    margin-top: 14px;
  }

  .health-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
  }

  .health-card-actions .btn {
    margin-top: 0;
  }

  .health-card-shop {
    font-size: 0.9rem;
    padding: 10px 16px;
    min-height: 44px;
  }

  .slider {
    position: relative;
    container-type: inline-size;
    container-name: slider;
  }

  .slider-header {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 16px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border-warm);
    background: var(--surface);
    color: var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition);
  }

  .slider-btn:hover {
    border-color: var(--primary);
    background: var(--surface-warm);
  }

  .slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 4px;
    mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
  }

  .slider-track::-webkit-scrollbar {
    height: 8px;
  }

  .slider-track::-webkit-scrollbar-thumb {
    background: #d6d2ca;
    border-radius: 999px;
  }

  .offer-card,
  .news-card {
    scroll-snap-align: start;
    background: var(--surface-warm);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 24px;
    position: relative;
    overflow: hidden;
  }

  .offer-card::before,
  .news-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 72px;
    background:
      radial-gradient(circle at 20% 40%, rgba(var(--primary-rgb), 0.16), transparent 40%),
      radial-gradient(circle at 80% 10%, rgba(var(--accent-soft-rgb), 0.32), transparent 42%),
      linear-gradient(145deg, rgba(240,233,224,0.8), rgba(248,246,242,0.2));
    pointer-events: none;
  }

  .offer-card h3,
  .news-card h3 {
    font-family: 'Fraunces', Georgia, serif;
    margin: 0 0 8px 0;
    font-size: 1.15rem;
    color: var(--text);
  }

  .offer-card p,
  .news-card p {
    margin: 0 0 14px 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
  }

  .offer-card a,
  .news-card a {
    color: var(--primary);
    font-weight: 600;
  }

  .offer-card a:hover,
  .news-card a:hover {
    text-decoration: underline;
  }

  .featured-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 18px;
  }

  .featured-main,
  .featured-side {
    background: var(--surface-warm);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 24px;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  }

  .featured-main {
    background:
      radial-gradient(circle at 16% 12%, rgba(var(--primary-rgb), 0.18), transparent 34%),
      linear-gradient(145deg, #f2efe7 0%, #fffdf9 100%);
  }

  .featured-main h3,
  .featured-side h3 {
    margin: 0 0 8px 0;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.25rem;
    color: var(--text);
  }

  .featured-side h3 {
    font-size: 1.1rem;
  }

  .featured-main p,
  .featured-side p {
    margin: 0 0 12px 0;
    color: var(--text-muted);
    line-height: 1.58;
  }

  .featured-main a,
  .featured-side a {
    color: var(--primary);
    font-weight: 600;
  }

  .featured-main a:hover,
  .featured-side a:hover {
    text-decoration: underline;
  }

  .featured-main:hover,
  .featured-side:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(var(--primary-rgb), 0.25);
  }



  .topic-card {
    scroll-snap-align: start;
    background: var(--surface-warm);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    min-width: 320px;
  }

  .topic-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    background: #ece7dc;
  }

  .topic-card-content {
    padding: 18px 20px 20px;
  }

  .topic-card-content h3 {
    font-family: 'Fraunces', Georgia, serif;
    margin: 0 0 8px 0;
    font-size: 1.12rem;
    color: var(--text);
  }

  .topic-card-content p {
    margin: 0 0 10px 0;
    color: var(--text-muted);
    line-height: 1.58;
    font-size: 0.93rem;
  }

  .topic-card-content a {
    color: var(--primary);
    font-weight: 600;
  }

  .topic-card-content a:hover {
    text-decoration: underline;
  }

  .faq {
    background: var(--surface-warm);
    border-top: 1px solid var(--border-warm);
  }

  .accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
  }

  .accordion-item {
    border-bottom: 1px solid var(--border-warm);
    transition: background var(--transition);
  }

  .accordion-item:last-child { border-bottom: none; }
  .accordion-item summary {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .accordion-item summary::-webkit-details-marker { display: none; }
  .accordion-item summary::after {
    content: '';
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
    transition: transform var(--transition);
  }

  .accordion-item[open] summary::after { transform: rotate(180deg); }
  .accordion-item summary:hover { background: var(--accent-warm-soft); }
  .accordion-item p {
    padding: 0 24px 20px 24px;
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  .contact { background: var(--bg); padding: 0; }
  .contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 0;
    align-items: stretch;
  }

  .contact-visual-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    min-width: 0;
  }

  .contact-visual-card {
    width: 100%;
    height: var(--location-visual-height);
    min-height: var(--location-visual-height);
    max-height: var(--location-visual-height);
    margin: 0;
    border-radius: 18px;
    border: 1px solid var(--border-warm);
    box-shadow: var(--shadow);
    overflow: hidden;
    background: var(--bg-warm);
  }

  .contact-visual-stack .contact-photo.contact-visual-card {
    line-height: 0;
    border-bottom: 0;
    box-shadow: 0 10px 28px rgba(25, 22, 18, 0.06);
  }

  .contact-visual-stack .contact-map.contact-visual-card {
    border-top: 0;
    box-shadow: 0 14px 36px rgba(25, 22, 18, 0.07);
  }

  .contact-photo .site-photo {
    display: block;
    width: 100%;
    height: 100%;
    min-height: var(--location-visual-height);
    max-height: var(--location-visual-height);
    object-fit: cover;
    object-position: center;
    vertical-align: top;
  }

  .contact-visual-stack .contact-map.contact-visual-card {
    position: relative;
    align-self: start;
  }

  .contact-visual-stack .contact-map.contact-visual-card .map-embed {
    width: 100%;
    height: 100%;
    min-height: var(--location-visual-height);
    max-height: var(--location-visual-height);
    border: 0;
    outline: none;
    display: block;
    vertical-align: top;
  }

  .contact-map .map-placeholder {
    height: 100%;
    min-height: 400px;
    background:
      linear-gradient(135deg, rgba(255,255,255,0.45), rgba(255,255,255,0.1)),
      repeating-linear-gradient(0deg, rgba(var(--primary-rgb), 0.08) 0 2px, transparent 2px 22px),
      repeating-linear-gradient(90deg, rgba(44,40,37,0.05) 0 1px, transparent 1px 24px),
      linear-gradient(145deg, #ddd6c8 0%, #f3eee7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9375rem;
  }

  .contact-map {
    position: relative;
    height: var(--location-visual-height);
    min-height: var(--location-visual-height);
    max-height: var(--location-visual-height);
    align-self: start;
  }

  .map-embed {
    width: 100%;
    height: var(--location-visual-height);
    min-height: var(--location-visual-height);
    max-height: var(--location-visual-height);
    border: 0;
    display: block;
  }

  .map-click-layer {
    position: absolute;
    inset: 0;
    border: 0;
    width: 100%;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary-dark);
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(1px);
    transition: background var(--transition), color var(--transition);
    z-index: 2;
  }

  .map-click-layer:hover {
    background: rgba(var(--primary-rgb), 0.16);
    color: var(--primary);
  }

  .map-actions {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    z-index: 3;
  }

  .map-actions--hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .map-actions:not(.map-actions--hidden) {
    opacity: 1;
    transform: translateY(0);
    transition: opacity var(--transition), transform var(--transition);
  }

  .map-actions .btn {
    min-height: 42px;
    padding: 10px 16px;
  }

  .map-smart-btn {
    flex: 1 1 180px;
  }

  .contact-info {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    min-height: 100%;
    height: 100%;
    background: var(--surface-warm);
    border-left: 1px solid var(--border-warm);
  }

  .contact-info .section-title { margin-bottom: 24px; }
  .contact-info address {
    font-style: normal;
    margin-bottom: 24px;
    line-height: 1.7;
    color: var(--text);
  }

  .contact-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
  }

  .contact-meta a { color: var(--primary); font-weight: 500; }
  .contact-meta a:hover { text-decoration: underline; }
  .contact-cta { display: flex; flex-wrap: wrap; gap: 12px; }

  /* ---------- Below-hero editorial system overrides ---------- */
  :root {
    --card-border-soft: 1px solid rgba(54, 50, 44, 0.06);
    --card-shadow-soft: 0 14px 40px rgba(25, 22, 18, 0.05);
    --card-shadow-strong: 0 18px 48px rgba(25, 22, 18, 0.07);
  }

  .section-tone-a { background: #f6f2eb; }
  .section-tone-b { background: #fbf8f3; }
.section-tone-c { background: #ebe6da; }

  .section-eyebrow {
    margin: 0 0 12px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-dark);
  }

  .section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 96px;
    padding-bottom: 104px;
    padding-left: clamp(40px, 6vw, 72px);
    padding-right: clamp(40px, 6vw, 72px);
  }

  .section-title, .page-title {
    font-size: clamp(2.3rem, 4.4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.018em;
    margin: 0 0 14px;
  }

  .section-lead {
    font-size: clamp(1.08rem, 1.7vw, 1.28rem);
    line-height: 1.6;
    max-width: 720px;
    color: rgba(42, 39, 36, 0.74);
    margin: 0 0 44px;
  }

  .quick-info.utility-ribbon {
    margin-top: -64px;
    padding: 48px 20px 72px;
    background: #f7f3ee;
    position: relative;
    z-index: 12;
  }

  .quick-info.utility-ribbon::before {
    display: block;
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 80px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(245,241,234,1), rgba(247,243,238,1));
  }

  .quick-info.utility-ribbon::after {
    display: none;
  }

  .quick-info.utility-ribbon .quick-info-inner {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px 14px;
    background: rgba(255,255,255,0.82);
    border: var(--card-border-soft);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(20,18,15,0.08);
    padding: 28px 28px 30px;
    backdrop-filter: blur(8px);
  }

  .quick-info.utility-ribbon .quick-info-item {
    gap: 14px;
    min-height: 110px;
    padding: 0;
  }

  .quick-info.utility-ribbon .quick-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f3ede4;
  }

  .quick-info.utility-ribbon .quick-info-item strong {
    font-size: 0.74rem;
    color: var(--primary-dark);
    font-weight: 600;
    letter-spacing: 0.09em;
  }

  .quick-info.utility-ribbon .quick-info-item span:last-child {
    font-size: 1.02rem;
    line-height: 1.5;
  }

  .announcement-section {
    position: relative;
    background: #ebe6da;
  }

  .announcement-section::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 72px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,0.14), rgba(255,255,255,0));
  }

  .announcement-section .section-inner {
    padding-top: 96px;
    padding-bottom: 104px;
  }

  .announcement-section .notice-block {
    border-radius: 28px;
    padding: 44px;
    margin-bottom: 0;
    max-width: 1180px;
    border: var(--card-border-soft);
    box-shadow: var(--card-shadow-soft);
  }

  .announcement-section .notice-layout {
    grid-template-columns: 62fr 38fr;
    align-items: center;
    gap: 28px;
  }

  .announcement-section .notice-meta {
    background: rgba(255,255,255,0.92);
    border: var(--card-border-soft);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--card-shadow-soft);
  }

  .presence-strip.benefits-section {
    background: #fbf8f3;
    margin-top: -24px;
    border: 0;
    position: relative;
  }

  .presence-strip.benefits-section::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 62px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,0.14), rgba(255,255,255,0));
  }

  .presence-strip.benefits-section .section-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding-top: 88px;
    padding-bottom: 96px;
  }

  .presence-strip.benefits-section .presence-card {
    border-radius: 24px;
    padding: 32px;
    background: rgba(255,255,255,0.74);
    border: var(--card-border-soft);
    box-shadow: var(--card-shadow-soft);
    position: relative;
  }

  .presence-strip.benefits-section .presence-card::before {
    content: '';
    width: 38px;
    height: 2px;
    border-radius: 999px;
    background: rgba(var(--primary-dark-rgb), 0.38);
    display: block;
    margin-bottom: 18px;
  }

  .presence-strip.benefits-section .presence-card strong {
    font-size: clamp(1.36rem, 2vw, 1.85rem);
    line-height: 1.16;
    margin-bottom: 10px;
  }

  .presence-strip.benefits-section .presence-card p {
    font-size: 1.02rem;
    line-height: 1.6;
  }

  .presence-strip.benefits-section .presence-card-offset {
    transform: translateY(12px);
  }

  .services.services-feature {
    background: #f6f2eb;
    position: relative;
  }

  .services.services-feature::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 68px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,0.12), rgba(255,255,255,0));
  }

  .services.services-feature .section-inner {
    padding-top: 104px;
    padding-bottom: 108px;
  }

  .services.services-feature .section-title {
    max-width: 14ch;
  }

  .services.services-feature .section-lead {
    max-width: 700px;
    margin-bottom: 40px;
  }

  .services.services-feature .services-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
  }

  .services.services-feature .service-card {
    grid-column: span 5;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    padding: 30px;
    background: rgba(255,255,255,0.72);
    border: var(--card-border-soft);
    box-shadow: var(--card-shadow-soft);
  }

  .services.services-feature .service-card-featured {
    grid-column: span 7;
    min-height: 300px;
    padding: 36px 38px;
    box-shadow: var(--card-shadow-strong);
  }

  .services.services-feature .service-card:nth-child(3),
  .services.services-feature .service-card:nth-child(4) {
    grid-column: span 6;
  }

  .services.services-feature .service-card:hover {
    transform: translateY(-4px);
  }

  .services.services-feature .service-card h3 {
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    line-height: 1.18;
  }

  .services.services-feature .service-card p {
    font-size: 1.03rem;
    line-height: 1.62;
  }

  .health-focus.categories-showcase {
    background: #fbf8f3;
    position: relative;
  }

  .health-focus.categories-showcase::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 62px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,0.12), rgba(255,255,255,0));
  }

  .health-focus.categories-showcase .section-inner {
    padding-top: 104px;
    padding-bottom: 112px;
  }

  .health-focus.categories-showcase .section-title {
    max-width: 12ch;
  }

  .health-focus.categories-showcase .section-lead {
    max-width: 820px;
    margin-bottom: 44px;
  }

  .health-focus.categories-showcase .health-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 26px;
  }

  .health-focus.categories-showcase .health-grid .health-card:first-child {
    grid-column: span 6;
  }

  .health-focus.categories-showcase .health-grid .health-card:nth-child(2),
  .health-focus.categories-showcase .health-grid .health-card:nth-child(3) {
    grid-column: span 3;
  }

  .health-focus.categories-showcase .health-grid .health-card:nth-child(n + 4) {
    grid-column: span 4;
  }

  .health-focus.categories-showcase .health-card {
    border-radius: 26px;
    background: rgba(255,255,255,0.76);
    border: var(--card-border-soft);
    box-shadow: var(--card-shadow-soft);
  }

  .health-focus.categories-showcase .health-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-strong);
    border-color: rgba(54, 50, 44, 0.14);
  }

  .health-focus.categories-showcase .health-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .health-focus.categories-showcase .health-card-content h3 {
    font-size: clamp(1.32rem, 1.85vw, 1.7rem);
    line-height: 1.2;
  }

  .health-focus.categories-showcase .health-card-content p {
    font-size: 1.03rem;
    line-height: 1.62;
  }

  .health-focus.categories-showcase .health-card-content .btn {
    margin-top: auto;
    width: fit-content;
  }

  .services.editorial-focus .section-inner {
    padding-top: 96px;
    padding-bottom: 104px;
  }

  .services.editorial-focus .featured-layout {
    grid-template-columns: 8fr 4fr;
    gap: 24px;
  }

  .services.editorial-focus .featured-main,
  .services.editorial-focus .featured-side {
    border-radius: 24px;
    border: var(--card-border-soft);
    background: rgba(255,255,255,0.72);
    box-shadow: var(--card-shadow-soft);
    padding: 32px;
  }

  .services.editorial-focus .featured-main {
    background: linear-gradient(145deg, rgba(255,255,255,0.84), rgba(244, 249, 244, 0.66));
  }

  .services.editorial-focus .featured-side {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .services.editorial-focus .featured-main h3 {
    font-size: clamp(1.45rem, 2.1vw, 2rem);
    line-height: 1.2;
  }

  .services.editorial-focus .featured-side h3 {
    font-size: clamp(1.18rem, 1.7vw, 1.5rem);
  }

  .services.editorial-focus .featured-main .featured-checklist {
    margin: 0 0 16px;
  }

  .services.editorial-focus .featured-main .featured-note {
    margin: 0 0 16px;
  }

  .services.editorial-focus .featured-main .featured-cta-row {
    margin: 4px 0 0;
  }

  .services.topics-section .section-inner {
    padding-top: 96px;
    padding-bottom: 104px;
  }

  .services.topics-section .topic-card {
    border-radius: 24px;
    border: var(--card-border-soft);
    background: rgba(255,255,255,0.75);
    box-shadow: var(--card-shadow-soft);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  }

  .services.topics-section .topic-card-content {
    padding: 24px 24px 26px;
  }

  .services.topics-section .topic-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-strong);
  }

  .footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.92);
    padding: 48px 24px 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
  }

  .footer-brand .logo { color: #fff; display: inline-block; margin-bottom: 12px; }
  .footer-address, .footer-phone, .footer-hours {
    margin: 0 0 4px 0;
    font-size: 0.9375rem;
    opacity: 0.9;
  }

  .footer-phone a { color: #fff; }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
  }

  .footer-links a:hover { color: #fff; }

  .page-hero {
    min-height: 50vh;
    min-height: 50dvh;
    padding: 80px 24px 64px;
  }

.page-hero .hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  backdrop-filter: blur(7px);
  padding: 30px 28px 24px;
  box-shadow: 0 12px 34px rgba(44, 40, 37, 0.08);
}

.page-hero .hero-sub {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero .hero-cta {
  justify-content: center;
}

.about-page .about-section {
  padding: 40px 24px;
}

.about-page .about-section .section-inner {
  background: linear-gradient(150deg, rgba(255,255,255,0.84), rgba(248,246,242,0.72));
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-page .about-section-alt .section-inner {
  background: linear-gradient(150deg, rgba(243,248,242,0.9), rgba(255,252,246,0.75));
}

.about-icon-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-icon-card {
  background: var(--surface-warm);
  border: 1px solid var(--border-warm);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
}

.about-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.1);
  margin-bottom: 14px;
}

.about-icon-card h3 {
  margin: 0 0 8px 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.06rem;
  color: var(--text);
}

.about-icon-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.about-team-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.about-team-text .values-list {
  margin-top: 8px;
}

.about-team-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-team-gallery .image-placeholder {
  min-height: 230px;
}

.team-intro {
  padding: 48px 24px 24px;
}

.team-intro .section-inner {
  max-width: 880px;
  margin: 0 auto;
}

.team-grid-section {
  padding: 24px 24px 64px;
}

.team-grid-section .section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.team-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.team-member {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(248, 246, 242, 0.88));
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.team-member-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-warm);
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-member-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  gap: 8px;
  min-height: 5.5rem;
}

.team-member-name {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.25;
}

.team-member-role {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.45;
}

@media (max-width: 768px) {
  .team-intro {
    padding: 36px 20px 16px;
  }

  .team-grid-section {
    padding: 16px 20px 48px;
  }

  .team-grid {
    gap: 20px;
  }

  .team-member-body {
    padding: 18px 18px 22px;
    min-height: 5rem;
  }
}

.services-page .services {
  padding-top: 24px;
}

.services-page .services .section-inner {
  background: linear-gradient(150deg, rgba(255,255,255,0.84), rgba(248,246,242,0.72));
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.products-page .services .section-inner {
  background: linear-gradient(150deg, rgba(255,255,255,0.84), rgba(248,246,242,0.72));
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.products-page .product-teasers {
  margin-top: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.products-page .product-teasers .product-teaser-card:first-child {
  grid-column: auto;
  background: var(--surface-warm);
}

.product-teaser-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-warm);
  margin-bottom: 14px;
}

.product-teaser-media .image-placeholder {
  min-height: 140px;
  border-radius: 0;
}

.product-teaser-media img.site-photo {
  aspect-ratio: 4 / 3;
  min-height: 140px;
}

.site-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.thermen-image {
  overflow: hidden;
}

.thermen-image img.site-photo {
  height: var(--location-visual-height);
  min-height: var(--location-visual-height);
  max-height: var(--location-visual-height);
  object-fit: cover;
  object-position: center;
}

.content-media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.content-photo-frame {
  margin: 0;
  min-height: 260px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-warm);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-warm);
}

.content-photo-frame .site-photo {
  min-height: 260px;
}

.content-photo-frame--portrait .site-photo {
  object-position: center 20%;
  min-height: 320px;
}

.content-media-text .section-title {
  margin-bottom: 12px;
}

.content-media-text .section-lead {
  margin-bottom: 0;
}

.products-page .product-teaser-card .btn {
  margin-top: 4px;
}

@media (max-width: 960px) {
  .about-team-layout {
    grid-template-columns: 1fr;
  }

  .about-icon-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .content-media-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .content-photo-frame {
    min-height: 220px;
  }

  .content-photo-frame .site-photo,
  .content-photo-frame--portrait .site-photo {
    min-height: 220px;
  }
}

@media (max-width: 700px) {
  .about-page .about-section {
    padding: 28px 16px;
  }

  .about-team-gallery {
    grid-template-columns: 1fr;
  }
}

  .text-section {
    padding: 48px 24px 64px;
  }

.text-section .section-inner {
  padding: 0 24px 32px;
  max-width: 980px;
  background: linear-gradient(150deg, rgba(255,255,255,0.8), rgba(248,246,242,0.7));
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
  .text-section h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.35rem;
    margin: 32px 0 12px 0;
    color: var(--text);
  }

  .text-section h2:first-child { margin-top: 0; }
  .text-section p {
    margin: 0 0 16px 0;
    color: var(--text-muted);
    line-height: 1.65;
  }

  .text-section ul {
    margin: 12px 0 24px 0;
    padding-left: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  .text-section ul li { margin-bottom: 6px; }
  .cta-block {
    text-align: center;
    padding: 40px 24px;
  background: linear-gradient(145deg, #ece6db 0%, #f9f4ea 100%);
    border-radius: var(--radius-lg);
    margin-top: 48px;
  border: 1px solid var(--border-warm);
  }

  .cta-block .section-lead {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    max-width: 28rem;
    text-align: center;
  }

  .cta-block .btn { margin-top: 12px; }

  .cta-block .btn-primary {
    margin-top: 0;
  }

  .cta-or-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px auto 0;
    max-width: 20rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: lowercase;
    color: rgba(var(--primary-dark-rgb), 0.55);
  }

  .cta-or-divider::before,
  .cta-or-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(var(--primary-dark-rgb), 0.14);
  }

  .partner-shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    min-height: 44px;
    padding-inline: 22px;
    font-size: 0.95rem;
  }

  .partner-shop-icon {
    flex-shrink: 0;
    opacity: 0.85;
  }

  .partner-shop-note {
    margin: 12px auto 0;
    max-width: 28rem;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(var(--primary-dark-rgb), 0.62);
  }

  .cta-path-lead {
    margin: 14px auto 0;
    max-width: 28rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(var(--primary-dark-rgb), 0.72);
  }

  .product-teasers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
  }

.product-teasers .product-teaser-card:first-child {
  grid-column: span 2;
  background:
    radial-gradient(circle at 18% 14%, rgba(var(--primary-rgb), 0.16), transparent 34%),
    linear-gradient(145deg, #f2efe7 0%, #fffdf9 100%);
}

  .product-teaser-card {
    background: var(--surface-warm);
    padding: 28px 26px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-warm);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  }

  .product-teaser-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
    border-color: var(--accent-warm);
  }

  .product-teaser-card h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    color: var(--text);
  }

  .product-teaser-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0 0 16px 0;
    line-height: 1.55;
  }

  .product-teaser-card a {
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .product-teaser-card a:hover { text-decoration: underline; }

  .legal-page .section-inner {
    max-width: 720px;
    padding: 48px 24px 80px;
  }

  .legal-page .legal-section {
    margin-bottom: 32px;
  }

  .legal-page .legal-section h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.15rem;
    margin: 0 0 8px 0;
    color: var(--text);
  }

  .legal-page .legal-section p {
    margin: 0;
    white-space: pre-line;
    color: var(--text-muted);
    line-height: 1.65;
  }

  .legal-page .legal-section ul {
    margin: 0 0 12px 1.25rem;
    padding: 0;
    color: var(--text-muted);
    line-height: 1.65;
  }

  .legal-page .legal-section li {
    margin-bottom: 6px;
  }

  .legal-page .legal-section code {
    font-size: 0.92em;
    background: rgba(var(--primary-rgb), 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    white-space: normal;
  }

  .contact-form-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.5;
  }

  .contact-form-card {
    margin-top: 12px;
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-warm);
    background: linear-gradient(145deg, rgba(249, 244, 234, 0.65) 0%, rgba(255, 255, 255, 0.92) 100%);
    box-shadow: 0 8px 24px rgba(44, 40, 37, 0.06);
  }

  .contact-shop-aside {
    margin-top: 36px;
    padding: 20px 18px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-warm);
    background: rgba(var(--primary-rgb), 0.05);
    max-width: 480px;
  }

  .contact-shop-aside-lead {
    margin: 0 0 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
  }

  .contact-shop-aside .partner-shop-btn {
    margin-top: 0;
  }

  .contact-shop-aside .partner-shop-note {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .form-consent {
    padding: 14px 14px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface);
  }

  .form-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text);
    cursor: pointer;
  }

  .form-consent-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary);
    cursor: pointer;
  }

  .form-consent-label a {
    font-weight: 600;
  }

  .form-consent--invalid {
    border-color: #c45c4a;
    box-shadow: 0 0 0 2px rgba(196, 92, 74, 0.12);
  }

  .form-error {
    margin: 10px 0 0;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #b44a38;
    font-weight: 500;
  }

  .form-status {
    margin: 0 0 16px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    line-height: 1.5;
    max-width: 480px;
  }

  .form-status[hidden] {
    display: none !important;
  }

  .form-status--error {
    color: #8f3d30;
    background: rgba(196, 92, 74, 0.1);
    border: 1px solid rgba(196, 92, 74, 0.35);
  }

  .form-status--error a {
    font-weight: 600;
    color: #8f3d30;
  }

  .form-status--error a:hover {
    color: #6b2e24;
  }

  .contact-form button[type="submit"]:disabled {
    opacity: 0.72;
    cursor: not-allowed;
  }

  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 480px;
  }

  .contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
  }

  .contact-form .form-optional {
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--text-muted);
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
  }

  .contact-form textarea { min-height: 120px; resize: vertical; }
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
  }

  /* ---------- Contact page (kontakt/) ---------- */
  .contact-page .page-hero.contact-page-hero {
    min-height: auto;
    padding: max(72px, calc(var(--header-h) + 24px)) 24px 40px;
  }

  .contact-page-primary {
    background: var(--surface-warm);
    padding: 48px 24px 56px;
    border-top: 1px solid var(--border-warm);
    border-bottom: 1px solid var(--border-warm);
  }

  .contact-page-form-wrap {
    max-width: 720px;
    margin: 0 auto;
  }

  .contact-page-form-wrap .section-eyebrow {
    margin-bottom: 10px;
  }

  .contact-page-form-wrap .section-title {
    margin-bottom: 12px;
  }

  .contact-page-form-lead {
    margin-bottom: 28px;
    max-width: 56ch;
  }

  .contact-page .contact-form-card--page {
    margin-top: 0;
    padding: 32px 28px 28px;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-page .contact-form form {
    max-width: none;
    width: 100%;
  }

  .contact-page .contact-form textarea {
    min-height: 140px;
  }

  .contact-page-direct {
    margin: 24px 0 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
  }

  .contact-page-direct a {
    color: var(--primary);
    font-weight: 600;
  }

  .contact-page-direct a:hover {
    text-decoration: underline;
  }

  .contact-page-location {
    background: var(--bg);
  }

  .contact-page .contact-page-location-inner {
    align-items: stretch;
  }

  .contact-page .contact-map.contact-visual-card {
    border-radius: 18px;
    border: 1px solid var(--border-warm);
    box-shadow: var(--shadow);
    overflow: hidden;
    background: var(--bg-warm);
    height: var(--location-visual-height);
    min-height: var(--location-visual-height);
    max-height: none;
  }

  .contact-page .contact-map.contact-visual-card .map-embed {
    width: 100%;
    height: 100%;
    min-height: var(--location-visual-height);
    max-height: none;
    border: 0;
    outline: none;
    display: block;
  }

  .contact-page .contact-info {
    justify-content: flex-start;
  }

  .contact-page .contact-shop-aside {
    max-width: none;
  }

  @media (max-width: 1024px) {
    .thermen-inner, .trust-layout { grid-template-columns: 1fr; }
    .thermen-content { padding: 40px 24px 48px; }
    .contact-inner { grid-template-columns: 1fr; }
    .contact-visual-stack { gap: 16px; }
    .contact-map .map-placeholder {
      min-height: var(--location-visual-height);
      height: var(--location-visual-height);
    }
    .contact-info {
      padding: 40px 24px 48px;
      border-left: none;
      border-top: 1px solid var(--border-warm);
    }
  }

  @media (max-width: 768px) {
    :root {
      --header-h: 132px;
      --location-visual-height: 280px;
    }

    .drawer {
      display: none !important;
    }

    .header-inner {
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      row-gap: 6px;
      column-gap: 12px;
      height: auto;
      min-height: 56px;
      padding-top: max(8px, env(safe-area-inset-top, 0px));
      padding-bottom: 8px;
    }

    .logo {
      order: 1;
      flex: 1 1 auto;
      min-width: 0;
    }

    .header-actions {
      order: 2;
      display: flex;
      flex: 0 1 auto;
      align-items: center;
      justify-content: flex-end;
      flex-wrap: wrap;
      gap: 6px 8px;
      min-width: 0;
      max-width: min(100%, 340px);
    }

    .nav .nav-list li.nav-item-hide-mobile {
      display: none !important;
    }

    .header-actions .btn-header {
      padding: 10px 14px;
      font-size: 0.8125rem;
      min-height: 44px;
      white-space: nowrap;
    }

    .header-actions .header-aux-link {
      padding: 10px 12px;
      font-size: 0.75rem;
      min-height: 44px;
      font-weight: 600;
      white-space: nowrap;
    }

    .header-actions .header-aux-link:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 2px;
    }

    .header-actions .btn-icon {
      width: 44px;
      height: 44px;
      min-height: 44px;
      padding: 0;
      flex-shrink: 0;
    }

    .nav {
      order: 3;
      display: block;
      flex: 1 1 100%;
      width: 100%;
      min-width: 0;
      padding-top: 8px;
      margin-top: 4px;
      border-top: 1px solid rgba(224, 218, 208, 0.55);
    }

    .nav .nav-list {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: stretch;
      gap: 10px;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 2px 2px 10px;
      margin: 0;
      scroll-snap-type: x proximity;
      overscroll-behavior-x: contain;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      mask-image: linear-gradient(to right, transparent 0, black 12px, black calc(100% - 12px), transparent 100%);
    }

    .nav .nav-list li {
      flex: 0 0 auto;
      scroll-snap-align: start;
    }

    .nav .nav-list a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 10px 16px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text);
      background: rgba(var(--primary-rgb), 0.08);
      border-radius: 999px;
      white-space: nowrap;
      border-bottom: none;
      box-sizing: border-box;
    }

    .nav .nav-list a:hover {
      color: var(--primary-dark);
      background: rgba(var(--primary-rgb), 0.15);
    }

    .nav .nav-list a:focus-visible {
      color: var(--primary-dark);
      background: rgba(var(--primary-rgb), 0.15);
      outline: 2px solid var(--primary);
      outline-offset: 2px;
    }

    .quick-info-seamless { margin-top: 0; padding-top: 40px; }
    .quick-info { padding: 40px 20px 0; padding-bottom: 140px; }
    .quick-info::after { height: 140px; }
    .quick-info-inner { grid-template-columns: 1fr; gap: 20px; }
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card-featured { grid-column: span 1; }
    .service-card { padding: 22px 20px; }
    .health-grid { grid-template-columns: 1fr; gap: 18px; }
    .health-grid .health-card:first-child,
    .health-grid .health-card:nth-child(4) { grid-column: span 1; }
    .section-inner { padding: 40px 20px 44px; }
    .section-title { font-size: 1.5rem; }
    .section-lead { font-size: 1rem; margin-bottom: 32px; }
    .hero { min-height: 75vh; min-height: 75dvh; padding: 28px 20px 56px; }
    .hero-title { font-size: 1.75rem; margin-bottom: 16px; }
    .hero-sub { font-size: 1rem; margin-bottom: 28px; }
    .hero-split { grid-template-columns: 1fr; gap: 16px; }
    .hero-copy { padding: 22px 16px 18px; border-radius: 18px; }
    .hero-visual-card { padding: 20px 16px; border-radius: 18px; }
    .hero-cta { flex-direction: column; gap: 12px; }
    .hero-cta .btn { width: 100%; min-height: 48px; padding: 14px 20px; }
    .hero-trust { gap: 8px; margin-top: 14px; }
    .hero-trust span { font-size: 0.78rem; padding: 6px 10px; }
    .presence-strip .section-inner { grid-template-columns: 1fr; gap: 12px; padding-top: 0; }
    .featured-layout { grid-template-columns: 1fr; }
    .services.editorial-focus .featured-layout {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .services.editorial-focus .featured-main,
    .services.editorial-focus .featured-side {
      min-width: 0;
    }
    .thermen-content { padding: 36px 24px 40px; }
    .thermen-region .thermen-inner {
      min-height: 0;
    }
    .thermen-region .thermen-image {
      display: block;
    }
    .trust { padding: 44px 24px 52px; }
    .trust-layout { gap: 32px; }
    .trust-image .image-placeholder.team,
    .trust-image img.site-photo {
      min-height: 220px;
    }
    .values-list { gap: 16px; }
    .value-icon { width: 42px; height: 42px; }
    .accordion-item summary { padding: 18px 20px; font-size: 0.9375rem; }
    .accordion-item p { padding: 0 20px 18px 20px; }
    .contact-cta { flex-direction: column; gap: 12px; }
    .contact-cta .btn { width: 100%; min-height: 48px; }
    .map-actions {
      left: 12px;
      right: 12px;
      bottom: 12px;
      padding: 10px;
    }
    .map-actions .btn {
      flex: 1 1 100%;
      width: 100%;
    }
    .contact-page .page-hero.contact-page-hero {
      padding: 0;
    }

    .hero.page-hero {
      --hero-mobile-image-height: clamp(480px, min(96vw, 84svh), 840px);
      position: relative;
      overflow: visible;
      min-height: auto;
      margin-top: calc(-1 * var(--header-h));
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: stretch;
      box-sizing: border-box;
      background: var(--bg-warm);
    }

    .contact-page .hero.page-hero.contact-page-hero {
      --hero-mobile-image-height: clamp(400px, min(84vw, 72svh), 640px);
      min-height: auto;
      justify-content: flex-start;
      padding: 0;
      padding-bottom: 0;
    }

    .hero.page-hero::before {
      content: '';
      position: relative;
      inset: auto;
      display: block;
      flex-shrink: 0;
      order: 0;
      width: 100%;
      height: var(--hero-mobile-image-height);
      z-index: 0;
      background-color: #4a433c;
      background-image: url(../assets/images/topics/HeroPage2.png);
      background-size: cover;
      background-position: right bottom;
    }

    .hero.page-hero:not(.hero-reference)::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: var(--hero-mobile-image-height);
      z-index: 0;
      pointer-events: none;
      background:
        linear-gradient(
          180deg,
          rgba(253, 251, 247, 0.72) 0%,
          rgba(253, 251, 247, 0.2) 18%,
          transparent 42%
        ),
        linear-gradient(
          to top,
          var(--surface-warm) 0%,
          rgba(253, 251, 247, 0.85) 12%,
          transparent 38%
        );
    }

    .hero.page-hero.hero-reference::before {
      display: none;
    }

    .hero.page-hero .hero-bg {
      display: none;
    }

    .hero.page-hero .hero-bg::before,
    .hero.page-hero .hero-bg::after {
      display: none;
    }

    .hero.page-hero > .hero-inner,
    .hero.page-hero > .section-inner {
      position: relative;
      z-index: 1;
      order: 1;
      flex: 0 0 auto;
      width: 100%;
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
    }

    .hero.page-hero .hero-inner {
      margin-top: -8px;
      padding: 24px 20px 28px;
      border-radius: 20px 20px 0 0;
      box-shadow: 0 -4px 24px rgba(44, 40, 37, 0.06);
      backdrop-filter: none;
      background: var(--surface-warm);
      text-align: center;
    }

  .text-section .section-inner { padding: 20px 16px 24px; }
    .slider-track {
      grid-auto-columns: minmax(260px, min(320px, 100%));
      gap: 14px;
      mask-image: linear-gradient(to right, transparent 0, black 12px, black calc(100% - 12px), transparent 100%);
    }
    .topic-card {
      min-width: 0;
    }
    .topic-card img { height: 170px; }
    .topic-card-content { padding: 16px 16px 18px; }
    .product-teasers { grid-template-columns: 1fr; }
  .product-teasers .product-teaser-card:first-child { grid-column: span 1; }

    .section-inner {
      padding-top: 72px;
      padding-bottom: 80px;
      padding-left: 32px;
      padding-right: 32px;
    }

    .section-title, .page-title {
      font-size: clamp(2rem, 5.8vw, 2.6rem);
    }

    .quick-info.utility-ribbon {
      margin-top: -40px;
      padding: 42px 20px 56px;
    }

    .quick-info.utility-ribbon.quick-info-seamless {
      margin-top: 0;
      padding: 24px 20px 56px;
    }

    .quick-info.utility-ribbon .quick-info-inner {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      padding: 22px;
    }

    .announcement-section .notice-block {
      padding: 28px;
      border-radius: 24px;
    }

    .announcement-section .notice-layout {
      grid-template-columns: 1fr;
      align-items: start;
    }

    .presence-strip.benefits-section .section-inner {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      padding-top: 72px;
      padding-bottom: 80px;
    }

    .presence-strip.benefits-section .presence-card {
      padding: 26px;
    }

    .presence-strip.benefits-section .presence-card-offset {
      transform: none;
    }

    .services.services-feature .services-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services.services-feature .service-card-featured,
    .services.services-feature .service-card,
    .services.services-feature .service-card:nth-child(3),
    .services.services-feature .service-card:nth-child(4) {
      grid-column: span 1;
      min-height: 0;
      padding: 24px;
    }

    .health-focus.categories-showcase .health-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .health-focus.categories-showcase .health-grid .health-card:first-child,
    .health-focus.categories-showcase .health-grid .health-card:nth-child(2),
    .health-focus.categories-showcase .health-grid .health-card:nth-child(3),
    .health-focus.categories-showcase .health-grid .health-card:nth-child(n + 4) {
      grid-column: span 1;
    }

    .health-focus.categories-showcase .health-card-content {
      padding: 24px;
    }

    .hero.page-hero.hero-reference {
      min-height: auto;
      padding: 0;
      padding-bottom: 0;
      justify-content: flex-start;
    }

    .hero.page-hero.hero-reference .hero-bottom-fade {
      display: none !important;
    }

    .hero.page-hero.hero-reference .hero-image-layer {
      display: block !important;
      position: relative;
      left: 0;
      top: auto;
      right: auto;
      bottom: auto;
      width: 100%;
      height: var(--hero-mobile-image-height);
      min-height: 0;
      max-height: none;
      order: 0;
      flex-shrink: 0;
      overflow: hidden;
      pointer-events: none;
      opacity: 1;
      transform: none;
      animation: none;
    }

    .hero.page-hero.hero-reference .hero-image-layer::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        linear-gradient(
          180deg,
          rgba(253, 251, 247, 0.72) 0%,
          rgba(253, 251, 247, 0.2) 18%,
          transparent 42%
        ),
        linear-gradient(
          to top,
          var(--surface-warm) 0%,
          rgba(253, 251, 247, 0.85) 12%,
          transparent 38%
        );
    }

    .hero.page-hero.hero-reference .hero-photo {
      position: relative;
      inset: auto;
      width: 100%;
      height: 100%;
      min-height: 100%;
      max-height: none;
      object-fit: cover;
      object-position: right bottom;
      transform: none;
      filter: none;
    }

    .hero.page-hero.hero-reference .hero-fade-main,
    .hero.page-hero.hero-reference .hero-fade-haze,
    .hero.page-hero.hero-reference .hero-fade-tone {
      display: none !important;
    }

    .hero.page-hero.hero-reference .hero-inner {
      flex: 0 0 auto;
      min-height: 0;
      width: 100%;
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
      padding: 22px 18px 24px;
      justify-content: flex-start;
      align-items: stretch;
      text-align: center;
    }

    .hero.page-hero.hero-reference .hero-cta,
    .hero.page-hero.hero-reference .hero-trust {
      display: none;
    }

    .hero.page-hero.hero-reference .hero-sub {
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 0;
    }

    .hero.hero-reference + .quick-info.utility-ribbon.quick-info-seamless {
      padding-top: 24px;
    }
  }

  @media (max-width: 480px) {
    .header-inner {
      padding: max(6px, env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-right, 0px)) 8px max(16px, env(safe-area-inset-left, 0px));
      height: auto;
      min-height: 52px;
    }
    :root { --header-h: 124px; }
    .logo { font-size: 1.0625rem; }
    .quick-info-seamless { margin-top: 0; padding-top: 32px; }
    .quick-info { padding: 32px 16px 0; padding-bottom: 120px; }
    .quick-info::after { height: 120px; }
    .section-inner { padding: 32px 16px 40px; }
    .section-title { font-size: 1.375rem; }
    .hero { min-height: 70vh; min-height: 70dvh; padding: 24px 16px 48px; }
    .hero-title { font-size: 1.5rem; }
    .hero-sub { font-size: 0.9375rem; }

    .hero.page-hero {
      padding: 0;
    }

    .contact-page .hero.page-hero.contact-page-hero {
      min-height: auto;
      padding: 0;
      justify-content: flex-start;
    }

    .contact-page-primary {
      padding: 36px 16px 44px;
    }

    .contact-page .contact-form-card--page {
      padding: 24px 18px 22px;
    }

    .contact-page-direct {
      text-align: left;
    }

    .hero.page-hero .hero-inner {
      padding: 20px 16px 24px;
      border-radius: 20px 20px 0 0;
    }

    .hero.page-hero.hero-reference .hero-inner {
      padding: 20px 16px 24px;
    }

    .hero-copy { padding: 18px 12px 14px; }
    .thermen-content, .contact-info { padding: 28px 16px 36px; }
    .thermen-image .image-placeholder {
      min-height: var(--location-visual-height);
      height: var(--location-visual-height);
    }
    .contact-map .map-placeholder {
      min-height: var(--location-visual-height);
      height: var(--location-visual-height);
    }
    .footer { padding: 36px 16px 28px; }
    .footer-inner { flex-direction: column; gap: 24px; }

    .section-inner {
      padding-top: 56px;
      padding-bottom: 64px;
      padding-left: 20px;
      padding-right: 20px;
    }

    .section-title, .page-title {
      font-size: clamp(1.82rem, 8vw, 2.24rem);
      line-height: 1.12;
    }

    .section-lead {
      font-size: 1.02rem;
      margin-bottom: 32px;
    }

    .quick-info.utility-ribbon .quick-info-inner {
      grid-template-columns: 1fr;
      padding: 20px;
    }

    .quick-info.utility-ribbon .quick-info-item {
      min-height: 0;
    }

    .quick-info.utility-ribbon {
      margin-top: -24px;
    }

    .quick-info.utility-ribbon.quick-info-seamless {
      margin-top: 0;
      padding: 20px 16px 48px;
    }

    .announcement-section .notice-block {
      padding: 24px 20px;
    }

    .announcement-section .notice-meta {
      padding: 22px;
      border-radius: 20px;
    }

    .presence-strip.benefits-section .section-inner {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .services.services-feature .services-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .health-focus.categories-showcase .health-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }
  }

  /* ---------- Final below-hero agency polish (no hero changes) ---------- */
  .quick-info.utility-ribbon {
    padding-bottom: 88px;
    background: #fbf8f3;
  }

  .quick-info.utility-ribbon .quick-info-inner {
    max-width: 1160px;
    border-radius: 30px;
    padding: 30px;
    column-gap: 28px;
    row-gap: 20px;
  }

  .quick-info.utility-ribbon .quick-info-item--parking {
    grid-column: span 2;
  }

  .quick-info.utility-ribbon .quick-info-item {
    align-items: flex-start;
  }

  .announcement-section .section-inner {
    max-width: 1080px;
  }

  .announcement-section .notice-block {
    padding: 46px;
    box-shadow: 0 20px 54px rgba(20,18,15,0.06);
    background:
      radial-gradient(circle at 14% 12%, rgba(255,255,255,0.88), rgba(255,255,255,0.58) 58%, transparent 100%),
      linear-gradient(145deg, rgba(255,255,255,0.82), rgba(255,255,255,0.7));
  }

  .announcement-section .notice-layout {
    grid-template-columns: 60fr 40fr;
    align-items: center;
    gap: 30px;
  }

  .announcement-section .notice-main h2 {
    max-width: 11ch;
    font-size: clamp(2.5rem, 4.4vw, 3.5rem);
    line-height: 1.04;
    margin-bottom: 16px;
  }

  .announcement-section .notice-main p {
    max-width: 38ch;
    font-size: 1.05rem;
    line-height: 1.66;
  }

  .announcement-section .notice-meta {
    padding: 32px 30px;
    border-radius: 26px;
  }

  .announcement-section .notice-pill {
    display: inline-flex;
    border-radius: 999px;
    background: #f4efe5;
    color: #746d62;
    border: 1px solid rgba(54, 50, 44, 0.08);
    padding: 6px 14px;
    font-size: 0.86rem;
    margin-bottom: 14px;
  }

  .presence-strip.benefits-section .section-inner {
    max-width: 1180px;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
  }

  .presence-strip.benefits-section .presence-card {
    min-height: 268px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    padding-bottom: 74px;
  }

  .presence-strip.benefits-section .presence-card-featured {
    padding: 34px;
    box-shadow: 0 16px 42px rgba(20,18,15,0.055);
  }

  .presence-strip.benefits-section .presence-icon {
    position: absolute;
    right: 26px;
    bottom: 22px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(54, 50, 44, 0.08);
    background: #f1ede4;
    color: #6d6a62;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .services.services-feature .section-inner {
    max-width: 1240px;
  }

  .services.services-feature .section-title {
    max-width: 12ch;
    font-size: clamp(2.5rem, 4.2vw, 3.35rem);
  }

  .services.services-feature .section-lead {
    max-width: 680px;
    margin-bottom: 48px;
  }

  .services.services-feature .service-card-featured {
    min-height: 320px;
    position: relative;
    overflow: hidden;
  }

  .services.services-feature .service-card {
    min-height: 228px;
    position: relative;
    overflow: hidden;
  }

  .services.services-feature .service-label {
    display: inline-flex;
    width: fit-content;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7f796e;
    border: 1px solid rgba(54, 50, 44, 0.08);
    background: #f3ede5;
    border-radius: 999px;
    padding: 6px 14px;
    margin-bottom: 16px;
    font-weight: 600;
  }

  .services.services-feature .service-card-featured h3 {
    max-width: 12ch;
  }

  .services.services-feature .service-card-featured p {
    max-width: 52%;
  }

  .services.services-feature .service-card-featured .service-media {
    position: absolute;
    right: 18px;
    top: 16px;
    bottom: 16px;
    width: 38%;
    border-radius: 20px;
    overflow: hidden;
    background: #f1ece3;
    box-shadow: inset 0 0 0 1px rgba(54, 50, 44, 0.05);
  }

  .services.services-feature .service-card-featured .service-media img.site-photo {
    width: 100%;
    height: 100%;
    object-position: center 35%;
  }

  .services.services-feature .service-card-featured .btn {
    margin-top: auto;
    position: relative;
    z-index: 2;
  }

  .services.services-feature .service-mini-icon {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(54, 50, 44, 0.09);
    background: #f1eee6;
    color: #6d6a62;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .services.services-feature .service-card:not(.service-card-featured) p {
    max-width: calc(100% - 62px);
  }

  .health-focus.categories-showcase .section-inner {
    max-width: 1180px;
  }

  .health-focus.categories-showcase .section-title {
    max-width: 11ch;
  }

  .health-focus.categories-showcase .section-lead {
    max-width: 760px;
    margin-bottom: 48px;
  }

  .health-focus.categories-showcase .health-grid {
    gap: 26px;
  }

  .health-focus.categories-showcase .health-card:first-child .health-card-content h3 {
    font-size: clamp(1.75rem, 2.3vw, 2.3rem);
  }

  .health-focus.categories-showcase .health-card:nth-child(2) .health-card-content h3,
  .health-focus.categories-showcase .health-card:nth-child(3) .health-card-content h3 {
    font-size: clamp(1.28rem, 1.8vw, 1.55rem);
  }

  .services.editorial-focus {
    background: #f6f2eb;
  }

  .services.editorial-focus .section-inner {
    max-width: 960px;
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .services.editorial-focus .section-title {
    max-width: 14ch;
  }

  .services.topics-section {
    background: #f3efe8;
  }

  .services.topics-section .section-inner {
    max-width: 1180px;
  }

  .services.topics-section .slider {
    margin-top: 6px;
  }

  .services.topics-section .topic-card {
    border-color: rgba(54, 50, 44, 0.055);
    box-shadow: 0 12px 32px rgba(20,18,15,0.045);
  }

  .services.topics-section .topic-card:hover {
    border-color: rgba(54, 50, 44, 0.12);
  }

  @media (max-width: 1024px) {
    .quick-info.utility-ribbon .quick-info-item--parking {
      grid-column: span 1;
    }

    .announcement-section .section-inner,
    .services.services-feature .section-inner,
    .health-focus.categories-showcase .section-inner,
    .services.topics-section .section-inner {
      max-width: 1240px;
    }

    .services.editorial-focus .section-inner {
      max-width: 1080px;
    }

    .services.services-feature .service-card-featured p {
      max-width: 100%;
      padding-right: 0;
    }

    .services.services-feature .service-card-featured .service-media {
      position: relative;
      width: 100%;
      height: 130px;
      right: auto;
      top: auto;
      bottom: auto;
      margin: 14px 0 4px;
    }

    .services.services-feature .service-card:not(.service-card-featured) p {
      max-width: 100%;
      padding-right: 64px;
    }
  }

  @media (max-width: 768px) {
    .quick-info.utility-ribbon {
      padding-bottom: 72px;
    }

    .quick-info.utility-ribbon .quick-info-inner {
      padding: 22px;
      row-gap: 16px;
      column-gap: 16px;
    }

    .announcement-section .notice-block {
      padding: 30px;
    }

    .announcement-section .notice-layout {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .announcement-section .notice-main h2 {
      max-width: 12ch;
      font-size: clamp(2.15rem, 7vw, 2.8rem);
    }

    .presence-strip.benefits-section .presence-card {
      min-height: 0;
      padding-bottom: 70px;
    }

    .services.services-feature .section-lead,
    .health-focus.categories-showcase .section-lead {
      margin-bottom: 36px;
    }

    .services.services-feature .service-mini-icon {
      right: 16px;
      width: 44px;
      height: 44px;
    }
  }

  /* ---------- Reference-accurate atmospheric section (below hero) ---------- */
  .announcement-section {
    background-color: #f3efe8;
    position: relative;
    overflow: hidden;
  }

  .announcement-section .announcement-atmo {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4), transparent 40%),
      radial-gradient(circle at 80% 90%, rgba(var(--accent-soft-rgb), 0.18), transparent 45%);
  }

  .announcement-section .announcement-botanical-left,
  .announcement-section .announcement-botanical-right {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }

  .announcement-section .announcement-botanical-left {
    bottom: -40px;
    left: -20px;
    width: 340px;
    height: 230px;
    opacity: 0.25;
    transform: rotate(-7deg);
  }

  .announcement-section .announcement-botanical-right {
    bottom: -20px;
    right: -30px;
    width: 380px;
    height: 250px;
    opacity: 0.22;
    transform: rotate(8deg) scaleX(-1);
  }

  .announcement-section .announcement-botanical-left::before,
  .announcement-section .announcement-botanical-right::before {
    content: '';
    position: absolute;
    inset: -18% -22%;
    background-image: url("/public/botanical-overlay.png");
    background-repeat: no-repeat;
    background-size: 132% auto;
    opacity: 0.4;
    filter: saturate(0.74);
  }

  .announcement-section .announcement-botanical-left::before {
    background-position: 6% 92%;
    transform: translate(-8%, 8%);
  }

  .announcement-section .announcement-botanical-right::before {
    background-position: 88% 90%;
    transform: translate(10%, 10%) scaleX(-1);
  }

  .announcement-section .announcement-haze {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    z-index: 1;
    pointer-events: none;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(var(--accent-soft-muted-rgb), 0.4));
  }

  .announcement-section .section-inner {
    position: relative;
    z-index: 2;
  }

  .announcement-section .notice-block,
  .announcement-section .notice-meta,
  .announcement-section .presence-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(120,110,100,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  }

  .announcement-section .notice-block {
    border-radius: 28px;
  }

  .announcement-section .notice-meta {
    border-radius: 24px;
  }

  .announcement-section .presence-row {
    margin-top: 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 14px;
    position: relative;
    z-index: 2;
  }

  .announcement-section .presence-card {
    border-radius: 24px;
    padding: 32px 26px 74px;
    min-height: 246px;
  }

  .announcement-section .presence-card-featured {
    border-radius: 28px;
  }

  .announcement-section .presence-card-offset {
    transform: none;
  }

  @media (max-width: 1024px) {
    .announcement-section .section-inner.section-inner-narrow {
      gap: 18px;
    }

    .announcement-section .announcement-botanical-left { width: 300px; }
    .announcement-section .announcement-botanical-right { width: 340px; }
    .announcement-section .presence-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .announcement-section .presence-card:last-child { grid-column: span 2; }
  }

  @media (max-width: 768px) {
    .announcement-section .presence-row { grid-template-columns: 1fr; }
    .announcement-section .presence-card:last-child { grid-column: span 1; }
    .announcement-section .announcement-botanical-left { width: 250px; opacity: 0.2; }
    .announcement-section .announcement-botanical-right { width: 270px; opacity: 0.18; }
  }

  /* ---------- Atmospheric art-direction pass below hero ---------- */
  .quick-info.utility-ribbon,
  .announcement-section,
  .presence-strip.benefits-section,
  .services.services-feature,
  .health-focus.categories-showcase,
  .services.editorial-focus,
  .services.topics-section {
    position: relative;
    isolation: isolate;
  }

  .quick-info.utility-ribbon,
  .trust,
  .thermen-region {
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }

  .quick-info.utility-ribbon .quick-info-inner,
  .trust .section-inner,
  .thermen-region .thermen-inner {
    position: relative;
    z-index: 6;
  }

  .quick-info.utility-ribbon .homogeneous-haze,
  .trust .homogeneous-haze,
  .thermen-region .homogeneous-haze {
    position: absolute;
    pointer-events: none;
    z-index: 1;
  }

  .quick-info.utility-ribbon .homogeneous-overlay,
  .trust .homogeneous-overlay,
  .thermen-region .homogeneous-overlay {
    position: absolute;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .quick-info.utility-ribbon .homogeneous-overlay::before,
  .trust .homogeneous-overlay::before,
  .thermen-region .homogeneous-overlay::before {
    content: '';
    position: absolute;
    inset: -24%;
    background-image: url("/public/botanical-overlay.png");
    background-repeat: no-repeat;
    background-size: 156% auto;
    filter: saturate(0.7);
    opacity: 0.28;
  }

  .quick-info.utility-ribbon .homogeneous-haze-left,
  .trust .homogeneous-haze-left,
  .thermen-region .homogeneous-haze-left {
    left: 6px;
    bottom: 14px;
    width: 360px;
    height: 220px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.22), rgba(255,255,255,0.07) 66%, transparent 90%);
  }

  .quick-info.utility-ribbon .homogeneous-haze-right,
  .trust .homogeneous-haze-right,
  .thermen-region .homogeneous-haze-right {
    right: 4px;
    top: 8px;
    width: 380px;
    height: 226px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.2), rgba(255,255,255,0.06) 68%, transparent 92%);
  }

  .quick-info.utility-ribbon .homogeneous-overlay-left-bottom,
  .trust .homogeneous-overlay-left-bottom {
    left: 12px;
    bottom: 16px;
    width: 560px;
    height: 296px;
    opacity: 0.28;
    -webkit-mask-image: radial-gradient(ellipse at 34% 64%, rgba(0,0,0,0.92) 42%, rgba(0,0,0,0.58) 68%, rgba(0,0,0,0.14) 86%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(ellipse at 34% 64%, rgba(0,0,0,0.92) 42%, rgba(0,0,0,0.58) 68%, rgba(0,0,0,0.14) 86%, rgba(0,0,0,0) 100%);
  }

  .quick-info.utility-ribbon .homogeneous-overlay-left-bottom::before,
  .trust .homogeneous-overlay-left-bottom::before {
    background-position: 4% 95%;
    transform: translate(-8%, 10%);
  }

  .quick-info.utility-ribbon .homogeneous-overlay-right-bottom,
  .thermen-region .homogeneous-overlay-right-bottom {
    right: 10px;
    bottom: 20px;
    width: 580px;
    height: 312px;
    opacity: 0.25;
    -webkit-mask-image: radial-gradient(ellipse at 66% 62%, rgba(0,0,0,0.9) 44%, rgba(0,0,0,0.56) 70%, rgba(0,0,0,0.12) 88%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(ellipse at 66% 62%, rgba(0,0,0,0.9) 44%, rgba(0,0,0,0.56) 70%, rgba(0,0,0,0.12) 88%, rgba(0,0,0,0) 100%);
  }

  .quick-info.utility-ribbon .homogeneous-overlay-right-bottom::before,
  .thermen-region .homogeneous-overlay-right-bottom::before {
    background-position: 96% 94%;
    transform: translate(10%, 12%) scaleX(-1);
  }

  .trust .homogeneous-overlay-right-top {
    right: 12px;
    top: 6px;
    width: 410px;
    height: 220px;
    opacity: 0.18;
    -webkit-mask-image: radial-gradient(ellipse at 70% 35%, rgba(0,0,0,0.95) 44%, rgba(0,0,0,0.66) 70%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(ellipse at 70% 35%, rgba(0,0,0,0.95) 44%, rgba(0,0,0,0.66) 70%, rgba(0,0,0,0) 100%);
  }

  .trust .homogeneous-overlay-right-top::before {
    background-position: 88% 8%;
    transform: translate(8%, -10%);
  }

  .thermen-region .homogeneous-overlay-left-top {
    left: 10px;
    top: 8px;
    width: 390px;
    height: 210px;
    opacity: 0.17;
    -webkit-mask-image: radial-gradient(ellipse at 30% 35%, rgba(0,0,0,0.95) 42%, rgba(0,0,0,0.62) 68%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(ellipse at 30% 35%, rgba(0,0,0,0.95) 42%, rgba(0,0,0,0.62) 68%, rgba(0,0,0,0) 100%);
  }

  .thermen-region .homogeneous-overlay-left-top::before {
    background-position: 12% 8%;
    transform: translate(-10%, -10%) scaleX(-1);
  }

  .trust .homogeneous-overlay-bottom-wash,
  .thermen-region .homogeneous-overlay-bottom-wash {
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%);
    width: min(1080px, 92%);
    height: 250px;
    opacity: 0.13;
    border-radius: 999px;
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.86) 38%, rgba(0,0,0,0.5) 66%, rgba(0,0,0,0.1) 86%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.86) 38%, rgba(0,0,0,0.5) 66%, rgba(0,0,0,0.1) 86%, rgba(0,0,0,0) 100%);
  }

  .trust .homogeneous-overlay-bottom-wash::before,
  .thermen-region .homogeneous-overlay-bottom-wash::before {
    background-position: 50% 100%;
    transform: translate(0, 20%);
  }

  .quick-info.utility-ribbon {
    background: linear-gradient(to bottom, #fbf8f3 0%, #f6f2eb 100%);
  }

  .quick-info.utility-ribbon::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
      radial-gradient(circle at 16% 12%, rgba(255,255,255,0.22), rgba(255,255,255,0) 62%),
      radial-gradient(circle at 84% 82%, rgba(var(--accent-soft-muted-rgb), 0.09), rgba(var(--accent-soft-muted-rgb), 0) 60%);
  }

  .quick-info.utility-ribbon .quick-info-inner {
    position: relative;
    z-index: 2;
  }

  .announcement-section {
    background:
      radial-gradient(circle at 20% 20%, rgba(255,255,255,0.24), rgba(255,255,255,0) 55%),
      radial-gradient(circle at 80% 85%, rgba(var(--accent-soft-muted-rgb), 0.13), rgba(var(--accent-soft-muted-rgb), 0) 52%),
      linear-gradient(to bottom, #ebe6da 0%, #f1ece4 100%);
  }

  .announcement-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
      radial-gradient(132% 118% at 50% 98%, rgba(255,255,255,0.14), rgba(255,255,255,0) 68%),
      linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(255,255,255,0));
  }

  .announcement-section .section-inner {
    position: relative;
    z-index: 2;
  }

  .announcement-section .section-inner::before,
  .announcement-section .section-inner::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
    width: 210px;
    height: 164px;
    opacity: 0.14;
    filter: saturate(0.72);
    background:
      radial-gradient(ellipse at 18% 66%, rgba(var(--accent-soft-rgb), 0.4) 0 12%, transparent 13%),
      radial-gradient(ellipse at 30% 52%, rgba(var(--accent-soft-rgb), 0.34) 0 10%, transparent 11%),
      radial-gradient(ellipse at 46% 44%, rgba(var(--accent-soft-rgb), 0.28) 0 9%, transparent 10%),
      radial-gradient(ellipse at 60% 36%, rgba(var(--accent-soft-rgb), 0.2) 0 8%, transparent 9%);
  }

  .announcement-section .section-inner::before {
    left: -52px;
    bottom: 10px;
    transform: rotate(-7deg);
  }

  .announcement-section .section-inner::after {
    right: -34px;
    bottom: 20px;
    transform: rotate(8deg) scaleX(-1);
  }

  .announcement-section .notice-block,
  .announcement-section .notice-meta {
    position: relative;
    z-index: 2;
  }

  .presence-strip.benefits-section {
    background:
      linear-gradient(to bottom, #fbf8f3 0%, #f6f2eb 100%);
  }

  .presence-strip.benefits-section .section-inner {
    position: relative;
    z-index: 2;
  }

  .presence-strip.benefits-section::after {
    content: '';
    position: absolute;
    left: -8%;
    right: -8%;
    bottom: -48px;
    height: 150px;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(140% 134% at 50% 0%, rgba(var(--accent-soft-muted-rgb), 0.48), rgba(var(--accent-soft-muted-rgb), 0.08) 74%, transparent 100%);
  }

  .presence-strip.benefits-section .section-inner::before {
    content: '';
    position: absolute;
    left: -40px;
    bottom: -24px;
    width: 182px;
    height: 124px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.16;
    background:
      radial-gradient(ellipse at 16% 70%, rgba(var(--accent-soft-rgb), 0.42) 0 12%, transparent 13%),
      radial-gradient(ellipse at 30% 56%, rgba(var(--accent-soft-rgb), 0.34) 0 10%, transparent 11%),
      radial-gradient(ellipse at 46% 46%, rgba(var(--accent-soft-rgb), 0.28) 0 9%, transparent 10%),
      radial-gradient(ellipse at 61% 38%, rgba(var(--accent-soft-rgb), 0.2) 0 8%, transparent 9%);
    transform: rotate(-6deg);
  }

  .presence-strip.benefits-section .presence-card {
    position: relative;
    z-index: 2;
  }

  .services.services-feature {
    background:
      radial-gradient(circle at 22% 26%, rgba(255,255,255,0.24), rgba(255,255,255,0) 48%),
      radial-gradient(circle at 82% 84%, rgba(var(--accent-soft-muted-rgb), 0.12), rgba(var(--accent-soft-muted-rgb), 0) 52%),
      linear-gradient(to bottom, #f6f2eb 0%, #f1ece4 100%);
    overflow: hidden;
  }

  .services.services-feature::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(255,255,255,0.07), rgba(255,255,255,0));
  }

  .services.services-feature .services-herb-haze-left,
  .services.services-feature .services-herb-haze-right {
    position: absolute;
    pointer-events: none;
    z-index: 2;
  }

  .services.services-feature .services-herb-haze-left {
    left: 8px;
    bottom: 26px;
    width: 360px;
    height: 220px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.32), rgba(255,255,255,0.1) 58%, transparent 82%);
  }

  .services.services-feature .services-herb-haze-right {
    right: 6px;
    bottom: 46px;
    width: 420px;
    height: 240px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.3), rgba(255,255,255,0.09) 60%, transparent 84%);
  }

  .services.services-feature .services-herb-left,
  .services.services-feature .services-herb-right {
    position: absolute;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
  }

  .services.services-feature .services-herb-left {
    bottom: 34px;
    left: 12px;
    width: 430px;
    height: 290px;
    opacity: 0.39;
    transform: rotate(-7deg);
  }

  .services.services-feature .services-herb-right {
    bottom: 56px;
    right: 8px;
    width: 470px;
    height: 310px;
    opacity: 0.35;
    transform: rotate(7deg) scaleX(-1);
  }

  .services.services-feature .services-herb-left::before,
  .services.services-feature .services-herb-right::before {
    content: '';
    position: absolute;
    inset: -22% -26%;
    background-image: url("/public/botanical-overlay.png");
    background-repeat: no-repeat;
    background-size: 144% auto;
    opacity: 0.36;
    filter: saturate(0.74);
  }

  .services.services-feature .services-herb-left::before {
    background-position: 2% 94%;
    transform: translate(-10%, 10%);
  }

  .services.services-feature .services-herb-right::before {
    background-position: 94% 92%;
    transform: translate(12%, 12%) scaleX(-1);
  }

  .services.services-feature .services-card-wash {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1100px, 92%);
    height: 312px;
    border-radius: 999px;
    pointer-events: none;
    z-index: 4;
    background:
      radial-gradient(
        ellipse at center,
        rgba(255,255,255,0.34),
        rgba(255,255,255,0.14) 60%,
        rgba(var(--accent-soft-muted-rgb), 0.1) 82%,
        transparent 100%
      );
  }

  .services.services-feature .services-lower-fade {
    position: absolute;
    inset: auto 0 72px 0;
    height: 196px;
    pointer-events: none;
    z-index: 5;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(var(--accent-soft-muted-rgb), 0.26));
  }

  .services.services-feature .services-lower-curve {
    position: absolute;
    inset: auto 0 0 0;
    height: 132px;
    pointer-events: none;
    z-index: 6;
  }

  .services.services-feature .services-lower-curve svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .services.services-feature .services-lower-curve path {
    fill: rgba(var(--accent-soft-muted-rgb), 0.42);
  }

  .services.services-feature .section-inner {
    position: relative;
    z-index: 7;
  }

  .health-focus.categories-showcase {
    background:
      radial-gradient(circle at 16% 16%, rgba(255,255,255,0.2), rgba(255,255,255,0) 54%),
      linear-gradient(to bottom, #fbf8f3 0%, #f6f2eb 100%);
  }

  .health-focus.categories-showcase::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle at 88% 90%, rgba(var(--accent-soft-muted-rgb), 0.1), rgba(var(--accent-soft-muted-rgb), 0) 48%);
  }

  .health-focus.categories-showcase .section-inner {
    position: relative;
    z-index: 3;
  }

  .services.editorial-focus {
    background:
      linear-gradient(to bottom, #f6f2eb 0%, #f3efe8 100%);
  }

  .services.editorial-focus::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
      linear-gradient(to bottom, rgba(255,255,255,0.07), rgba(255,255,255,0)),
      radial-gradient(circle at 82% 20%, rgba(var(--accent-soft-muted-rgb), 0.1), rgba(var(--accent-soft-muted-rgb), 0) 50%);
  }

  .services.editorial-focus .section-inner,
  .services.topics-section .section-inner {
    position: relative;
    z-index: 3;
  }

  .services.topics-section {
    background:
      radial-gradient(circle at 14% 86%, rgba(var(--accent-soft-muted-rgb), 0.12), rgba(var(--accent-soft-muted-rgb), 0) 48%),
      linear-gradient(to bottom, #f3efe8 0%, #f1ece4 100%);
  }

  .health-focus.categories-showcase .botanical-haze,
  .services.editorial-focus .botanical-haze,
  .services.topics-section .botanical-haze {
    position: absolute;
    pointer-events: none;
    z-index: 1;
  }

  .health-focus.categories-showcase .botanical-layer,
  .services.editorial-focus .botanical-layer,
  .services.topics-section .botanical-layer {
    position: absolute;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .health-focus.categories-showcase .botanical-layer::before,
  .services.editorial-focus .botanical-layer::before,
  .services.topics-section .botanical-layer::before {
    content: '';
    position: absolute;
    inset: -24%;
    background-image: url("/public/botanical-overlay.png");
    background-repeat: no-repeat;
    background-size: 160% auto;
    filter: saturate(0.68);
  }

  .health-focus.categories-showcase .botanical-haze-top-left,
  .services.editorial-focus .botanical-haze-top-left,
  .services.topics-section .botanical-haze-top-left {
    top: 10px;
    left: 8px;
    width: 360px;
    height: 220px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.28), rgba(255,255,255,0.08) 62%, transparent 86%);
  }

  .health-focus.categories-showcase .botanical-haze-top-right,
  .services.editorial-focus .botanical-haze-top-right,
  .services.topics-section .botanical-haze-top-right {
    top: 8px;
    right: 6px;
    width: 420px;
    height: 240px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.24), rgba(255,255,255,0.07) 64%, transparent 88%);
  }

  .health-focus.categories-showcase .botanical-top-left,
  .services.editorial-focus .botanical-top-left,
  .services.topics-section .botanical-top-left {
    top: 2px;
    left: 10px;
    width: 410px;
    height: 220px;
    opacity: 0.2;
    -webkit-mask-image: radial-gradient(ellipse at 30% 35%, rgba(0,0,0,1) 42%, rgba(0,0,0,0.7) 64%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(ellipse at 30% 35%, rgba(0,0,0,1) 42%, rgba(0,0,0,0.7) 64%, rgba(0,0,0,0) 100%);
  }

  .health-focus.categories-showcase .botanical-top-left::before,
  .services.editorial-focus .botanical-top-left::before,
  .services.topics-section .botanical-top-left::before {
    background-position: 12% 6%;
    transform: translate(-8%, -10%) scaleX(-1);
  }

  .health-focus.categories-showcase .botanical-top-right,
  .services.editorial-focus .botanical-top-right,
  .services.topics-section .botanical-top-right {
    top: 0;
    right: 10px;
    width: 440px;
    height: 230px;
    opacity: 0.22;
    -webkit-mask-image: radial-gradient(ellipse at 70% 35%, rgba(0,0,0,1) 44%, rgba(0,0,0,0.72) 66%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(ellipse at 70% 35%, rgba(0,0,0,1) 44%, rgba(0,0,0,0.72) 66%, rgba(0,0,0,0) 100%);
  }

  .health-focus.categories-showcase .botanical-top-right::before,
  .services.editorial-focus .botanical-top-right::before,
  .services.topics-section .botanical-top-right::before {
    background-position: 88% 8%;
    transform: translate(8%, -10%);
  }

  .health-focus.categories-showcase .botanical-bottom-wash,
  .services.editorial-focus .botanical-bottom-wash,
  .services.topics-section .botanical-bottom-wash {
    left: 50%;
    bottom: -34px;
    transform: translateX(-50%);
    width: min(1120px, 94%);
    height: 320px;
    opacity: 0.14;
    border-radius: 999px;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.84) 38%, rgba(0,0,0,0.5) 66%, rgba(0,0,0,0.12) 86%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.84) 38%, rgba(0,0,0,0.5) 66%, rgba(0,0,0,0.12) 86%, rgba(0,0,0,0) 100%);
  }

  .health-focus.categories-showcase .botanical-bottom-wash::before,
  .services.editorial-focus .botanical-bottom-wash::before,
  .services.topics-section .botanical-bottom-wash::before {
    inset: -34% -18%;
    background-position: 50% 100%;
    transform: translate(0, 24%);
  }

  @media (max-width: 1024px) {
    .services.services-feature .services-herb-left {
      width: 360px;
      height: 246px;
      left: 10px;
      bottom: 30px;
      opacity: 0.35;
    }
    .services.services-feature .services-herb-right {
      width: 390px;
      height: 260px;
      right: 6px;
      bottom: 52px;
      opacity: 0.32;
    }
    .services.services-feature .services-herb-haze-left {
      width: 320px;
      height: 196px;
    }
    .services.services-feature .services-herb-haze-right {
      width: 360px;
      height: 210px;
    }

    .health-focus.categories-showcase .botanical-top-left,
    .services.editorial-focus .botanical-top-left,
    .services.topics-section .botanical-top-left {
      width: 350px;
      height: 188px;
      opacity: 0.19;
    }

    .health-focus.categories-showcase .botanical-top-right,
    .services.editorial-focus .botanical-top-right,
    .services.topics-section .botanical-top-right {
      width: 380px;
      height: 196px;
      opacity: 0.2;
    }

    .health-focus.categories-showcase .botanical-haze-top-left,
    .services.editorial-focus .botanical-haze-top-left,
    .services.topics-section .botanical-haze-top-left {
      width: 300px;
      height: 180px;
    }

    .health-focus.categories-showcase .botanical-haze-top-right,
    .services.editorial-focus .botanical-haze-top-right,
    .services.topics-section .botanical-haze-top-right {
      width: 340px;
      height: 190px;
    }
  }

  @media (max-width: 768px) {
    .services.services-feature .services-herb-left {
      width: 280px;
      height: 196px;
      left: 6px;
      bottom: 18px;
      opacity: 0.32;
    }
    .services.services-feature .services-herb-right {
      width: 300px;
      height: 210px;
      right: 2px;
      bottom: 36px;
      opacity: 0.3;
    }
    .services.services-feature .services-herb-haze-left {
      width: 280px;
      height: 170px;
      left: 0;
      bottom: 10px;
    }
    .services.services-feature .services-herb-haze-right {
      width: 300px;
      height: 178px;
      right: 0;
      bottom: 30px;
    }
    .services.services-feature .services-card-wash {
      height: 248px;
      width: min(1100px, 96%);
    }
    .services.services-feature .services-lower-fade {
      inset: auto 0 72px 0;
      height: 136px;
    }

    .health-focus.categories-showcase .botanical-top-left,
    .services.editorial-focus .botanical-top-left,
    .services.topics-section .botanical-top-left {
      width: 290px;
      height: 156px;
      top: 6px;
      left: 2px;
      opacity: 0.18;
    }

    .health-focus.categories-showcase .botanical-top-right,
    .services.editorial-focus .botanical-top-right,
    .services.topics-section .botanical-top-right {
      width: 320px;
      height: 164px;
      top: 6px;
      right: 2px;
      opacity: 0.19;
    }

    .health-focus.categories-showcase .botanical-haze-top-left,
    .services.editorial-focus .botanical-haze-top-left,
    .services.topics-section .botanical-haze-top-left {
      width: 240px;
      height: 146px;
      top: 8px;
      left: 0;
    }

    .health-focus.categories-showcase .botanical-haze-top-right,
    .services.editorial-focus .botanical-haze-top-right,
    .services.topics-section .botanical-haze-top-right {
      width: 260px;
      height: 150px;
      top: 8px;
      right: 0;
    }

    .health-focus.categories-showcase .botanical-bottom-wash,
    .services.editorial-focus .botanical-bottom-wash,
    .services.topics-section .botanical-bottom-wash {
      bottom: -26px;
      height: 250px;
      opacity: 0.15;
    }
  }
