/* Bärike Rund ums Haus — Test-Homepage Design System */
:root {
  --bg: #ffffff;
  --bg-2: #f6f6f7;
  --bg-3: #0f1014;
  --card: #ffffff;
  --ink: #0f1014;
  --ink-2: #3f434a;
  --ink-3: #80858d;
  --line: #e6e7ea;
  --line-2: #d1d3d8;
  --accent: #a82029;
  --accent-ink: #861820;
  --accent-soft: #fbe9eb;
  --accent-wash: #fdf3f4;
  --ok: #1f8a3a;
  --star: #fbbc04;
  --shadow-sm: 0 1px 2px rgba(15,16,20,.05), 0 2px 6px rgba(15,16,20,.04);
  --shadow-md: 0 6px 16px rgba(15,16,20,.08), 0 2px 4px rgba(15,16,20,.04);
  --shadow-lg: 0 20px 40px rgba(15,16,20,.12), 0 6px 16px rgba(15,16,20,.06);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --sans: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body { font-family: var(--sans); color: var(--ink); background: var(--bg); font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; font-feature-settings: "ss01", "cv11"; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3 { font-family: var(--sans); margin: 0; font-weight: 700; letter-spacing: -0.025em; }
h1 { font-size: clamp(34px, 5.6vw, 56px); line-height: 1.02; letter-spacing: -0.035em; font-weight: 700; }
h2 { font-size: clamp(26px, 3.6vw, 38px); line-height: 1.08; letter-spacing: -0.03em; font-weight: 700; }
h3 { font-size: clamp(19px, 2.2vw, 24px); line-height: 1.2; letter-spacing: -0.02em; font-weight: 600; }
.eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.lead { font-size: clamp(16px, 1.8vw, 18px); color: var(--ink-2); line-height: 1.55; }
.accent-word { color: var(--accent); font-weight: 800; position: relative; white-space: nowrap; }
.accent-word::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 10px; background: var(--accent); opacity: 0.18; border-radius: 2px; z-index: -1; }

/* Topbar */
.topbar { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line); }
@media (max-width: 960px) { .topbar { position: static; } }
.topbar-inner { max-width: 1240px; margin: 0 auto; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.logo img { height: 44px; width: auto; display: block; }
.top-nav { display: flex; align-items: center; gap: 22px; }
.top-nav a { font-size: 14px; font-weight: 500; text-decoration: none; color: var(--ink-2); transition: color .15s ease; }
.top-nav a:hover { color: var(--accent); }
@media (max-width: 900px) { .top-nav { display: none; } }

.top-contact { display: flex; align-items: center; gap: 14px; }
.top-phone { font-size: 14px; font-weight: 600; color: var(--ink); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; letter-spacing: -0.01em; }
.top-phone .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(31,138,58,.18); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.55} }
@media (max-width: 640px) { .top-phone .num { display: none; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 18px; border-radius: var(--r-md); font-weight: 600; font-size: 14.5px; letter-spacing: -0.005em; transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease; cursor: pointer; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(168,32,41,.3); }
.btn-accent:hover { background: var(--accent-ink); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(168,32,41,.38); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: var(--bg-2); border-color: var(--ink-3); }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-block { width: 100%; }

/* Layout helpers */
.section { padding: 72px 20px; }
.section-tight { padding: 48px 20px; }
.container { max-width: 1240px; margin: 0 auto; }
.section-head { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 12px; }
.section-head h2 { margin-bottom: 10px; }
.section-head p { color: var(--ink-2); margin: 0; }

/* Hero (homepage) */
.hero { position: relative; min-height: 560px; padding: 96px 20px 64px; color: #fff; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.7) 100%), url('assets/baerike%20terrasse%202.webp'); background-size: cover; background-position: center 40%; z-index: -1; }
.hero-inner { max-width: 1240px; margin: 0 auto; }
.hero h1 { color: #fff; max-width: 880px; margin-bottom: 20px; }
.hero .lead { color: rgba(255,255,255,.92); max-width: 680px; margin-bottom: 32px; }
.hero .eyebrow { color: rgba(255,255,255,.85); display: block; margin-bottom: 14px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Sub-page hero (light, content-focused) */
.subhero { position: relative; padding: 56px 20px 44px; background: var(--bg-2); border-bottom: 1px solid var(--line); color: var(--ink); overflow: hidden; }
.subhero-inner { max-width: 1080px; margin: 0 auto; }
.subhero h1 { color: var(--ink); margin: 0; }
.subhero .crumbs { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--ink-3); margin-bottom: 14px; font-weight: 500; }
.subhero .crumbs a { color: inherit; text-decoration: none; }
.subhero .crumbs a:hover { color: var(--ink); }
.subhero .crumbs span { opacity: .5; }
.subhero .lead { color: var(--ink-2); max-width: 760px; margin-top: 14px; font-size: clamp(16px, 1.6vw, 17px); line-height: 1.55; }

/* Trust strip */
.trust-strip { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 20px; }
.trust-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ink-2); font-weight: 500; }
.trust-item strong { display: block; color: var(--ink); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; margin-bottom: 4px; }
.trust-item .icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--accent-soft); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.trust-item .icon svg { width: 18px; height: 18px; }
@media (max-width: 820px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
  .trust-item { font-size: 11px; gap: 10px; }
  .trust-item strong { font-size: 17px; margin-bottom: 2px; }
}

