/* ============================================================
   GLÜCKLICHE ZUKUNFT — EXTRAS CSS
   New styles for the 10 corrections (May 2026)
   Loaded after style.css so it can override safely.
   ============================================================ */

/* ========== POINT 8: Mobile About Image Cut-off Fix ========== */

/* Desktop: Keep cover but anchor focal point to upper third (faces) */
.about-images .img-frame img {
  object-position: center 25%;
}

/* Mobile: Show full image without cropping */
@media (max-width: 768px) {
  .about-images .img-frame {
    height: auto !important;
    min-height: 280px;
    max-height: 480px;
  }
  .about-images .img-frame img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: var(--off-white, #F8F6F1);
  }
}

/* ========== POINT 7: Social Links (unified) ========== */

.social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
  font-size: 0.85rem;
  font-weight: 500;
}
.social-link:hover { transform: translateY(-2px); }
.social-link__icon { display: inline-flex; align-items: center; }

/* Hover colours per platform */
.social-link--instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
.social-link--facebook:hover  { background:#1877F2; color:#fff; }
.social-link--linkedin:hover  { background:#0A66C2; color:#fff; }
.social-link--youtube:hover   { background:#FF0000; color:#fff; }
.social-link--whatsapp:hover  { background:#25D366; color:#fff; }
.social-link--twitter:hover   { background:#000;    color:#fff; }
.social-link--tiktok:hover    { background:#000;    color:#fff; }

/* Header variant: subtle on dark top-bar */
.social-links--header {
  gap: 6px;
}
.social-links--header .social-link {
  padding: 4px 10px;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

/* Footer variant: bigger pills */
.social-links--footer {
  margin-top: 16px;
}
/* IMPORTANT: override the legacy `.footer-social a { width:38px; height:38px }`
   rule in style.css that forces the link into a fixed square and makes the
   "Instagram" text overflow the background. Higher specificity wins. */
.footer-social .social-links--footer .social-link,
.social-links--footer .social-link {
  width: auto;
  height: auto;
  padding: 8px 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
}
/* When in icon-only mode, make it a neat square that still hugs the icon */
.footer-social .social-links--footer[data-mode="icon_only"] .social-link,
.social-links--footer[data-mode="icon_only"] .social-link {
  width: auto;
  height: auto;
  padding: 9px;
  justify-content: center;
}

/* Icon-only display mode */
.social-links[data-mode="icon_only"] .social-link__label {
  display: none;
}
.social-links[data-mode="icon_only"] .social-link {
  padding: 9px;            /* square-ish pill that hugs the icon */
  justify-content: center;
  line-height: 0;          /* no extra height from text node */
}
/* If a label is shown, the background must always wrap the whole text */
.social-link {
  width: auto;
  white-space: nowrap;
}

/* ========== Emergency Nav Link in Header ========== */

.nav-emergency {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--error, #C62828) !important;
  font-weight: 600;
}
.nav-emergency::after { background: var(--error, #C62828) !important; }
.nav-emergency:hover { color: #b71c1c !important; }

/* ========== Click-to-Call / Click-to-Email Links ========== */
/* :where() gives these ZERO specificity so any component class
   (phone-link, quick-ref, etc.) reliably overrides them */
:where(a[href^="tel:"], a[href^="mailto:"]) {
  color: inherit;
  transition: color 0.25s ease;
}
:where(a[href^="tel:"]:hover, a[href^="mailto:"]:hover) {
  color: var(--gold-400, #C9A23C);
}

/* Top bar — keep them looking same as text but clickable */
.top-bar a[href^="tel:"],
.top-bar a[href^="mailto:"] {
  color: inherit;
}
.top-bar a[href^="mailto:"]:hover,
.top-bar a[href^="tel:"]:hover {
  color: var(--gold-400, #C9A23C);
}

/* ========== POINT 3: Star Ratings ========== */

.testimonial-stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 18px;
  align-items: center;
}
.testimonial-stars .star {
  display: inline-flex;
  line-height: 0;
}
.testimonial-stars .star.filled {
  color: var(--gold-400, #C9A23C);
}
.testimonial-stars .star.empty {
  color: rgba(0, 0, 0, 0.15);
}

/* ========== POINT 5: Stats Counter (no longer stuck at 0) ========== */
/* The visual styling is in style.css; counter behaviour is in main.js */

/* ========== POINT 4: Certificate Slider ========== */

.certificate-section {
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 80px);
  background: var(--off-white, #F8F6F1);
  overflow: hidden;
}

/* Partner slider — white bg to alternate visually with the cream certificate section */
.partner-section {
  background: var(--card-bg, #FFFFFF);
}

.cert-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 50px;
}
.cert-header h2 {
  margin-bottom: 12px;
}
.cert-header p {
  color: var(--gray-600, #616161);
  margin: 0 auto;
}

.cert-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  margin-top: 40px;
}

.cert-track {
  display: flex;
  gap: 60px;
  width: max-content;
  align-items: center;
  animation: cert-scroll 40s linear infinite;
  will-change: transform;
}

.cert-marquee:hover .cert-track {
  animation-play-state: paused;
}

@keyframes cert-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.cert-item {
  flex: 0 0 auto;
  width: 170px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.cert-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%) opacity(1);
  transition: filter 0.4s ease, transform 0.3s ease;
}
.cert-item:hover img {
  filter: grayscale(100%) opacity(1);
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .cert-track { animation: none; }
  .cert-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}

@media (max-width: 1024px) {
  .cert-track { gap: 40px; }
  .cert-item { width: 140px; height: 110px; }
}
@media (max-width: 640px) {
  .certificate-section { padding: 50px 0; }
  .cert-track { gap: 32px; animation-duration: 30s; }
  .cert-item { width: 110px; height: 90px; }
}

/* ========== POINT 6: Notfallhilfe (Emergency Help) Page ========== */

.emergency-hero {
  background: linear-gradient(135deg, #C0392B 0%, #8B0000 100%);
  color: #fff;
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 90px);
  text-align: center;
  position: relative;
}
.emergency-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin: 18px 0 16px;
}
.emergency-hero .lead {
  max-width: 700px;
  margin: 0 auto 36px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  opacity: 0.95;
}
.emergency-hero__content { max-width: 800px; margin: 0 auto; padding: 0 20px; }

.emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.emergency-pulse {
  width: 10px;
  height: 10px;
  background: var(--gold-300, #FFD700);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}

.btn-emergency {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold-300, #FFD700);
  color: #8B0000;
  padding: 18px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-emergency:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  color: #8B0000;
}

/* Steps */
.emergency-steps { padding: clamp(60px, 8vw, 100px) 0; background: var(--white, #fff); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 50px auto 0;
}
.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--off-white, #F8F6F1);
  border-radius: 12px;
  border-top: 4px solid var(--gold-400, #C9A23C);
}
.step-number {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--navy-800, #152D4A);
  color: var(--gold-300, #FFD700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { margin: 0 auto; max-width: 100%; }

/* Categories */
.emergency-categories {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--off-white, #F8F6F1);
}
.emergency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.emergency-card {
  background: var(--white, #fff);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(212, 179, 92, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.emergency-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}
.emergency-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.emergency-card__icon {
  font-size: 2.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Point 3: Image-based emergency icon (replaces emoji when uploaded) */
.emergency-card__icon-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
}
.emergency-card__header h3 {
  margin: 0 0 4px;
  font-size: 1.25rem;
}
.badge-24-7 {
  display: inline-block;
  background: #28A745;
  color: #fff;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.emergency-card__desc {
  color: var(--gray-600, #616161);
  margin: 0 0 18px;
  line-height: 1.7;
  font-size: 0.95rem;
}
.emergency-card__phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.2s ease;
}
/* Point 2 FIX: explicit colors with high specificity so they win over
   the global a[href^="tel:"] { color: inherit } rule */
.phone-link.phone-link--primary,
.phone-link.phone-link--primary:hover {
  background: linear-gradient(135deg, var(--navy-800, #152D4A) 0%, var(--navy-600, #234B74) 100%);
  color: #ffffff;
}
.phone-link.phone-link--secondary,
.phone-link.phone-link--secondary:hover {
  background: var(--gold-100, #F2E6C8);
  color: var(--navy-900, #0F2137);
}
.phone-link--primary .phone-info small { color: rgba(255,255,255,0.85); }
.phone-link--primary .phone-info strong { color: #ffffff; }
.phone-link--secondary .phone-info small { color: var(--navy-700, #1B3A5C); }
.phone-link--secondary .phone-info strong { color: var(--navy-900, #0F2137); }
.phone-link:hover { transform: translateX(4px); }
.phone-link__icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-link--primary .phone-link__icon { color: #ffffff; }
.phone-link--secondary .phone-link__icon {
  background: rgba(0, 0, 0, 0.08);
  color: var(--navy-900, #0F2137);
}
.phone-info {
  display: flex;
  flex-direction: column;
}
.phone-info small {
  font-size: 0.72rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.phone-info strong {
  font-size: 1rem;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.emergency-card__instructions {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}
.emergency-card__instructions summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--gold-600, #9A7520);
  user-select: none;
  font-size: 0.9rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.emergency-card__instructions summary::before {
  content: '+';
  font-size: 1.2rem;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 162, 60, 0.15);
}
.emergency-card__instructions[open] summary::before { content: '−'; }
.instructions-body {
  margin-top: 12px;
  padding: 14px;
  background: var(--off-white, #F8F6F1);
  border-radius: 8px;
  color: var(--gray-600, #616161);
  line-height: 1.7;
  font-size: 0.92rem;
}

/* Quick Reference */
.emergency-quick-ref {
  padding: clamp(50px, 7vw, 80px) 0;
  background: var(--navy-900, #0F2137);
  color: #fff;
}
.emergency-quick-ref h2 {
  text-align: center;
  margin-bottom: 36px;
  color: #fff;
}
.quick-ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}
.quick-ref {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.quick-ref:hover {
  background: var(--gold-400, #C9A23C);
  color: var(--navy-900, #0F2137);
  transform: translateY(-3px);
}
.quick-ref__number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
}
.quick-ref__label {
  font-size: 0.92rem;
  text-align: center;
  opacity: 0.95;
}

@media (max-width: 640px) {
  .emergency-hero { padding: 70px 0 50px; }
  .btn-emergency { padding: 14px 26px; font-size: 0.95rem; }
  .quick-ref__number { font-size: 1.6rem; }
  .emergency-grid { grid-template-columns: 1fr; }
}

/* ========== Helper: Bio with line breaks ========== */

.team-bio {
  white-space: normal;
  line-height: 1.7;
}

/* ========== Visible Focus States (Accessibility) ========== */

:focus-visible {
  outline: 3px solid var(--gold-400, #C9A23C);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   ANIMATIONS & EFFECTS (admin-toggleable)
   1) Branded preloader (Euro + "money will grow")
   2) Site-wide falling money
   ============================================================ */

/* ---------- 1. PRELOADER ---------- */
.gz-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-900,#0F2137) 0%, var(--navy-800,#152D4A) 60%, var(--navy-700,#1B3A5C) 100%);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.gz-preloader.gz-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.gz-preloader__inner {
  text-align: center;
  color: #fff;
  padding: 24px;
}

/* Coin stack that "grows" */
.gz-coin-stack {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 28px;
}
.gz-coin {
  position: absolute;
  left: 50%;
  width: 72px;
  height: 72px;
  margin-left: -36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #F2E6C8, #D4AF37 55%, #9A7520 100%);
  color: #5a4410;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.35), inset 0 2px 4px rgba(255,255,255,0.5);
  opacity: 0;
  animation: gzCoinPop 1.8s ease-in-out infinite;
}
.gz-coin:nth-child(1) { bottom: 0;  animation-delay: 0s;   }
.gz-coin:nth-child(2) { bottom: 14px; transform: scale(0.97); animation-delay: 0.18s; }
.gz-coin:nth-child(3) { bottom: 28px; transform: scale(0.94); animation-delay: 0.36s; }
.gz-coin--top         { bottom: 42px; transform: scale(0.9);  animation-delay: 0.54s; }

@keyframes gzCoinPop {
  0%   { opacity: 0; transform: translateY(14px) scale(0.8); }
  35%  { opacity: 1; transform: translateY(0)    scale(1); }
  75%  { opacity: 1; }
  100% { opacity: 0.15; transform: translateY(-4px); }
}

.gz-growth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}
.gz-arrow {
  color: #C9A23C;
  font-size: 1.6rem;
  font-weight: 700;
  display: inline-block;
  animation: gzArrowRise 1.6s ease-in-out infinite;
}
@keyframes gzArrowRise {
  0%,100% { transform: translate(0,0); opacity: 0.6; }
  50%     { transform: translate(4px,-6px); opacity: 1; }
}
.gz-preloader__text {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  letter-spacing: 0.5px;
  color: #F2E6C8;
}
.gz-progress {
  width: 180px;
  height: 4px;
  margin: 0 auto;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  overflow: hidden;
}
.gz-progress span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 4px;
  background: linear-gradient(90deg, #9A7520, #D4AF37, #F2E6C8);
  animation: gzProgress 1.4s ease-in-out infinite;
}
@keyframes gzProgress {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

/* ---------- 2. FALLING MONEY ---------- */
.gz-money-rain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 999;        /* over page content, but under the sticky header/menu */
}
.gz-money-rain .gz-bill {
  position: absolute;
  top: -40px;
  font-size: 22px;
  line-height: 1;
  color: #C9A23C;
  opacity: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
  will-change: transform, opacity;
  animation-name: gzFall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes gzFall {
  0%   { opacity: 0;   transform: translateY(0)        rotate(0deg); }
  8%   { opacity: 0.5; }
  92%  { opacity: 0.5; }
  100% { opacity: 0;   transform: translateY(105vh)    rotate(320deg); }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .gz-coin, .gz-arrow, .gz-progress span { animation: none; }
  .gz-coin { opacity: 1; }
  .gz-money-rain { display: none; }
}

/* ============================================================
   LANGUAGE SWITCHER (DE / EN) + Google Translate cleanup
   ============================================================ */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 16px;
}
.lang-globe {
  width: 15px;
  height: 15px;
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}
.lang-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  overflow: hidden;
  backdrop-filter: blur(2px);
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 4px 12px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  font-family: inherit;
  line-height: 1.5;
}
.lang-btn:hover { color: #fff; }
.lang-btn.active {
  background: var(--gold-400, #C9A23C);
  color: var(--navy-900, #0F2137);
}

/* Hide Google Translate's injected banner, tooltip & branding,
   and stop it pushing the page down */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.skiptranslate iframe {
  display: none !important;
}
body { top: 0 !important; position: static !important; }
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}
/* Google wraps text in <font> tags — keep them inheriting our styles */
font { font: inherit; color: inherit; }

@media (max-width: 600px) {
  .lang-switch { margin-right: 10px; gap: 6px; }
  .lang-globe { display: none; }
  .lang-btn { font-size: 0.7rem; padding: 4px 10px; }
}
/* ============================================
   Instagram — brand colors in header & footer
   ============================================ */
a[href*="instagram.com"],
.footer-social a[href*="instagram.com"],
.social-links--header a[href*="instagram.com"] {
  background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%) !important;
  color: #fff !important;
  border-color: transparent !important;
}
a[href*="instagram.com"] svg {
  color: #fff !important;
  stroke: #fff !important;
  fill: none !important;
}
a[href*="instagram.com"]:hover {
  background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%) !important;
  color: #fff !important;
  filter: brightness(1.08) saturate(1.15);
}
/* ============================================
   FOUNDER'S VISION — section shown on Home & About pages
   ============================================ */
.founder-vision-section {
  padding: var(--section-pad, 80px) 0;
  background: var(--dark-section-bg, #0F2137);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.founder-vision-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 80% 50%, rgba(201,162,60,0.08), transparent 70%);
  pointer-events: none;
}
.founder-vision {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.founder-vision__photo {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,60,0.18);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.founder-vision__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-vision__content {
  position: relative;
}
.founder-vision__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-400, #C9A23C);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.founder-vision__dash {
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--gold-400, #C9A23C);
  flex-shrink: 0;
}
.founder-vision__quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  line-height: 0.4;
  color: var(--gold-400, #C9A23C);
  margin: 8px 0 18px;
  font-weight: 700;
  opacity: 0.85;
}
.founder-vision__quote {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.92);
  margin: 0 0 30px;
  max-width: none;
  font-weight: 400;
}
.founder-vision__divider {
  height: 1px;
  background: rgba(255,255,255,0.14);
  margin-bottom: 18px;
}
.founder-vision__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.founder-vision__name {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-400, #C9A23C);
  font-weight: 700;
  font-size: 1.05rem;
  font-family: 'Source Sans 3', sans-serif;
}
.founder-vision__title {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-left: 42px; /* aligns under the name after its gold dash */
}

@media (max-width: 768px) {
  .founder-vision {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .founder-vision__photo {
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
  }
  .founder-vision__quote {
    font-size: 1.02rem;
  }
  .founder-vision__quote-mark {
    font-size: 3.4rem;
  }
}