    :root {
      --portal-primary: #0E9F6E;
      --portal-primary-rgb: 14 159 110;
      --portal-secondary: #0B7E58;
      --portal-accent: #f59e0b;
      --portal-primary-hover: #0B7E58;
      --portal-primary-dark: #064E3B;
      --ink: #0f172a;
      --muted: #64748b;
      --muted-light: #94a3b8;
      --soft: #f8fafc;
      --line: #e2e8f0;
      --line-soft: #edf2f7;
      --ease-spring: cubic-bezier(.22, 1, .36, 1);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      min-height: 100vh;
      margin: 0;
      color: var(--ink);
      background: #fff;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    button { cursor: pointer; }

    .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;
    }

    .container {
      width: min(100% - 48px, 1248px);
      margin-inline: auto;
    }

    .top-spacer { height: 66px; }

    .site-header {
      position: fixed;
      z-index: 50;
      inset: 0 0 auto;
      background: rgba(255, 255, 255, .98);
      box-shadow: 0 1px 0 rgba(15, 23, 42, .06);
    }

    .header-inner {
      position: relative;
      height: 66px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding-inline: 26px 24px;
    }

    .brand {
      color: var(--portal-primary);
      font-size: 20px;
      font-weight: 800;
      white-space: nowrap;
    }

    .nav {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .nav a,
    .login {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 8px 12px;
      border-radius: 8px;
      color: var(--portal-primary);
      font-size: 14px;
      font-weight: 650;
      transition: color .2s, background .2s;
    }

    .nav a:hover,
    .login:hover {
      color: var(--portal-primary);
      background: rgba(0, 0, 0, .05);
    }

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

    .header-cta,
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 0;
      color: #fff;
      background: linear-gradient(135deg, var(--portal-primary), var(--portal-primary-hover));
      box-shadow: 0 3px 12px rgb(var(--portal-primary-rgb) / .34);
      font-weight: 750;
      transition: transform .25s var(--ease-spring), box-shadow .25s;
    }

    .header-cta {
      min-height: 38px;
      padding: 8px 19px;
      border-radius: 12px;
      font-size: 14px;
    }

    .header-cta:hover,
    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgb(var(--portal-primary-rgb) / .42);
    }

    .menu-button {
      display: none;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 10px;
      color: #111827;
      background: transparent;
    }

    .company-hero {
      padding: 52px 0 42px;
      border-bottom: 1px solid var(--line-soft);
      background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    }

    .company-hero-inner {
      display: grid;
      grid-template-columns: 76px minmax(0, 1fr) auto;
      align-items: center;
      gap: 24px;
    }

    .hero-logo-wrap {
      width: 72px;
      height: 72px;
      overflow: hidden;
      border-radius: 14px;
      background: #eef6fb;
      box-shadow: 0 8px 24px rgba(15, 23, 42, .1);
    }

    .hero-logo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .company-name {
      margin: 0 0 10px;
      color: #0b1324;
      font-size: clamp(25px, 2.7vw, 34px);
      line-height: 1.13;
      font-weight: 850;
      letter-spacing: 0;
    }

    .rating-line,
    .location-line {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      font-size: 14px;
    }

    .rating-line { margin-bottom: 9px; }

    .stars {
      display: inline-flex;
      align-items: center;
      gap: 1px;
      color: var(--portal-accent);
      font-size: 19px;
      line-height: 1;
      letter-spacing: 0;
    }

    .stars.small { font-size: 16px; }
    .stars .muted-star { color: #d1d5db; }
    .score { color: var(--ink); font-weight: 750; }
    .rating-count { color: var(--muted); }

    .hero-call {
      min-width: 0;
      height: 46px;
      padding: 0 21px;
      border-radius: 11px;
      font-size: 14px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-end;
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      height: 46px;
      padding: 0 18px;
      border-radius: 11px;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--ink);
      font-size: 14px;
      font-weight: 750;
      transition: border-color .2s, background .2s, color .2s;
    }

    .btn-ghost:hover {
      border-color: rgb(var(--portal-primary-rgb) / .5);
      background: rgb(var(--portal-primary-rgb) / .06);
      color: var(--portal-primary);
    }

    .hero-status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 3px 10px;
      border-radius: 999px;
      font-size: 12.5px;
      font-weight: 750;
    }

    .hero-status .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
    .hero-status--open { color: var(--portal-primary); background: rgb(var(--portal-primary-rgb) / .12); }
    .hero-status--closed { color: #b42318; background: #fde8e6; }

    /* Lesefreundliche Typografie für den Beschreibungstext (schont die Augen). */
    .about-text {
        color: #3f4754;
        font-size: 16px;
        line-height: 1.8;
        letter-spacing: 0.01em;
        max-width: 70ch;
    }
    .about-text p { margin: 0 0 14px; }
    .about-text p:last-child { margin-bottom: 0; }
    .about-text h2,
    .about-text h3 {
        color: var(--ink);
        font-size: 18px;
        font-weight: 700;
        line-height: 1.35;
        margin: 24px 0 8px;
    }
    .about-text ul,
    .about-text ol { margin: 0 0 14px; padding-left: 22px; }
    .about-text li { margin-bottom: 6px; }
    .about-text a { color: var(--portal-primary); text-decoration: underline; text-underline-offset: 2px; }
    .about-text strong { color: var(--ink); font-weight: 700; }
    @media (max-width: 640px) {
        .about-text { font-size: 15.5px; line-height: 1.75; }
    }

    .about-citylink { margin-top: 16px; margin-bottom: 0; }
    .about-citylink a {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--portal-primary);
      font-weight: 700;
      font-size: 14px;
    }
    .about-citylink a:hover { text-decoration: underline; }

    @media (max-width: 720px) {
      .company-hero-inner {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 16px;
      }
      .hero-actions {
        grid-column: 1 / -1;
        justify-content: flex-start;
      }
      .btn-ghost, .hero-call { flex: 1; min-width: 120px; }
    }

    main { padding-bottom: 0; }

    .detail-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      align-items: start;
      gap: 32px;
      margin-top: 38px;
      padding-bottom: 64px;
    }

    .main-column {
      min-width: 0;
      display: grid;
      gap: 34px;
    }

    .main-column > section {
      min-width: 0;
      max-width: 100%;
    }

    .review-cta {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px 20px;
      border-radius: 14px;
      background: rgb(var(--portal-primary-rgb) / .06);
      border: 1px solid rgb(var(--portal-primary-rgb) / .18);
    }

    .review-cta-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      flex-shrink: 0;
      border-radius: 11px;
      color: var(--portal-primary);
      background: rgb(var(--portal-primary-rgb) / .12);
    }

    .review-cta-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
    .review-cta-text strong { color: var(--ink); font-size: 15px; font-weight: 800; }
    .review-cta-text span { color: var(--muted); font-size: 13px; }
    .review-cta .btn-primary { flex-shrink: 0; height: 44px; padding: 0 18px; border-radius: 11px; font-size: 14px; }

    .suggest-edit-line {
      display: flex;
      align-items: center;
      gap: 6px;
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 13px;
    }
    .suggest-edit-line a { color: var(--portal-primary); font-weight: 700; }
    .suggest-edit-line a:hover { text-decoration: underline; }

    .section-heading {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .section-heading h2 {
      margin: 0;
      color: var(--ink);
      font-size: 18px;
      line-height: 1.2;
      font-weight: 800;
    }

    .section-heading .count {
      color: var(--muted-light);
      font-size: 14px;
      font-weight: 500;
    }

    .heading-rule {
      width: 34px;
      height: 3px;
      border-radius: 99px;
      background: rgb(var(--portal-primary-rgb) / .62);
    }

    /* Galeri kaydırma okları (masaüstü, hover'da görünür). */
    .gallery-wrap { position: relative; }
    .gallery-scroll {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
      color: var(--ink);
      box-shadow: 0 4px 14px rgba(16, 24, 40, .18);
      cursor: pointer;
      opacity: 0;
      transition: opacity .2s ease, background .2s ease, color .2s ease;
    }
    .gallery-wrap:hover .gallery-scroll { opacity: 1; }
    .gallery-scroll:hover {
      background: var(--portal-primary);
      color: #fff;
      border-color: var(--portal-primary);
    }
    .gallery-scroll[hidden] { display: none; }
    .gallery-scroll-prev { left: 8px; }
    .gallery-scroll-next { right: 8px; }
    /* Dokunmatik/mobil-tablet: parmakla kaydırma var, okları gizle. */
    @media (max-width: 1023px) {
      .gallery-scroll { display: none !important; }
    }

    /* Profesyonel yatay kaydırılan galeri (tek sıra, snap scroll). */
    .gallery-strip {
      display: flex;
      gap: 12px;
      width: 100%;
      max-width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      padding-bottom: 4px;
    }
    .gallery-strip::-webkit-scrollbar { display: none; }

    .gallery-item {
      position: relative;
      display: block;
      flex: 0 0 240px;
      width: 240px;
      aspect-ratio: 4 / 3;
      scroll-snap-align: start;
      padding: 0;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #e5edf4;
      cursor: pointer;
      box-shadow: 0 1px 3px rgba(16, 24, 40, .07);
      transition: box-shadow .25s ease, transform .25s ease;
    }

    .gallery-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 26px -10px rgba(16, 24, 40, .28);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform .5s var(--ease-spring);
    }

    .gallery-item:hover img { transform: scale(1.07); }

    .gallery-item span {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      color: #fff;
      opacity: 0;
      background: linear-gradient(to top, rgba(2, 62, 138, .45), rgba(2, 62, 138, .12));
      transition: opacity .25s ease;
    }

    .gallery-item span i,
    .gallery-item span svg {
      width: 26px;
      height: 26px;
      transform: scale(.8);
      transition: transform .25s ease;
    }

    .gallery-item:hover span { opacity: 1; }
    .gallery-item:hover span i,
    .gallery-item:hover span svg { transform: scale(1); }

    .review-summary {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-bottom: 20px;
      padding: 16px 18px;
      border: 1px solid var(--line);
      border-radius: 13px;
      background: var(--soft);
    }

    .review-score {
      width: 86px;
      text-align: center;
      flex: 0 0 auto;
    }

    .review-score strong {
      display: block;
      margin-bottom: 6px;
      font-size: 30px;
      line-height: 1;
      color: var(--ink);
    }

    .review-score span {
      display: block;
      margin-top: 6px;
      color: var(--muted-light);
      font-size: 12px;
    }

    .divider {
      width: 1px;
      height: 50px;
      background: var(--line);
    }

    .outline-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 40px;
      padding: 9px 16px;
      border: 1px solid rgb(var(--portal-primary-rgb) / .45);
      border-radius: 9px;
      color: var(--portal-primary);
      background: #fff;
      font-size: 14px;
      font-weight: 750;
      transition: background .2s, border-color .2s;
    }

    .outline-button:hover {
      background: rgb(var(--portal-primary-rgb) / .08);
      border-color: var(--portal-primary);
    }

    .review-list {
      display: grid;
      gap: 16px;
    }

    .review-card {
      padding: 17px 18px 18px;
      border: 1px solid var(--line);
      border-radius: 13px;
      background: #fff;
      box-shadow: 0 8px 18px rgba(15, 23, 42, .035);
      overflow: hidden;
    }

    .review-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 12px;
    }

    .review-person {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .avatar {
      width: 36px;
      height: 36px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 999px;
      color: var(--portal-primary);
      background: rgb(var(--portal-primary-rgb) / .1);
      font-size: 12px;
      font-weight: 800;
    }

    .review-person strong {
      display: block;
      color: var(--ink);
      font-size: 14px;
      line-height: 1.25;
    }

    .review-person time {
      display: block;
      margin-top: 2px;
      color: var(--muted-light);
      font-size: 12px;
    }

    .review-card p {
      margin: 0 0 0 48px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.72;
      overflow-wrap: anywhere;
    }

    .review-form-wrap {
      margin-top: 22px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: var(--soft);
      scroll-margin-top: 96px;
    }

    .review-form-wrap h3 {
      margin: 0 0 6px;
      font-size: 18px;
      font-weight: 700;
      color: var(--ink);
    }

    .review-form-hint {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 14px;
    }

    .review-form-alert {
      margin-bottom: 14px;
      padding: 12px 14px;
      border-radius: 10px;
      font-size: 14px;
      line-height: 1.5;
    }

    .review-form-alert.success {
      color: #065f46;
      background: #d1fae5;
      border: 1px solid #6ee7b7;
    }

    .review-form-alert.error {
      color: #991b1b;
      background: #fee2e2;
      border: 1px solid #fca5a5;
    }

    .review-form {
      display: grid;
      gap: 14px;
    }

    .review-field {
      display: grid;
      gap: 6px;
    }

    .review-field label {
      font-size: 13px;
      font-weight: 600;
      color: var(--ink);
    }

    .review-field .req {
      color: #dc2626;
    }

    .review-field input,
    .review-field textarea {
      width: 100%;
      padding: 11px 13px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: #fff;
      color: var(--ink);
      font-size: 14px;
      transition: border-color .15s, box-shadow .15s;
    }

    .review-field input:focus,
    .review-field textarea:focus {
      outline: 0;
      border-color: var(--portal-primary);
      box-shadow: 0 0 0 3px rgb(var(--portal-primary-rgb) / .15);
    }

    .review-field textarea {
      resize: vertical;
      min-height: 96px;
      font-family: inherit;
    }

    .review-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .rating-input {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .rating-label {
      margin-left: 12px;
      font-size: 14px;
      font-weight: 750;
      color: var(--portal-accent);
      min-width: 110px;
    }

    .rating-star {
      padding: 4px 6px;
      border: 0;
      background: transparent;
      color: #d1d5db;
      font-size: 30px;
      line-height: 1;
      cursor: pointer;
      transition: color .12s, transform .12s;
    }

    .rating-star.is-active { color: #f59e0b; }
    .rating-star:hover { transform: scale(1.08); }

    .review-captcha {
      margin-top: 4px;
    }

    .review-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 6px;
    }

    @media (max-width: 640px) {
      .review-row { grid-template-columns: 1fr; }
      .review-form-wrap { padding: 18px; }
    }

    .sidebar {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 24px;
      min-width: 0;
    }

    .sidebar-card {
      padding: 21px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 10px 24px rgba(15, 23, 42, .045);
    }

    .sidebar-card.is-highlight { animation: cardPulse 1.6s ease; }
    @keyframes cardPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgb(var(--portal-primary-rgb) / 0); }
      18% { box-shadow: 0 0 0 4px rgb(var(--portal-primary-rgb) / .4); }
    }

    /* Sade, profesyonel kart: beyaz zemin, nötr çerçeve; renk yalnızca ikon + butonda. */
    .claim-card {
      border: 1px solid var(--line);
      background: #fff;
      transition: box-shadow .25s ease, border-color .25s ease;
    }
    .claim-card:hover {
      border-color: rgb(var(--portal-primary-rgb) / .35);
      box-shadow: 0 14px 30px -16px rgba(15, 23, 42, .22);
    }

    .claim-layout {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .claim-icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 12px;
      color: var(--portal-primary);
      background: rgb(var(--portal-primary-rgb) / .10);
    }

    .sidebar-card h3 {
      margin: 0 0 14px;
      color: var(--ink);
      font-size: 18px;
      line-height: 1.25;
      font-weight: 750;
    }

    .claim-card h3 {
      margin-bottom: 5px;
      font-size: 16px;
      font-weight: 820;
    }

    .claim-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    /* Claim-Buton: identisch zum "Jetzt anrufen"-Button (.contact-actions .btn-primary). */
    .claim-card .btn-primary {
      width: 100%;
      min-height: 43px;
      margin-top: 14px;
      border-radius: 9px;
      font-size: 14px;
    }

    .contact-list {
      display: grid;
      gap: 15px;
      margin-bottom: 17px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      min-width: 0;
      color: rgba(15, 23, 42, .7);
      font-size: 14px;
      line-height: 1.45;
    }

    .contact-item svg {
      flex: 0 0 auto;
      color: rgba(15, 23, 42, .36);
      margin-top: 1px;
    }

    .contact-item a,
    .contact-item span,
    .contact-item > div {
      min-width: 0;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .contact-actions {
      padding-top: 15px;
      border-top: 1px solid var(--line);
    }

    .contact-actions .btn-primary {
      width: 100%;
      min-height: 43px;
      border-radius: 9px;
      font-size: 14px;
    }

    /* Öffnungszeiten + Kontakt konumu: mobil/tablet (<=1023) ana içerikte,
       masaüstü (>=1024) sidebar'da. */
    .hours-side,
    .kontakt-side,
    .suggest-side { display: none; }
    @media (min-width: 1024px) {
      .hours-main,
      .kontakt-main,
      .suggest-main { display: none; }
      .hours-side,
      .kontakt-side,
      .suggest-side { display: block; }
    }

    .hours-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 13px;
    }

    .hours-head h3 { margin: 0; }

    .status {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: #ef4444;
      font-size: 12px;
      font-weight: 750;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #ef4444;
      box-shadow: 0 0 0 4px rgba(239, 68, 68, .12);
    }

    .hours-list {
      display: grid;
      gap: 2px;
    }

    .hours-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 8px 9px;
      border-radius: 7px;
      color: rgba(15, 23, 42, .72);
      font-size: 14px;
    }

    .hours-row.today {
      color: var(--ink);
      background: rgb(var(--portal-primary-rgb) / .06);
      font-weight: 750;
    }

    .map-card {
      height: 240px;
      padding: 0;
      overflow: hidden;
      border-radius: 14px;
    }

    .map-card iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    /* Standort & Anfahrt section (main column) */
    .location-card {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: #fff;
    }

    .location-map {
      height: 340px;
    }

    .location-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .location-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      padding: 16px 18px;
      border-top: 1px solid var(--line);
    }

    .location-addr {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--ink);
      font-size: 14.5px;
      font-weight: 600;
    }

    .location-addr svg { color: var(--portal-primary); flex-shrink: 0; }

    .location-bar .btn-primary {
      flex-shrink: 0;
      height: 44px;
      padding: 0 20px;
      border-radius: 11px;
      font-size: 14px;
    }

    @media (max-width: 600px) {
      .location-map { height: 240px; }
      .location-bar { flex-direction: column; align-items: stretch; }
      .location-bar .btn-primary { justify-content: center; }
    }

    .footer-newsletter {
      padding: 41px 0;
      background: var(--portal-primary);
    }

    .footer-newsletter-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .footer-newsletter h3 {
      margin: 0 0 9px;
      color: #fff;
      font-size: 21px;
      line-height: 1.2;
      font-weight: 800;
    }

    .footer-newsletter p {
      margin: 0;
      color: rgba(255, 255, 255, .74);
      font-size: 15px;
    }

    .newsletter-form {
      display: flex;
      align-items: center;
      gap: 13px;
      width: min(100%, 575px);
    }

    .newsletter-form input {
      flex: 1;
      min-width: 0;
      height: 52px;
      padding: 0 26px;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .28);
      border-radius: 12px;
      background: rgba(255, 255, 255, .18);
      outline: 0;
    }

    .newsletter-form input::placeholder { color: rgba(255, 255, 255, .62); }

    .newsletter-form button {
      height: 52px;
      padding: 0 31px;
      border: 0;
      border-radius: 12px;
      color: var(--portal-primary);
      background: #fff;
      font-weight: 800;
      box-shadow: 0 7px 18px rgba(15, 23, 42, .12);
    }

    .footer-main {
      padding: 76px 0 68px;
      background: #111827;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr 1fr 1fr 1fr;
      gap: 88px;
    }

    .footer-main h4 {
      margin: 0 0 27px;
      color: #fff;
      font-size: 17px;
      letter-spacing: .03em;
      text-transform: uppercase;
    }

    .footer-main ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 23px;
    }

    .footer-main a,
    .footer-main button {
      color: #9fb1ca;
      font-size: 16px;
      border: 0;
      background: transparent;
      padding: 0;
      text-align: left;
    }

    .footer-main a:hover,
    .footer-main button:hover { color: #fff; }

    .footer-bottom {
      padding: 25px 0;
      background: #050a16;
      color: #526179;
      font-size: 14px;
    }

    .footer-bottom-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .heart { color: #f87171; }

    /* Cookie banner styles live solely in public/css/site-footer.css. */

    .lightbox {
      position: fixed;
      z-index: 120;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 36px;
      background: rgba(15, 23, 42, .88);
    }

    .lightbox.open { display: flex; }

    .lightbox img {
      max-width: min(100%, 1120px);
      max-height: 86vh;
      object-fit: contain;
      border-radius: 12px;
      box-shadow: 0 22px 70px rgba(0, 0, 0, .38);
    }

    .lightbox-close {
      position: fixed;
      top: 22px;
      right: 22px;
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border: 0;
      border-radius: 999px;
      color: #fff;
      background: rgba(255, 255, 255, .16);
      cursor: pointer;
    }
    .lightbox-close:hover { background: rgba(255, 255, 255, .3); }

    /* Lightbox sağ/sol gezinme okları */
    .lightbox-nav {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border: 0;
      border-radius: 999px;
      color: #fff;
      background: rgba(255, 255, 255, .16);
      cursor: pointer;
      transition: background .2s, transform .2s;
      z-index: 2;
    }
    .lightbox-nav:hover { background: rgba(255, 255, 255, .32); }
    .lightbox-prev { left: 18px; }
    .lightbox-next { right: 18px; }
    .lightbox-prev:hover { transform: translateY(-50%) translateX(-2px); }
    .lightbox-next:hover { transform: translateY(-50%) translateX(2px); }

    @media (max-width: 640px) {
      .lightbox-nav { width: 44px; height: 44px; }
      .lightbox-prev { left: 8px; }
      .lightbox-next { right: 8px; }
    }

    @media (max-width: 1023px) {
      .container { width: min(100% - 32px, 760px); }
      .nav,
      .header-actions { display: none; }
      .menu-button { display: inline-flex; }
      .company-hero { padding: 22px 0 26px; }
      .company-hero-inner {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 13px;
      }
      .hero-logo-wrap {
        width: 54px;
        height: 54px;
        border-radius: 11px;
      }
      .company-name {
        margin-bottom: 7px;
        font-size: 20px;
        line-height: 1.18;
      }
      /* Hero-Buttons (Anrufen/Website) untereinander, gleich breit & gleich hoch -> kein Versatz. */
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
      }
      .hero-call,
      .btn-ghost {
        flex: none;
        width: 100%;
        height: 44px;
        margin-top: 0;
        min-width: 0;
      }
      .rating-line,
      .location-line { font-size: 12px; }
      .stars { font-size: 15px; }
      .detail-layout {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 21px;
        padding-bottom: 42px;
      }
      .main-column { gap: 24px; }
      .review-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
      .review-cta .btn-primary { width: 100%; justify-content: center; }
      .gallery-strip { gap: 10px; }
      .gallery-item {
        flex-basis: 78%;
        width: 78%;
        border-radius: 12px;
      }
      .review-summary {
        align-items: stretch;
        gap: 14px;
        padding: 13px;
      }
      .review-score {
        width: auto;
        text-align: left;
      }
      .review-score strong { font-size: 24px; }
      .divider { display: none; }
      .review-card { padding: 14px; }
      .review-head {
        align-items: flex-start;
        gap: 10px;
      }
      .review-card p {
        margin-left: 0;
        font-size: 13px;
        line-height: 1.6;
      }
      .sidebar { gap: 18px; }
      .footer-newsletter { padding: 28px 0; }
      .footer-newsletter-inner {
        align-items: stretch;
        text-align: center;
        flex-direction: column;
      }
      .newsletter-form {
        width: 100%;
        flex-direction: column;
      }
      .newsletter-form input,
      .newsletter-form button { width: 100%; }
      .footer-main { padding: 42px 0; }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .footer-main h4 { margin-bottom: 15px; }
      .footer-main ul { gap: 13px; }
      .footer-main a,
      .footer-main button { font-size: 14px; }
      .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width: 520px) {
      .top-spacer,
      .header-inner { height: 54px; }
      .header-inner { padding-inline: 12px; }
      .brand { font-size: 13px; }
      .container { width: min(100% - 20px, 431px); }
      .company-hero { padding-top: 17px; }
      .review-summary {
        flex-direction: column;
      }
      .outline-button { width: 100%; }
      .sidebar-card { padding: 16px; }
      .map-card { height: 220px; }
      .lightbox { padding: 14px; }
    }

    /* ============================================================
       Sticky Anfrage Card (clinic detail sidebar conversion form)
       ============================================================ */
    .anfrage-card {
      position: sticky;
      top: 90px;
      padding: 24px;
      border: 1px solid rgb(var(--portal-primary-rgb) / .22);
      background:
        linear-gradient(180deg, #ffffff 0%, rgb(var(--portal-primary-rgb) / .035) 100%);
      box-shadow:
        0 12px 32px rgba(15, 23, 42, .07),
        0 2px 6px rgba(15, 23, 42, .04);
      z-index: 5;
    }

    .anfrage-card .anfrage-head {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 18px;
    }

    .anfrage-card .anfrage-head-icon {
      width: 44px;
      height: 44px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 12px;
      color: #fff;
      background: linear-gradient(135deg, var(--portal-primary), var(--portal-primary-dark));
      box-shadow: 0 6px 14px rgb(var(--portal-primary-rgb) / .28);
    }

    .anfrage-card .anfrage-head h3 {
      margin: 0 0 4px;
      font-size: 17px;
      font-weight: 800;
      letter-spacing: -0.01em;
    }

    .anfrage-card .anfrage-head p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .anfrage-form {
      display: grid;
      gap: 13px;
    }

    .anfrage-form .anfrage-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .anfrage-form .anfrage-field {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .anfrage-form label {
      color: rgba(15, 23, 42, .78);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.01em;
    }

    .anfrage-form label .req {
      color: #dc2626;
      margin-left: 2px;
    }

    .anfrage-form input[type="text"],
    .anfrage-form input[type="email"],
    .anfrage-form input[type="tel"],
    .anfrage-form input[type="date"],
    .anfrage-form input[type="number"],
    .anfrage-form select,
    .anfrage-form textarea {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid var(--line);
      border-radius: 9px;
      background: #fff;
      color: var(--ink);
      font: inherit;
      font-size: 14px;
      line-height: 1.4;
      transition: border-color .15s ease, box-shadow .15s ease;
    }

    .anfrage-form select {
      appearance: none;
      background-image: linear-gradient(45deg, transparent 50%, rgba(15,23,42,.5) 50%),
                        linear-gradient(135deg, rgba(15,23,42,.5) 50%, transparent 50%);
      background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
      background-size: 5px 5px;
      background-repeat: no-repeat;
      padding-right: 32px;
    }

    .anfrage-form textarea {
      min-height: 96px;
      resize: vertical;
    }

    .anfrage-form input:focus,
    .anfrage-form select:focus,
    .anfrage-form textarea:focus {
      outline: none;
      border-color: var(--portal-primary);
      box-shadow: 0 0 0 3px rgb(var(--portal-primary-rgb) / .15);
    }

    .anfrage-form .field-error {
      color: #dc2626;
      font-size: 11.5px;
      line-height: 1.35;
    }

    .anfrage-form .input-error {
      border-color: #dc2626 !important;
      box-shadow: 0 0 0 3px rgba(220, 38, 38, .12) !important;
    }

    .anfrage-form .anfrage-captcha {
      padding: 10px 12px;
      border: 1px dashed var(--line);
      border-radius: 9px;
      background: rgb(var(--portal-primary-rgb) / .04);
    }

    .anfrage-form .anfrage-captcha .captcha-container {
      margin: 0 !important;
    }

    .anfrage-form .anfrage-captcha .form-control {
      max-width: 90px;
      padding: 7px 10px;
      border: 1px solid var(--line);
      border-radius: 7px;
      font-size: 14px;
    }

    .anfrage-form .dsgvo-row {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      padding: 10px 12px;
      border: 1px solid var(--line);
      border-radius: 9px;
      background: rgba(15, 23, 42, .02);
    }

    .anfrage-form .dsgvo-row input[type="checkbox"] {
      width: 16px;
      height: 16px;
      margin-top: 2px;
      flex: 0 0 auto;
      accent-color: var(--portal-primary);
      cursor: pointer;
    }

    .anfrage-form .dsgvo-row label {
      margin: 0;
      color: rgba(15, 23, 42, .72);
      font-size: 11.5px;
      font-weight: 400;
      line-height: 1.45;
      cursor: pointer;
    }

    .anfrage-form .dsgvo-row a {
      color: var(--portal-primary);
      text-decoration: underline;
    }

    .anfrage-form .anfrage-submit {
      width: 100%;
      min-height: 46px;
      padding: 12px 18px;
      border: none;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--portal-primary), var(--portal-primary-dark));
      color: #fff;
      font-size: 14.5px;
      font-weight: 700;
      letter-spacing: 0.01em;
      cursor: pointer;
      transition: transform .12s ease, box-shadow .15s ease, opacity .15s ease;
      box-shadow: 0 8px 18px rgb(var(--portal-primary-rgb) / .28);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .anfrage-form .anfrage-submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 22px rgb(var(--portal-primary-rgb) / .35);
    }

    .anfrage-form .anfrage-submit:active {
      transform: translateY(0);
    }

    .anfrage-form .anfrage-submit[disabled] {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
    }

    .anfrage-form .anfrage-trust {
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--muted);
      font-size: 11.5px;
      line-height: 1.3;
      justify-content: center;
    }

    .anfrage-form .anfrage-trust svg {
      color: #10b981;
      flex: 0 0 auto;
    }

    .anfrage-alert {
      padding: 12px 14px;
      margin-bottom: 14px;
      border-radius: 10px;
      font-size: 13px;
      line-height: 1.45;
      display: flex;
      align-items: flex-start;
      gap: 9px;
    }

    .anfrage-alert.success {
      color: #065f46;
      background: rgba(16, 185, 129, .08);
      border: 1px solid rgba(16, 185, 129, .25);
    }

    .anfrage-alert.error {
      color: #991b1b;
      background: rgba(220, 38, 38, .07);
      border: 1px solid rgba(220, 38, 38, .25);
    }

    .anfrage-alert ul {
      margin: 4px 0 0;
      padding-left: 16px;
    }

    @media (max-width: 960px) {
      .anfrage-card {
        position: static;
        top: auto;
      }
    }

    @media (max-width: 520px) {
      .anfrage-card { padding: 18px; }
      .anfrage-form .anfrage-row { grid-template-columns: 1fr; }
    }