/* Leistungen-Grid (Homepage) */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.service-card { display: block; text-decoration: none; color: inherit; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; position: relative; }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.service-card-img { aspect-ratio: 4/3; background: var(--bg-2); overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; display: block; }
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 18px 20px 22px; }
.service-card-body h3 { font-size: 19px; margin-bottom: 6px; }
.service-card-body p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.5; }
.service-card-arrow { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.95); display: flex; align-items: center; justify-content: center; color: var(--accent); transition: background .2s ease, transform .2s ease; }
.service-card:hover .service-card-arrow { background: var(--accent); color: #fff; transform: translateX(2px); }

/* About / Story section */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }
.about-grid img { border-radius: var(--r-lg); width: 100%; height: 100%; max-height: 480px; object-fit: cover; }
.about-grid .copy h2 { margin-bottom: 16px; }
.about-grid .copy p { color: var(--ink-2); margin: 0 0 14px; }

/* Subpage content (model cards) */
.intro-block { max-width: 760px; margin: 0 auto 40px; }
.intro-block p { font-size: 17px; color: var(--ink-2); line-height: 1.6; margin: 0 0 14px; }

.model-card { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; padding: 36px 0; border-top: 1px solid var(--line); align-items: start; }
.model-card:first-of-type { border-top: 0; padding-top: 8px; }
@media (max-width: 800px) { .model-card { grid-template-columns: 1fr; gap: 22px; } }
.model-card .img-frame { aspect-ratio: 4/3; border-radius: var(--r-md); overflow: hidden; background: var(--bg-2); border: 1px solid var(--line); }
.model-card .img-frame img { width: 100%; height: 100%; object-fit: cover; }
.model-card .body h2 { margin-bottom: 12px; font-size: clamp(22px, 2.6vw, 28px); }
.model-card .body p { color: var(--ink-2); margin: 0 0 14px; line-height: 1.6; }
.model-card .body ul { padding-left: 18px; margin: 12px 0 0; color: var(--ink-2); }
.model-card .body ul li { margin: 6px 0; line-height: 1.5; }

