/* =======================================================
   CT-LAYOUT.CSS — Z-Facility Swiss GmbH
   Care-taker.ch inspired layout
   Clean, light, photo-ready, fully mobile-responsive
   ======================================================= */

/* ── DESIGN TOKENS ── */
:root {
  --navy:    #192537;
  --navy-d:  #0f1c2e;
  --gold:    #B09E80;
  --gold-d:  #716551;
  --cream:   #FAF8F5;
  --paper:   #F2EEE7;
  --line:    #E0D9CF;
  --ink:     #1A1A1A;
  --ink-s:   #4A4A4A;
  --grey:    #7A7A7A;
  --red:     #C0392B;
  --green:   #25D366;
  --brand:   'Cinzel', serif;
  --tag:     'Josefin Sans', sans-serif;
  --sans:    'Manrope', -apple-system, sans-serif;
  --max:     1160px;
  --pad:     clamp(1.25rem, 4vw, 2.5rem);
  --ease:    cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: 5rem; }
body { font-family: var(--sans); color: var(--ink); background: white; overflow-x: hidden; line-height: 1.65; font-size: 16px; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ── CONTAINER ── */
.ct-container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ── TYPOGRAPHY ── */
.ct-eyebrow {
  font-family: var(--tag);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 0.75rem;
}
h1,h2,h3 { font-family: var(--brand); font-weight: 400; line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--navy); margin-bottom: 1.25rem; letter-spacing: 0.01em; }
h2 em { font-style: italic; color: var(--gold-d); }
h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
p { color: var(--ink-s); line-height: 1.7; }