/* Plain text section (e.g. Über uns) */
.prose { max-width: 760px; margin: 0 auto; color: var(--ink-2); }
.prose p { font-size: 17px; line-height: 1.65; margin: 0 0 18px; }
.prose strong { color: var(--ink); }
.prose h2 { color: var(--ink); font-size: clamp(20px, 2.4vw, 26px); margin: 36px 0 12px; letter-spacing: -0.025em; line-height: 1.25; font-weight: 700; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { color: var(--ink); font-size: clamp(17px, 2vw, 20px); margin: 28px 0 10px; letter-spacing: -0.02em; font-weight: 600; }
.prose ol, .prose ul { margin: 0 0 18px; padding-left: 24px; color: var(--ink-2); }
.prose ol li, .prose ul li { margin: 8px 0; line-height: 1.65; font-size: 17px; }
.prose-legal { max-width: 800px; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; margin-top: 18px; }
.gallery-tile { aspect-ratio: 1/1; background: var(--bg-2); border-radius: var(--r-sm); overflow: hidden; border: 1px solid var(--line); cursor: zoom-in; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-tile:hover img { transform: scale(1.06); }

.gallery-caption { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin: 24px 0 10px; font-weight: 500; }

/* Lightbox */
.lb-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; cursor: zoom-out; }
.lb-overlay.open { display: flex; }
.lb-img { max-width: 100%; max-height: 100%; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; display: flex; align-items: center; justify-content: center; }

/* CTA section */
.cta-section { background: linear-gradient(180deg, var(--bg-2), #fff); padding: 72px 20px; }
.cta-card { max-width: 720px; margin: 0 auto; background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: 48px 40px; text-align: center; box-shadow: var(--shadow-lg); }
.cta-card h2 { color: #fff; margin-bottom: 12px; }
.cta-card p { color: rgba(255,255,255,.82); margin: 0 0 24px; font-size: 17px; }
.cta-card .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Contact info block */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1080px; margin: 0 auto; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; gap: 24px; } }
.contact-block { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 28px; box-shadow: var(--shadow-sm); }
.contact-block h3 { margin-bottom: 14px; }
.contact-block p { color: var(--ink-2); margin: 0 0 6px; line-height: 1.6; }
.contact-block a { color: var(--accent); text-decoration: none; font-weight: 600; }
.contact-block a:hover { text-decoration: underline; }
.contact-block .label { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); display: block; margin-top: 14px; margin-bottom: 4px; font-weight: 500; }

/* Footer */
footer { background: var(--bg-3); color: rgba(255,255,255,.7); padding: 48px 20px 32px; }
footer .footer-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { footer .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; } }
footer .col h4 { color: #fff; font-size: 14px; margin: 0 0 14px; font-weight: 600; letter-spacing: -0.01em; }
footer .col a, footer .col p { color: rgba(255,255,255,.7); text-decoration: none; font-size: 13.5px; line-height: 1.7; display: block; margin: 0; }
footer .col a:hover { color: #fff; }
footer .col-brand p { font-size: 13.5px; line-height: 1.6; margin-top: 12px; }
footer .col-brand .logo-line { font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
footer .footer-bottom { max-width: 1240px; margin: 32px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12.5px; color: rgba(255,255,255,.5); }
footer .footer-bottom a { color: rgba(255,255,255,.7); text-decoration: none; margin-left: 14px; }
footer .footer-bottom a:hover { color: #fff; }

/* Floating CTA (mobile) */
.mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,.96); backdrop-filter: saturate(180%) blur(12px); border-top: 1px solid var(--line); padding: 12px 16px env(safe-area-inset-bottom); display: none; gap: 10px; z-index: 30; box-shadow: 0 -8px 30px rgba(15,16,20,.08); transition: opacity .28s ease, transform .28s ease; will-change: opacity, transform; }
.mobile-cta .btn { flex: 1; }
.mobile-cta.cta-hidden { opacity: 0; transform: translateY(12px); pointer-events: none; }
@media (max-width: 760px) { .mobile-cta { display: flex; } body { padding-bottom: 80px; } }

/* Utility */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Hero 2-column layout (homepage) */
.hero-2col { padding: clamp(24px, 4vw, 44px) 20px clamp(40px, 6vw, 72px); min-height: auto; }
.hero-2col .hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
@media (max-width: 960px) { .hero-2col .hero-inner { grid-template-columns: 1fr; gap: 0; } .hero-2col .hero-copy { padding: 48px 20px 40px; background-color: #0c0e14; background-image: linear-gradient(180deg, rgba(12,14,20,.55) 0%, rgba(12,14,20,.5) 50%, rgba(12,14,20,.78) 100%), url('assets/baerike%20terrasse%202.webp'); background-size: cover; background-position: center; } .hero-2col .hero-form-wrap { background: var(--bg); padding: 28px 20px 40px; } }
.hero-copy { padding-top: clamp(8px, 2vw, 32px); }
.hero-copy h1 { color: #fff; }
.hero-copy h1 .accent-word { color: #cc2a35; text-shadow: 0 1px 0 rgba(0,0,0,.45), 0 3px 8px rgba(0,0,0,.55), 0 10px 28px rgba(0,0,0,.45); }
.hero-copy h1 .accent-word::after { display: none; }
.hero-copy .lead { color: rgba(255,255,255,.9); margin-bottom: 0; }
.hero-copy .eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 6px 12px; background: rgba(255,255,255,.14); color: #fff; border-radius: 999px; backdrop-filter: blur(8px); }
.hero-copy .eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* Hero bullets (checkmarks) */
.hero-bullets { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.hero-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: rgba(255,255,255,.9); font-weight: 500; }
.hero-bullets .check { width: 20px; height: 20px; border-radius: 50%; background: var(--accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }

/* Hero rating (Bewertungssiegel) */
.hero-rating { margin-top: 28px; display: flex; align-items: center; gap: 14px; padding: 12px 16px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-sm); width: fit-content; max-width: 100%; }
.hero-rating .stars { color: #fbbc04; letter-spacing: 1px; font-size: 15px; }
.rating-text { font-size: 13px; color: var(--ink-2); font-weight: 500; }
.rating-text strong { color: var(--ink); font-weight: 700; }

/* Reference gallery (Projekte Großraum Nürnberg) */
.ref-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; height: clamp(360px, 46vw, 540px); }
@media (max-width: 780px) { .ref-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; gap: 8px; } .ref-gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/10; } .ref-gallery-item { aspect-ratio: 1; } }
.ref-gallery-item { background: var(--bg-2); border-radius: var(--r-lg); overflow: hidden; }
.ref-gallery-item:nth-child(1) { grid-row: span 2; }
.ref-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.ref-gallery-item:hover img { transform: scale(1.03); }

/* Inline CTA */
.inline-cta { margin-top: clamp(28px, 4vw, 48px); background: linear-gradient(135deg, var(--accent-wash), var(--accent-soft)); border: 1px solid rgba(168,32,41,.2); border-radius: var(--r-xl); padding: clamp(22px, 3vw, 34px) clamp(22px, 3.5vw, 40px); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; }
@media (max-width: 820px) { .inline-cta { grid-template-columns: 1fr; gap: 18px; } .inline-cta-actions .btn { width: 100%; justify-content: center; } }
.inline-cta-copy .eyebrow { color: var(--accent-ink); margin-bottom: 6px; display: inline-block; }
.inline-cta-copy h3 { font-size: clamp(19px, 2.2vw, 24px); letter-spacing: -0.025em; margin-bottom: 8px; }
.inline-cta-copy p { font-size: 15px; color: var(--ink-2); margin: 0; line-height: 1.5; max-width: 52ch; }
.inline-cta.inline-cta-dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.inline-cta.inline-cta-dark h3 { color: #fff; }
.inline-cta.inline-cta-dark p { color: rgba(255,255,255,.72); }
.inline-cta.inline-cta-dark .eyebrow { color: var(--accent); }

/* Testimonials carousel */
.testimonials { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%); }
.testimonials-track { display: flex; gap: 22px; width: max-content; animation: testi-scroll 70s linear infinite; will-change: transform; }
.testimonials:hover .testimonials-track { animation-play-state: paused; }
@keyframes testi-scroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 11px)); } }
@media (prefers-reduced-motion: reduce) { .testimonials-track { animation: none; } }
.testimonial { width: clamp(280px, 30vw, 360px); flex-shrink: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 24px; display: grid; gap: 14px; }
@media (max-width: 880px) { .testimonial { width: calc(100vw - 60px); } }
.testimonial .stars { color: var(--star); font-size: 15px; letter-spacing: 1px; }
.testimonial-quote { font-size: 16px; line-height: 1.45; color: var(--ink); font-weight: 500; }
.testimonial-foot { display: flex; align-items: center; gap: 12px; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-ink)); font-weight: 700; font-size: 13px; color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tauthor { font-size: 13px; color: var(--ink-3); line-height: 1.3; }
.tauthor strong { color: var(--ink); font-weight: 700; display: block; font-size: 14px; }

/* Google vouch */
.google-vouch { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 28px; padding: 12px 20px; background: var(--card); border: 1px solid var(--line); border-radius: 999px; width: fit-content; margin-left: auto; margin-right: auto; box-shadow: var(--shadow-sm); flex-wrap: wrap; }
.g-logo { width: 22px; height: 22px; border-radius: 50%; background: conic-gradient(from 0deg, #4285F4 0 25%, #34A853 25% 50%, #FBBC05 50% 75%, #EA4335 75% 100%); mask: radial-gradient(circle, transparent 30%, #000 31%); -webkit-mask: radial-gradient(circle, transparent 30%, #000 31%); flex-shrink: 0; }
.g-text { font-size: 14px; color: var(--ink-2); font-weight: 500; }
.g-text strong { color: var(--ink); font-weight: 700; }
.g-rating { font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.025em; }
.stars-sm { color: var(--star); font-size: 14px; letter-spacing: 1px; }

/* Standort / Area */
.area { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
@media (max-width: 820px) { .area { grid-template-columns: 1fr; gap: 28px; } }
.area-map { aspect-ratio: 4/3; border-radius: var(--r-xl); background: var(--bg); border: 1px solid var(--line); overflow: hidden; position: relative; box-shadow: var(--shadow-md); }
.area-map iframe { position: absolute; left: 0; right: 0; top: 0; bottom: -42px; width: 100%; height: calc(100% + 42px); border: 0; pointer-events: none; }
.area-map .map-overlay { position: absolute; inset: 0; pointer-events: none; }
.area-map .map-badge { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-radius: var(--r-md); padding: 10px 14px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 600; color: var(--ink); pointer-events: auto; }
.area-map .pulse-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); position: relative; flex-shrink: 0; }
.area-map .pulse-dot::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--accent); opacity: .55; animation: pulseRing 1.8s ease-out infinite; }
@keyframes pulseRing { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(1.5); opacity: 0; } }
.area-map .map-attribution { position: absolute; left: 8px; bottom: 8px; font-size: 9.5px; color: rgba(0,0,0,.55); background: rgba(255,255,255,.78); padding: 2px 6px; border-radius: 4px; pointer-events: auto; z-index: 2; backdrop-filter: blur(4px); }
.area-map .map-attribution a { color: inherit; text-decoration: none; }
.area-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 28px; }
.area-stat-val { font-size: 28px; font-weight: 800; color: var(--ink); letter-spacing: -0.025em; line-height: 1; }
.area-stat-label { font-size: 13.5px; color: var(--ink-2); margin-top: 6px; font-weight: 500; }