/* ── SHARED SECTION HEADER ── */
.ct-section-header { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.ct-section-header p { color: var(--grey); font-size: 1rem; }

/* ── BUTTONS ── */
.ct-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.75rem; border-radius: 4px;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s var(--ease); white-space: nowrap;
}
.ct-btn-primary { background: var(--navy); color: white; }
.ct-btn-primary:hover { background: var(--navy-d); color: white; transform: translateY(-1px); }
.ct-btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.ct-btn-ghost:hover { background: var(--navy); color: white; }
.ct-btn-white { background: white; color: var(--navy); }
.ct-btn-white:hover { background: var(--cream); color: var(--navy); }
.ct-btn-red { background: var(--red); color: white; border-color: var(--red); }
.ct-btn-red:hover { background: #a93226; color: white; }
.ct-btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.ct-btn-outline:hover { background: var(--navy); color: white; }
.ct-btn-full { width: 100%; }
.ct-btn-ghost-sm { background: transparent; color: var(--ink-s); border: 1.5px solid var(--line); padding: 0.9rem 1.25rem; font-size: 0.85rem; border-radius: 4px; cursor: pointer; font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; transition: all 0.2s; }
.ct-btn-ghost-sm:hover { border-color: var(--navy); color: var(--navy); }

/* ── LINK BTN ── */
.ct-link-btn {
  font-size: 0.92rem; font-weight: 700; color: var(--navy);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.ct-link-btn:hover { color: var(--gold-d); border-color: var(--gold-d); }

/* ── PHOTO PLACEHOLDER (for when real photos are added later) ── */
.ct-photo-placeholder {
  background:
    linear-gradient(135deg, rgba(176,158,128,0.08) 0%, rgba(176,158,128,0) 50%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-d) 100%);
  border: 1px solid rgba(176,158,128,0.2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  width: 100%; overflow: hidden;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.ct-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(176,158,128,0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(176,158,128,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.ct-photo-placeholder::after {
  content: '';
  position: absolute;
  top: 1rem; right: 1rem; bottom: 1rem; left: 1rem;
  border: 1px solid rgba(176,158,128,0.15);
  border-radius: 3px;
  pointer-events: none;
}
.ct-photo-inner {
  text-align: center; padding: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.65rem;
  position: relative; z-index: 1;
}
.ct-photo-icon {
  font-size: 3rem;
  opacity: 0.65;
  filter: grayscale(0.3) brightness(1.1);
}
.ct-photo-hint {
  font-size: 0.7rem;
  color: var(--gold);
  font-family: var(--tag);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.75;
}

/* ── CHECKLIST ── */
.ct-checklist { margin: 1.25rem 0; }
.ct-checklist li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.93rem; color: var(--ink-s); line-height: 1.5;
  padding: 0.4rem 0;
}
.ct-checklist li::before {
  content: '✓';
  flex-shrink: 0; width: 20px; height: 20px;
  background: var(--navy); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; margin-top: 0.1rem;
}

/* ═══════════════════════════════
   TOP BAR
   ═══════════════════════════════ */
.ct-topbar {
  background: var(--navy-d);
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  padding: 0.5rem var(--pad);
  position: relative; z-index: 101;
}
.ct-topbar-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  flex-wrap: wrap;
}
.ct-topbar a { color: rgba(255,255,255,0.65); }
.ct-topbar a:hover { color: var(--gold); }
.ct-notfall-link { color: #ff8a80 !important; font-weight: 700; }
.ct-sep { opacity: 0.4; margin: 0 0.25rem; }

/* ═══════════════════════════════
   HEADER / NAV
   ═══════════════════════════════ */
.ct-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: white;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
  padding: 0 var(--pad);
}
.ct-header.ct-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.ct-nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  height: 70px;
}
.ct-brand { flex-shrink: 0; }
.ct-logo { height: auto; width: 220px; }

/* NAV */
.ct-nav { display: flex; align-items: center; gap: 2rem; margin-left: auto; }
.ct-nav-list { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.ct-nav-list > li > a {
  font-size: 0.88rem; font-weight: 600; color: var(--ink);
  padding: 0.5rem 0.85rem; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.ct-nav-list > li > a:hover { color: var(--navy); background: var(--paper); }
.ct-notfall-nav { color: var(--red) !important; font-weight: 700 !important; }
.ct-nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.ct-phone {
  font-size: 0.88rem; font-weight: 700; color: var(--navy);
  padding: 0.5rem 0.85rem;
  transition: color 0.2s;
}
.ct-phone:hover { color: var(--gold-d); }
.ct-cta {
  background: var(--navy); color: white;
  font-size: 0.85rem; font-weight: 700; font-family: var(--sans);
  padding: 0.65rem 1.25rem; border-radius: 4px;
  white-space: nowrap;
  transition: background 0.2s;
}
.ct-cta:hover { background: var(--navy-d); color: white; }

/* DROPDOWN */
.ct-has-drop { position: relative; }
.ct-caret { font-size: 0.6rem; margin-left: 0.2rem; transition: transform 0.2s; display: inline-block; vertical-align: middle; }
.ct-has-drop:hover .ct-caret, .ct-has-drop.open .ct-caret { transform: rotate(180deg); }
.ct-dropdown {
  position: absolute; top: calc(100% + 4px); left: -0.5rem;
  background: white; border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  min-width: 260px; list-style: none;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200; padding: 0.4rem 0;
}
.ct-has-drop:hover .ct-dropdown,
.ct-has-drop:focus-within .ct-dropdown,
.ct-has-drop.open .ct-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.ct-dropdown li a {
  display: block; padding: 0.65rem 1.1rem;
  font-size: 0.88rem; font-weight: 500; color: var(--ink);
  transition: background 0.15s, color 0.15s;
}
.ct-dropdown li a:hover { background: var(--paper); color: var(--navy); }
.ct-dd-divider { height: 1px; background: var(--line); margin: 0.3rem 0; list-style: none; pointer-events: none; }

/* HAMBURGER */
.ct-hamburger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 26px; height: 18px; background: none; border: none; cursor: pointer;
  padding: 0; margin-left: auto;
}
.ct-hamburger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.ct-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.ct-hamburger.open span:nth-child(2) { opacity: 0; }
.ct-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─ push body down for fixed header ─ */
body { padding-top: calc(30px + 70px); } /* topbar + header */

/* ═══════════════════════════════
   1. HERO
   ═══════════════════════════════ */
.ct-hero {
  background: var(--cream);
  padding: 4rem 0 5rem;
  overflow: hidden;
}
.ct-hero-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.ct-hero-eyebrow {
  font-family: var(--tag); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-d);
  margin-bottom: 1.25rem;
}
.ct-hero-content h1 {
  font-family: var(--brand); font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 400; line-height: 1.1; letter-spacing: 0.01em;
  color: var(--navy); margin-bottom: 1.25rem;
}
.ct-hero-content h1 em { font-style: italic; color: var(--gold-d); }
.ct-hero-lead { font-size: 1.05rem; color: var(--ink-s); line-height: 1.7; margin-bottom: 2rem; max-width: 520px; }
.ct-hero-btns { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.ct-hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid var(--line); }
.ct-stat { display: flex; flex-direction: column; }
.ct-stat-num { font-family: var(--brand); font-size: 1.75rem; font-weight: 600; color: var(--navy); line-height: 1; }
.ct-stat-lbl { font-size: 0.75rem; color: var(--grey); font-weight: 600; letter-spacing: 0.06em; margin-top: 0.2rem; text-transform: uppercase; }
.ct-hero-visual { position: relative; }
.ct-hero-photo { aspect-ratio: 4/5; min-height: 400px; }
.ct-hero-badges { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.ct-badge-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; border: 1px solid var(--line);
  padding: 0.5rem 1rem; border-radius: 30px;
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
  width: fit-content; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.ct-badge-gold { border-color: var(--gold); background: var(--cream); }

/* ═══════════════════════════════
   2. VALUE PROPS
   ═══════════════════════════════ */
.ct-values { padding: 3.5rem 0; background: white; border-top: 1px solid var(--line); }
.ct-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.ct-value-card {
  padding: 1.75rem; border: 1px solid var(--line);
  border-radius: 6px; background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ct-value-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.ct-value-icon { font-size: 2rem; margin-bottom: 0.85rem; }
.ct-value-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; }
.ct-value-card p { font-size: 0.9rem; color: var(--grey); line-height: 1.6; }

/* ═══════════════════════════════
   3. ABOUT
   ═══════════════════════════════ */
.ct-about { padding: 5rem 0; background: white; }
.ct-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ct-about-photos { display: flex; flex-direction: column; gap: 0.85rem; }
.ct-about-photo-main { aspect-ratio: 4/3; width: 100%; }
.ct-about-photo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.ct-about-photo-sm { aspect-ratio: 1; }
.ct-about-text p { margin-bottom: 1rem; }
.ct-about-text p:last-of-type { margin-bottom: 0; }

/* ═══════════════════════════════
   CLIENT STRIP
   ═══════════════════════════════ */
.ct-clients-strip { background: var(--navy); padding: 1.5rem var(--pad); }
.ct-clients-strip .ct-container { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.ct-clients-label { font-family: var(--tag); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.ct-clients-list { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.ct-clients-list span { font-size: 0.85rem; color: rgba(255,255,255,0.65); white-space: nowrap; }

/* ═══════════════════════════════
   4. QUALITY
   ═══════════════════════════════ */
.ct-quality { padding: 5rem 0; background: var(--cream); }
.ct-quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ct-quality-photos { display: grid; grid-template-rows: auto auto; gap: 0.85rem; }
.ct-quality-photo-main { aspect-ratio: 3/2; }
.ct-quality-photo-sm { aspect-ratio: 3/1; }

/* ═══════════════════════════════
   5. SERVICES GRID
   ═══════════════════════════════ */
.ct-services { padding: 5rem 0; background: white; }
.ct-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.ct-service-card {
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  background: white; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ct-service-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
.ct-sc-photo { aspect-ratio: 3/2; overflow: hidden; }
.ct-sc-photo .ct-photo-placeholder { width: 100%; height: 100%; border: none; border-radius: 0; }
.ct-sc-body { padding: 1.25rem 1.5rem; flex: 1; }
.ct-sc-body h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.4rem; }
.ct-sc-body p { font-size: 0.87rem; color: var(--grey); line-height: 1.55; }
.ct-sc-badge {
  display: inline-block; margin-top: 0.75rem;
  background: var(--navy); color: var(--gold);
  font-size: 0.67rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 30px;
}

/* ═══════════════════════════════
   6. STATS BAR
   ═══════════════════════════════ */
.ct-stats-bar { background: var(--navy); padding: 4rem 0; }
.ct-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.ct-stat-big { text-align: center; }
.ct-stat-big-num { display: block; font-family: var(--brand); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 600; color: var(--gold); line-height: 1; }
.ct-stat-big-lbl { display: block; font-family: var(--tag); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 0.5rem; }

/* ═══════════════════════════════
   7. REVIEWS
   ═══════════════════════════════ */
.ct-reviews { padding: 5rem 0; background: white; }
.ct-reviews-cta {
  max-width: 560px; margin: 0 auto; text-align: center;
  background: var(--cream); border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 6px; padding: 2.5rem;
}
.ct-reviews-star { font-size: 1.75rem; color: #f4c430; margin-bottom: 1rem; }
.ct-reviews-cta p { color: var(--grey); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; }

/* ═══════════════════════════════
   8. SCOPE / INKLUSIVE
   ═══════════════════════════════ */
.ct-scope { padding: 5rem 0; background: var(--cream); }
.ct-scope-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 0.75rem; margin-top: 1rem;
}
.ct-scope-item {
  display: flex; align-items: center; gap: 0.75rem;
  background: white; border: 1px solid var(--line);
  border-radius: 5px; padding: 0.85rem 1.1rem;
  font-size: 0.9rem; color: var(--ink-s); font-weight: 500;
  transition: border-color 0.2s;
}
.ct-scope-item:hover { border-color: var(--gold); }
.ct-scope-check { color: var(--navy); font-weight: 700; font-size: 0.95rem; flex-shrink: 0; }

/* ═══════════════════════════════
   9. SERVICE FOR TENANTS
   ═══════════════════════════════ */
.ct-service-tenants { padding: 5rem 0; background: white; }
.ct-tenant-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.ct-tenant-card { background: var(--cream); border: 1px solid var(--line); border-radius: 6px; padding: 1.75rem; }
.ct-tenant-urgent { border-left: 4px solid var(--red); background: #fdf7f7; }
.ct-tenant-dark { background: var(--navy); border-color: var(--navy); color: white; }
.ct-tenant-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.ct-tenant-card h3 { color: var(--navy); margin-bottom: 0.6rem; }
.ct-tenant-dark h3 { color: var(--gold); }
.ct-tenant-card p { font-size: 0.92rem; color: var(--ink-s); margin-bottom: 1rem; }
.ct-tenant-dark p { color: rgba(255,255,255,0.72); }
.ct-tenant-btns { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
.ct-tenant-btns .ct-btn { font-size: 0.85rem; padding: 0.75rem 1rem; }
.ct-emg-btns { display: flex; flex-direction: column; gap: 0.5rem; }
.ct-emg-btn {
  display: block; text-align: center; padding: 0.7rem 1rem; border-radius: 4px;
  background: rgba(255,255,255,0.1); color: white; font-size: 0.88rem;
  font-weight: 700; transition: background 0.15s;
}
.ct-emg-btn:hover { background: rgba(255,255,255,0.2); color: white; }

/* ═══════════════════════════════
   10. REGION
   ═══════════════════════════════ */
.ct-region { padding: 5rem 0; background: var(--cream); }
.ct-region-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ct-region-tiles { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.ct-region-tile {
  background: var(--navy); border: 1px solid rgba(176,158,128,0.2);
  border-radius: 6px; padding: 1.5rem 2rem; flex: 1; min-width: 120px;
  text-align: center; transition: border-color 0.2s, transform 0.2s;
}
.ct-region-tile:hover { border-color: var(--gold); transform: translateY(-2px); }
.ct-rt-soft { background: white; border: 1.5px dashed var(--line); }
.ct-rt-soft .ct-rt-kt { color: var(--grey); }
.ct-rt-soft .ct-rt-name { color: var(--grey); }
.ct-rt-kt { font-family: var(--brand); font-size: 2rem; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 0.4rem; }
.ct-rt-name { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.8); line-height: 1.4; }
.ct-rt-name small { display: block; font-size: 0.65rem; color: var(--gold); margin-top: 0.15rem; }

/* ═══════════════════════════════
   11. FAQ
   ═══════════════════════════════ */
.ct-faq { padding: 5rem 0; background: white; }
.ct-faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.ct-faq-items { display: flex; flex-direction: column; gap: 0; }
.ct-faq-item { border-bottom: 1px solid var(--line); }
.ct-faq-item:first-child { border-top: 1px solid var(--line); }
.ct-faq-item summary {
  padding: 1.1rem 0; font-size: 0.97rem; font-weight: 600; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; list-style: none; user-select: none;
}
.ct-faq-item summary::-webkit-details-marker { display: none; }
.ct-faq-item summary::after { content: '+'; font-size: 1.25rem; font-weight: 300; color: var(--gold); transition: transform 0.25s; flex-shrink: 0; }
.ct-faq-item[open] summary::after { transform: rotate(45deg); }
.ct-faq-body { padding: 0.25rem 0 1.25rem; font-size: 0.92rem; color: var(--grey); line-height: 1.7; }
.ct-faq-body a { color: var(--navy); text-decoration: underline; }

/* ═══════════════════════════════
   12. CONTACT
   ═══════════════════════════════ */
.ct-contact { padding: 5rem 0; background: var(--cream); }
.ct-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.ct-contact-info h2 { margin-bottom: 1rem; }
.ct-contact-info > p { margin-bottom: 2rem; color: var(--grey); }
.ct-contact-items { display: flex; flex-direction: column; gap: 0.85rem; }
.ct-contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem; background: white; border: 1px solid var(--line);
  border-radius: 5px; transition: border-color 0.2s, box-shadow 0.2s; cursor: pointer;
}
a.ct-contact-item:hover { border-color: var(--gold); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.ct-ci-icon { font-size: 1.25rem; flex-shrink: 0; }
.ct-contact-item strong { font-size: 0.95rem; color: var(--navy); }
.ct-contact-item small { font-size: 0.78rem; color: var(--grey); }
.ct-contact-form-wrap {
  background: white; border: 1px solid var(--line);
  border-top: 3px solid var(--gold); border-radius: 6px; padding: 2.25rem;
}
.ct-form { display: flex; flex-direction: column; gap: 1rem; }
.ct-form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.ct-field { display: flex; flex-direction: column; gap: 0.35rem; }
.ct-field label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-d); }
.ct-field input, .ct-field select, .ct-field textarea {
  font-family: var(--sans); font-size: 0.95rem; padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--line); border-radius: 4px; background: var(--cream);
  color: var(--ink); transition: border-color 0.2s; width: 100%;
}
.ct-field input:focus, .ct-field select:focus, .ct-field textarea:focus { outline: none; border-color: var(--navy); background: white; }
.ct-field textarea { resize: vertical; }
.ct-consent {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.82rem; color: var(--grey); line-height: 1.5; cursor: pointer;
}
.ct-consent input { width: 17px; height: 17px; flex-shrink: 0; margin-top: 0.1rem; accent-color: var(--navy); }
.ct-consent a { color: var(--navy); text-decoration: underline; }
.ct-form-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.ct-form-status { padding: 0.85rem 1rem; border-radius: 4px; font-size: 0.88rem; text-align: center; display: none; }
.ct-form-status.sending { display: block; background: var(--cream); color: var(--grey); border: 1px solid var(--line); }
.ct-form-status.success { display: block; background: #eafaf1; color: #1e8449; border: 1px solid #a9dfbf; }
.ct-form-status.error { display: block; background: #fdf2f2; color: var(--red); border: 1px solid #f5b7b1; }

/* ═══════════════════════════════
   13. FINAL CTA BAND
   ═══════════════════════════════ */
.ct-final-cta {
  background: var(--navy); padding: 4.5rem var(--pad);
  text-align: center;
}
.ct-final-cta h2 { color: white; margin-bottom: 0.75rem; }
.ct-final-cta p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
.ct-footer { background: var(--navy-d); color: rgba(255,255,255,0.65); padding: 4rem 0 1.5rem; }
.ct-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.ct-footer-logo { width: 200px; height: auto; margin-bottom: 1.1rem; }
.ct-footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.ct-footer-col h4 { font-family: var(--brand); font-size: 0.85rem; font-weight: 500; color: var(--gold); letter-spacing: 0.05em; margin-bottom: 1.1rem; }
.ct-footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.ct-footer-col li, .ct-footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.ct-footer-col a:hover { color: var(--gold); }
.ct-footer-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.75rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 0.5rem;
}

/* ═══════════════════════════════
   FLOATING BUTTONS
   ═══════════════════════════════ */
.notfall-float {
  position: fixed; bottom: 1.75rem; left: 1.75rem; z-index: 999;
  display: flex; align-items: center; gap: 0.55rem;
  background: #C0392B; color: white; border-radius: 50px;
  padding: 0.8rem 1.25rem 0.8rem 1rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(192,57,43,0.45);
  animation: nfpulse 3s infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}
.notfall-float:hover { color: white; transform: scale(1.04); box-shadow: 0 6px 24px rgba(192,57,43,0.6); }
@keyframes nfpulse { 0%,90%,100%{ box-shadow:0 4px 18px rgba(192,57,43,.45); } 45%{ box-shadow:0 4px 28px rgba(192,57,43,.75),0 0 0 8px rgba(192,57,43,.1); } }
.notfall-float-icon { font-size: 1.15rem; flex-shrink: 0; }
.notfall-float-text { font-family: var(--sans); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.2; color: white; }

.whatsapp-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { color: white; transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }

/* ═══════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 900px) {
  /* Header */
  .ct-hamburger { display: flex; }
  .ct-nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: white; flex-direction: column; align-items: stretch;
    padding: 5rem 1.25rem 2rem;
    transform: translateX(100%); transition: transform 0.3s var(--ease);
    overflow-y: auto; z-index: 99; gap: 0; margin-left: 0;
  }
  .ct-nav.open { transform: translateX(0); }
  .ct-nav-list { flex-direction: column; gap: 0; }
  .ct-nav-list > li > a { display: block; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; border-radius: 0; }
  .ct-dropdown { position: static; opacity: 1; transform: none; pointer-events: all; box-shadow: none; border: none; border-top: none; border-left: 3px solid var(--gold); border-radius: 0; background: var(--cream); display: none; }
  .ct-has-drop.open .ct-dropdown { display: block; }
  .ct-nav-actions { flex-direction: column; padding-top: 1.5rem; gap: 0.75rem; }
  .ct-cta, .ct-phone { width: 100%; text-align: center; padding: 0.9rem 1.25rem; border-radius: 4px; }

  /* Topbar */
  .ct-topbar-left { display: none; }
  .ct-topbar { text-align: center; }

  /* Hero */
  .ct-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ct-hero { padding: 2.5rem 0 3.5rem; }
  .ct-hero-photo { aspect-ratio: 3/2; min-height: unset; }
  .ct-hero-btns { flex-direction: column; }
  .ct-hero-btns .ct-btn { width: 100%; justify-content: center; }
  .ct-hero-stats { gap: 1.25rem; }

  /* Grids */
  .ct-values-grid { grid-template-columns: 1fr; gap: 1rem; }
  .ct-about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ct-quality-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ct-quality-grid .ct-quality-text { order: 2; }
  .ct-quality-grid .ct-quality-photos { order: 1; }
  .ct-services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .ct-stats-grid { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .ct-tenant-grid { grid-template-columns: 1fr; }
  .ct-region-inner { grid-template-columns: 1fr; gap: 2rem; }
  .ct-faq-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ct-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ct-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ct-form-2col { grid-template-columns: 1fr; }

  /* Sections */
  .ct-about, .ct-quality, .ct-services, .ct-scope, .ct-service-tenants,
  .ct-region, .ct-faq, .ct-contact, .ct-reviews { padding: 3rem 0; }
}

@media (max-width: 480px) {
  .ct-services-grid { grid-template-columns: 1fr; }
  .ct-stats-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .ct-footer-grid { grid-template-columns: 1fr; }
  .ct-hero-stats { grid-template-columns: repeat(2,1fr); display: grid; gap: 1rem; padding-top: 1.25rem; }
  .ct-region-tiles { display: grid; grid-template-columns: 1fr 1fr; }
  .ct-form-actions { flex-direction: column; }
  .ct-form-actions .ct-btn-ghost-sm { width: 100%; text-align: center; }
  .notfall-float { left: 0.85rem; bottom: 1rem; padding: 0.65rem 1rem 0.65rem 0.85rem; }
  .notfall-float-text { font-size: 0.68rem; }
  .whatsapp-float { right: 0.85rem; bottom: 1rem; width: 48px; height: 48px; }
}

/* ═══════════════════════════════════════
   SERVICE PAGE LAYOUT (care-taker.ch style)
   Text-first, no oversized hero
   ═══════════════════════════════════════ */

/* Breadcrumb */
.ct-bc { background: var(--cream); padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
.ct-bc ol { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; list-style: none; font-size: 0.8rem; color: var(--grey); }
.ct-bc a { color: var(--gold-d); }
.ct-bc a:hover { color: var(--navy); text-decoration: underline; }
.ct-bc [aria-current="page"] { color: var(--ink-s); font-weight: 600; }
.ct-bc span { color: var(--line); margin: 0 0.1rem; }

/* Page header (replaces hero) */
.ct-page-head {
  background: var(--cream);
  padding: 2rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}
.ct-page-head h1 {
  font-family: var(--brand);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  max-width: 820px;
}
.ct-page-tagline {
  font-size: 1.05rem;
  color: var(--ink-s);
  line-height: 1.65;
  max-width: 720px;
}

/* Sections */
.ct-page-section {
  padding: 2.5rem 0;
  background: white;
}
.ct-page-section-alt { background: var(--cream); }
.ct-page-cta-section { background: var(--paper); border-top: 3px solid var(--gold); }
.ct-narrow { max-width: 780px; }

.ct-page-section h2 {
  font-family: var(--brand);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.ct-page-section h3 {
  font-family: var(--brand);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.85rem;
  letter-spacing: 0.01em;
}
.ct-page-section p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--ink-s);
  margin-bottom: 1rem;
}
.ct-page-section p:last-child { margin-bottom: 0; }

/* Bullet list */
.ct-page-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}
.ct-page-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.75rem;
  font-size: 0.95rem;
  color: var(--ink-s);
  line-height: 1.55;
  border-bottom: 1px solid var(--line);
}
.ct-page-list li:last-child { border-bottom: none; }
.ct-page-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 18px;
  height: 18px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}

/* FAQ override for service pages — uses ct-faq-item from main */
.ct-page-section .ct-faq-items { max-width: 780px; margin-left: auto; margin-right: auto; }

/* Form on service pages */
.ct-page-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

/* Region tiles — smaller version for service pages */
.ct-page-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.ct-page-tile {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 1.1rem 0.5rem;
  border-radius: 5px;
  border: 1px solid rgba(176,158,128,0.2);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  transition: transform 0.2s, border-color 0.2s;
}
.ct-page-tile:hover { transform: translateY(-2px); border-color: var(--gold); }
.ct-pt-kt {
  font-family: var(--brand);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}
.ct-page-tile span:last-child {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
}

/* Mobile */
@media (max-width: 768px) {
  .ct-page-head { padding: 1.5rem 0 2rem; }
  .ct-page-section { padding: 2rem 0; }
  .ct-page-form { padding: 1.5rem; }
  .ct-page-tiles { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════
   ENDREINIGUNG PAGE
   ═══════════════════════════════════════ */

/* Trust strip */
.er-trust-strip {
  background: var(--navy);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(176,158,128,0.15);
}
.er-trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.er-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.er-ti-icon {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}

/* Leistungsumfang grid */
.er-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}
.er-scope-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1.25rem 1.35rem;
  transition: border-color 0.2s;
}
.er-scope-card:hover { border-color: var(--gold); }
.er-scope-head {
  font-family: var(--brand);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.85rem;
  letter-spacing: 0.01em;
}
.er-scope-list {
  list-style: none;
  padding: 0;
}
.er-scope-list li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.1rem;
  font-size: 0.84rem;
  color: var(--ink-s);
  line-height: 1.45;
}
.er-scope-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.35rem;
  color: var(--gold-d);
  font-size: 0.75rem;
  font-weight: 700;
}