/* ===== Subpage content layout (model-block) ===== */
.container-narrow { max-width: 920px; margin: 0 auto; }
.section-tight { padding: 48px 20px; }
@media (max-width: 700px) { .section-tight { padding: 36px 16px; } }

.intro-block { max-width: 760px; margin: 0; color: var(--ink-2); }
.intro-block p { font-size: 17px; line-height: 1.65; margin: 0 0 14px; }
.intro-block p:last-child { margin-bottom: 0; }

.model-block { display: flex; flex-direction: column; gap: 22px; }
.model-block > h2 { margin: 0; font-size: clamp(22px, 2.6vw, 28px); color: var(--ink); }
.model-block .prose { max-width: 760px; margin: 0; color: var(--ink-2); }
.model-block .prose p { font-size: 16px; line-height: 1.65; margin: 0 0 12px; }
.model-block .prose p:last-child { margin-bottom: 0; }
.model-block .prose ul { padding-left: 20px; margin: 12px 0; }
.model-block .prose ul li { margin: 6px 0; line-height: 1.55; font-size: 15.5px; }

/* 2-col head layout when model has its own representative image */
.model-head-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 44px); align-items: start; }
@media (max-width: 800px) { .model-head-grid { grid-template-columns: 1fr; gap: 22px; } }
.model-head-text > h2 { margin: 0 0 14px; font-size: clamp(22px, 2.6vw, 28px); color: var(--ink); }
.model-head-text .prose { margin: 0; }
.model-image { aspect-ratio: 4/3; border-radius: var(--r-md); overflow: hidden; background: var(--bg-2); border: 1px solid var(--line); }
.model-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Sub-text block (e.g. Technische Informationen — bullets without images) */
.sub-text { max-width: 760px; }
.sub-text > h3 { margin: 0 0 10px; font-size: 17px; color: var(--ink); font-weight: 600; letter-spacing: -0.01em; }
.sub-text .prose { margin: 0; }

/* Gallery + Swatches blocks (margins reset, parent flex handles spacing) */
.model-block .gallery-block,
.model-block .swatches-block { margin: 0; }
.model-block .gallery-block .gallery-caption,
.model-block .swatches-block .gallery-caption { margin: 0 0 10px; }
.model-block .gallery-block .gallery,
.model-block .swatches-block .swatches-grid { margin: 0; }

/* Swatches grid: small color sample tiles */
.swatches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 92px)); gap: 8px; }
.swatches-grid .gallery-tile { aspect-ratio: 1/1; }