/* Steps */
.er-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.er-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--line);
  background: white;
  transition: background 0.15s;
}
.er-step:last-child { border-bottom: none; }
.er-step:hover { background: var(--cream); }
.er-step-num {
  font-family: var(--brand);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  min-width: 40px;
  flex-shrink: 0;
  padding-top: 0.15rem;
}
.er-step h3 {
  font-family: var(--brand);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.er-step p {
  font-size: 0.9rem;
  color: var(--ink-s);
  line-height: 1.6;
  margin: 0;
}

/* Form sections */
.er-form { gap: 0; }
.er-form-section {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.er-form-section:last-of-type { border-bottom: none; }
.er-form-section-label {
  font-family: var(--tag);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 0.35rem;
}
.er-form .ct-consent,
.er-form .ct-btn,
.er-form .ct-form-status {
  margin-top: 1rem;
}

/* Checkbox grid */
.er-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.er-check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--ink-s);
  transition: border-color 0.15s, background 0.15s;
}
.er-check:hover { border-color: var(--gold); background: white; }
.er-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--navy);
  cursor: pointer;
}
.er-check input:checked + span { font-weight: 600; color: var(--navy); }
.er-check:has(input:checked) { border-color: var(--navy); background: white; }

/* Mobile */
@media (max-width: 768px) {
  .er-trust-items { gap: 0.85rem; justify-content: flex-start; }
  .er-trust-item { font-size: 0.78rem; }
  .er-scope-grid { grid-template-columns: 1fr; }
  .er-step { padding: 1.25rem 1.25rem; gap: 1rem; }
  .er-step-num { font-size: 1.4rem; }
  .er-checkbox-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   WHATSAPP STICKY MOBILE BAR
   Shows only on mobile, sticks to bottom
   ═══════════════════════════════════════ */
.wa-mobile-bar {
  display: none;
}
@media (max-width: 768px) {
  .wa-mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 998;
    background: #25D366;
    color: white;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem;
    text-decoration: none;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 0.97rem;
    letter-spacing: 0.02em;
    box-shadow: 0 -3px 16px rgba(37,211,102,0.3);
  }
  .wa-mobile-bar:hover { background: #1ebe5d; color: white; }
  .wa-mobile-bar svg { flex-shrink: 0; }
  /* Push content above sticky bar */
  body { padding-bottom: 56px; }
  /* Hide floating WhatsApp button on mobile — bar replaces it */
  .whatsapp-float { display: none; }
  /* Adjust notfall float — move up above wa bar */
  .notfall-float { bottom: 4.5rem; }
}

/* ═══════════════════════════════════════
   REAL PHOTOS (replacing placeholders)
   ═══════════════════════════════════════ */

/* Hero photo */
.ct-hero-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(25,37,55,0.18);
  display: block;
}

/* About photos */
.ct-about-photo-main {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  display: block;
}
.ct-about-photo-sm {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: block;
}

/* Quality photos */
.ct-quality-photo-main {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  display: block;
}
.ct-quality-photo-sm {
  width: 100%;
  height: auto;
  aspect-ratio: 3/1;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: block;
}

/* Service card photos */
.ct-sc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.ct-service-card:hover .ct-sc-photo img {
  transform: scale(1.04);
}
.ct-sc-photo {
  overflow: hidden;
  background: var(--paper);
}

/* Service page hero photo (under page-head) */
.ct-page-photo {
  background: var(--cream);
  padding: 1.5rem 0 0;
}
.ct-page-photo-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  display: block;
}

@media (max-width: 768px) {
  .ct-page-photo-img { max-height: 280px; border-radius: 6px; }
  .ct-hero-photo { aspect-ratio: 3/2; }
}

/* Image fade-in on load */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}
img[loading="lazy"].loaded,
img[loading="lazy"]:not([data-loading]) {
  opacity: 1;
}


/* =========================================================
   Z-Facility no-photo version
   Replaces all service photos with clean professional blocks.
   Logos and favicon remain unchanged.
   ========================================================= */
.zf-no-photo {
  width: 100%;
  min-height: 180px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 18%, rgba(44,122,77,.16), transparent 30%),
    linear-gradient(135deg, #f7f9fb 0%, #eef3f6 55%, #e7edf0 100%);
  border: 1px solid rgba(30,70,99,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .7rem;
  color: #1e4663;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
  text-align: center;
  padding: 1.4rem;
  overflow: hidden;
}
.zf-no-photo-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(44,122,77,.18);
  font-size: 1.85rem;
  box-shadow: 0 10px 25px rgba(18,48,64,.08);
}
.zf-no-photo-text {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: #213f52;
  max-width: 90%;
}
.ct-hero-photo-placeholder { min-height: 420px; }
.ct-about-photo-main-placeholder, .ct-quality-photo-main-placeholder { min-height: 300px; }
.ct-about-photo-sm-placeholder, .ct-quality-photo-sm-placeholder { min-height: 145px; }
.ct-page-photo-img-placeholder { min-height: 360px; }
.ct-sc-photo .zf-no-photo { min-height: 160px; border-radius: 18px 18px 0 0; }
.ct-sc-photo .zf-no-photo-text { font-size: .88rem; }
@media (max-width: 760px) {
  .ct-hero-photo-placeholder, .ct-page-photo-img-placeholder { min-height: 260px; }
  .ct-about-photo-main-placeholder, .ct-quality-photo-main-placeholder { min-height: 220px; }
}


/* Unsplash stock photo integration */
.ct-hero-photo, .ct-about-photo-main, .ct-about-photo-sm, .ct-quality-photo-main, .ct-quality-photo-sm, .ct-page-photo-img, .ct-sc-photo img {
  background: var(--paper);
  object-position: center;
}
.ct-sc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ct-hero-visual, .ct-about-photos, .ct-quality-photos, .ct-page-photo .ct-container { overflow: hidden; }
