/* Inter selbst gehostet (kein Google-CDN, kein IP-Abfluss / DSGVO) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('fonts/inter-var.woff2') format('woff2');
}

/* ==================== GLOBAL RESET ==================== */
html, body {
  margin: 0;
  padding: 0;
  background: #f5f2ee;
  overflow-x: hidden;
}

:root {
  --sv3-cream: #f5f2ee;
  --sv3-dark: #5d686e;
  --sv3-green: #76B729;
  --sv3-gray: #777;
  --sv3-light-gray: #eae8e4;
  --sv3-faint: #e0ddd8;
  --sv3-label: #999;
  --sv3-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --sv3-red: #c0392b;
}

/* ==================== RESET & BASE ==================== */
.sv3 {
  font-family: 'Inter', sans-serif;
  background: var(--sv3-cream);
  color: var(--sv3-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}

.sv3 *, .sv3 *::before, .sv3 *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

.sv3 img { max-width: 100%; display: block; }

.sv3-full {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}

.sv3-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ==================== PRELOADER ==================== */
.sv3-preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--sv3-cream);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s var(--sv3-ease), visibility 0.8s;
}
.sv3-preloader.sv3-loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.sv3-preloader-bar-track { width: 160px; height: 2px; background: var(--sv3-faint); overflow: hidden; }
.sv3-preloader-bar { height: 100%; width: 0%; background: var(--sv3-green); animation: sv3-load 1.2s var(--sv3-ease) forwards; }
.sv3-preloader-label { margin-top: 18px; font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: var(--sv3-label); }
@keyframes sv3-load { 0% { width: 0; } 60% { width: 70%; } 100% { width: 100%; } }

/* ==================== HOMEPAGE HERO (Scroll-Pinned Expansion) ==================== */
.sv3-hero-scroll {
  position: relative;
  width: 100%;
  height: 200vh; /* outer scroll length — pin lasts (200vh - 100vh) = 1 viewport */
  background: var(--sv3-dark);
}
.sv3-hero-scroll-inner {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.sv3-hero-scroll.sv3-hero-expanded { height: auto; min-height: 100vh; }
.sv3-hero-bg { position: absolute; inset: 0; z-index: 1; transition: opacity 0.3s ease; }
.sv3-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.sv3-hero-bg-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.15); }
.sv3-hero-media-box { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 5; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.4); will-change: width, height; }
.sv3-hero-media-box img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.sv3-hero-media-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.25); transition: opacity 0.3s ease; }
.sv3-hero-text-wrap { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px; pointer-events: none; width: 100%; }
.sv3-hero-text-first, .sv3-hero-text-rest {
  font-size: clamp(60px, 12vw, 180px); font-weight: 900; text-transform: uppercase;
  letter-spacing: -3px; line-height: 0.9; color: #5d686e;
  font-family: 'Inter', Arial, Helvetica, sans-serif; will-change: transform; transition: none;
}
.sv3-hero-scroll-cue { position: absolute; bottom: 5%; left: 50%; transform: translateX(-50%); z-index: 10; text-align: center; pointer-events: none; }
.sv3-hero-scroll-cue span { display: block; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--sv3-label); margin-bottom: 10px; }
.sv3-hero-scroll-cue-line { width: 1px; height: 40px; background: var(--sv3-label); margin: 0 auto; animation: sv3-pulse-line 2s ease-in-out infinite; }
@keyframes sv3-pulse-line { 0%, 100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.3); opacity: 0.3; } }

/* ==================== SUBPAGE HERO (Simpler) ==================== */
.sv3-page-hero {
  position: relative;
  width: 100%;
  height: clamp(480px, 72vh, 720px);
  overflow: hidden;
  background: var(--sv3-dark);
}
.sv3-page-hero-bg { position: absolute; inset: 0; z-index: 1; }
.sv3-page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.sv3-page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 100%);
}
.sv3-page-hero-content {
  position: absolute; bottom: clamp(40px, 6vw, 80px); left: 0; right: 0; z-index: 10;
  padding: 0 clamp(20px, 4vw, 60px);
  max-width: 1340px; margin: 0 auto;
}
.sv3-page-hero-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--sv3-green); margin-bottom: 16px;
}
.sv3-page-hero-title {
  font-size: clamp(32px, 4.6vw, 64px); font-weight: 300; color: #fff;
  line-height: 1.1; letter-spacing: -0.5px;
  max-width: min(1080px, 78%);
}
.sv3-page-hero-title strong { font-weight: 800; }
.sv3-page-hero-subtitle {
  font-size: clamp(15px, 1.4vw, 18px); color: rgba(255,255,255,0.78);
  margin-top: clamp(16px, 1.8vw, 24px); max-width: 640px; line-height: 1.6;
}

/* ==================== NAV (used on all pages) ==================== */
.sv3-hero-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
  padding: clamp(20px, 3vw, 40px) clamp(24px, 4vw, 60px);
  display: flex; justify-content: space-between; align-items: center;
}
.sv3-hero-nav-logo { font-size: 14px; font-weight: 700; letter-spacing: 6px; text-transform: uppercase; color: #fff; line-height: 0; }
.sv3-hero-nav-logo img { display: inline-block; height: 80px; width: auto; }
.sv3-hero-nav-links { display: flex; gap: clamp(14px, 2vw, 28px); list-style: none; align-items: center; }
.sv3-hero-nav-links a { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.3s; }
.sv3-hero-nav-links a:hover, .sv3-hero-nav-links a.sv3-active { color: var(--sv3-green); }
.sv3-hero-nav-phone { font-size: 12px; letter-spacing: 1px; color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.3s; }
.sv3-hero-nav-phone:hover { color: var(--sv3-green); }

/* Mobile menu toggle */
.sv3-nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; padding: 6px 10px; }

/* ==================== REVEAL ANIMATIONS ==================== */
.sv3-reveal { opacity: 0; transform: translateY(50px); transition: opacity 1s var(--sv3-ease) calc(var(--d, 0) * 1s), transform 1s var(--sv3-ease) calc(var(--d, 0) * 1s); }
.sv3-reveal.sv3-visible { opacity: 1; transform: translateY(0); }

/* ==================== BUTTONS ==================== */
.sv3-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; border: 1px solid var(--sv3-dark); background: transparent;
  color: var(--sv3-dark); font-family: 'Inter', sans-serif; font-size: 12px;
  letter-spacing: 2.5px; text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: all 0.4s var(--sv3-ease); white-space: nowrap;
}
.sv3-btn:hover { background: var(--sv3-green); color: #fff; border-color: var(--sv3-green); }
.sv3-btn .sv3-btn-arrow { display: inline-block; transition: transform 0.4s var(--sv3-ease); }
.sv3-btn:hover .sv3-btn-arrow { transform: translateX(6px); }
.sv3-btn--light { border-color: rgba(255,255,255,0.4); color: #fff; }
.sv3-btn--light:hover { background: var(--sv3-green); border-color: var(--sv3-green); }
.sv3-btn--solid { background: var(--sv3-dark); color: #fff; }
.sv3-btn--solid:hover { background: var(--sv3-green); border-color: var(--sv3-green); }

/* ==================== EYEBROW & SECTION TITLE ==================== */
.sv3-eyebrow { display: flex; align-items: center; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--sv3-label); margin-bottom: clamp(24px, 3vw, 40px); }
.sv3-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sv3-green); display: inline-block; margin-right: 12px; flex-shrink: 0; }
.sv3-section-title { font-size: clamp(32px, 4.5vw, 60px); font-weight: 300; color: var(--sv3-dark); line-height: 1.15; margin-bottom: clamp(40px, 5vw, 72px); }
.sv3-section-title strong { font-weight: 800; }

/* ==================== SERVICES BENTO (Homepage) ==================== */
.sv3-services { padding: clamp(100px, 12vw, 180px) 0; background: var(--sv3-cream); }
.sv3-bento { display: grid; grid-template-columns: 1.15fr 1fr; grid-template-rows: auto auto; gap: clamp(12px, 1.5vw, 20px); }
.sv3-bento-card { position: relative; overflow: hidden; background: #fff; display: flex; flex-direction: column; transition: transform 0.6s var(--sv3-ease); }
.sv3-bento-card:hover { transform: translateY(-4px); }
.sv3-bento-card--large { grid-row: 1 / 3; }
.sv3-bento-card-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.sv3-bento-card--large .sv3-bento-card-img { aspect-ratio: 3 / 4; height: 100%; }
.sv3-bento-card-body { padding: clamp(20px, 2.5vw, 36px); flex: 1; display: flex; flex-direction: column; }
.sv3-bento-card-num { font-size: 11px; letter-spacing: 3px; color: var(--sv3-label); margin-bottom: 14px; }
.sv3-bento-card-title { font-size: clamp(20px, 2.2vw, 30px); font-weight: 800; color: var(--sv3-dark); margin-bottom: 14px; transition: color 0.4s var(--sv3-ease); }
.sv3-bento-card:hover .sv3-bento-card-title { color: var(--sv3-green); }
.sv3-bento-card-desc { font-size: 15px; line-height: 1.75; color: var(--sv3-gray); margin-bottom: 28px; flex: 1; }
.sv3-bento-card .sv3-btn { align-self: flex-start; font-size: 11px; padding: 12px 24px; }
.sv3-bento-card-accent { position: absolute; top: 20px; right: 20px; width: 8px; height: 8px; border-radius: 50%; background: var(--sv3-green); }

/* ==================== ABOUT ==================== */
.sv3-about { padding: clamp(100px, 12vw, 180px) 0; background: var(--sv3-cream); }
.sv3-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 140px); align-items: start; }
.sv3-about-headline { font-size: clamp(28px, 3.5vw, 50px); font-weight: 300; line-height: 1.2; color: var(--sv3-dark); }
.sv3-about-headline strong { font-weight: 800; }
.sv3-about-text { font-size: 16px; line-height: 1.85; color: var(--sv3-gray); }
.sv3-about-text p + p { margin-top: 24px; }

/* ==================== IMAGE BREAK ==================== */
.sv3-image-break { width: 100%; height: clamp(300px, 45vw, 600px); overflow: hidden; position: relative; }
.sv3-image-break img { width: 100%; height: 120%; object-fit: cover; object-position: center; will-change: transform; }
.sv3-image-break-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, var(--sv3-cream) 0%, transparent 15%, transparent 85%, var(--sv3-cream) 100%); }

/* ==================== STATS ==================== */
.sv3-stats { padding: clamp(80px, 10vw, 140px) 0; background: var(--sv3-dark); }
.sv3-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 60px); text-align: center; }
.sv3-stat-number { font-size: clamp(52px, 8vw, 100px); font-weight: 900; color: #fff; line-height: 1; letter-spacing: -3px; }
.sv3-stat-number .sv3-stat-suffix { font-size: 0.45em; font-weight: 300; color: var(--sv3-green); vertical-align: top; margin-left: 2px; }
.sv3-stat-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 14px; }
.sv3-stat-divider { width: 24px; height: 1px; background: rgba(255,255,255,0.2); margin: 18px auto 0; }

/* ==================== VALUES ==================== */
.sv3-values { padding: clamp(100px, 12vw, 180px) 0; background: var(--sv3-cream); }
.sv3-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); }
.sv3-value-card { border-top: 1px solid var(--sv3-faint); padding-top: clamp(24px, 3vw, 40px); transition: border-color 0.4s var(--sv3-ease); }
.sv3-value-card:hover { border-top-color: var(--sv3-green); }
.sv3-value-num { font-size: 12px; letter-spacing: 3px; color: var(--sv3-label); margin-bottom: clamp(16px, 2vw, 28px); }
.sv3-value-title { font-size: clamp(20px, 2.2vw, 28px); font-weight: 800; color: var(--sv3-dark); margin-bottom: 16px; transition: color 0.4s var(--sv3-ease); }
.sv3-value-card:hover .sv3-value-title { color: var(--sv3-green); }
.sv3-value-desc { font-size: 15px; line-height: 1.8; color: var(--sv3-gray); }

/* ==================== CTA ==================== */
.sv3-cta { padding: clamp(100px, 14vw, 200px) 0; text-align: center; background: var(--sv3-cream); }
.sv3-cta-headline { font-size: clamp(28px, 4vw, 56px); font-weight: 300; line-height: 1.2; color: var(--sv3-dark); max-width: 760px; margin: 0 auto clamp(20px, 3vw, 36px); }
.sv3-cta-headline strong { font-weight: 800; }
.sv3-cta-phone { font-size: clamp(16px, 2vw, 22px); color: var(--sv3-gray); margin-bottom: clamp(32px, 4vw, 52px); letter-spacing: 1px; }
.sv3-cta-phone a { color: var(--sv3-green); text-decoration: none; border-bottom: 1px solid rgba(118,183,41,0.3); transition: border-color 0.3s; font-weight: 600; }
.sv3-cta-phone a:hover { border-color: var(--sv3-green); }

/* ==================== FOOTER ==================== */
.sv3-footer { padding: clamp(32px, 4vw, 48px) 0; border-top: 1px solid var(--sv3-faint); background: var(--sv3-cream); }
.sv3-footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.sv3-footer-text { font-size: 12px; color: var(--sv3-label); letter-spacing: 1px; }
.sv3-footer-address { font-size: 12px; color: var(--sv3-label); letter-spacing: 1px; text-align: right; }
.sv3-footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.sv3-footer-links a { font-size: 11px; color: var(--sv3-label); text-decoration: none; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.3s; }
.sv3-footer-links a:hover { color: var(--sv3-green); }

/* ==================== SUBPAGE CONTENT SECTIONS ==================== */
.sv3-content { padding: clamp(80px, 10vw, 160px) 0; background: var(--sv3-cream); }
.sv3-content-grid { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.sv3-content-grid--single { grid-template-columns: 1fr; max-width: 920px; margin: 0 auto; }
.sv3-content h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 300; color: var(--sv3-dark); line-height: 1.2; margin-bottom: clamp(20px, 2.5vw, 32px); }
.sv3-content h2 strong { font-weight: 800; }
.sv3-content h3 { font-size: clamp(20px, 2.2vw, 28px); font-weight: 800; color: var(--sv3-dark); margin-bottom: 16px; margin-top: clamp(32px, 4vw, 48px); }
.sv3-content h3:first-child { margin-top: 0; }
.sv3-content p { font-size: 16px; line-height: 1.85; color: var(--sv3-gray); margin-bottom: 18px; }
.sv3-content ul { list-style: none; padding-left: 0; margin-bottom: 24px; }
.sv3-content ul li { font-size: 15px; line-height: 1.75; color: var(--sv3-gray); padding-left: 28px; position: relative; margin-bottom: 12px; }
.sv3-content ul li::before { content: ''; position: absolute; left: 0; top: 12px; width: 14px; height: 1px; background: var(--sv3-green); }

/* Service category cards (for sanitaer.html, heizung.html, service.html) */
.sv3-category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 2.5vw, 36px); margin-top: clamp(40px, 5vw, 60px); }
.sv3-category-card { background: #fff; padding: clamp(28px, 3vw, 44px); border-top: 3px solid var(--sv3-green); transition: transform 0.4s var(--sv3-ease); }
.sv3-category-card:hover { transform: translateY(-4px); }
.sv3-category-card-num { font-size: 11px; letter-spacing: 3px; color: var(--sv3-label); margin-bottom: 14px; }
.sv3-category-card-title { font-size: clamp(18px, 2vw, 24px); font-weight: 800; color: var(--sv3-dark); margin-bottom: 14px; }
.sv3-category-card-desc { font-size: 15px; line-height: 1.75; color: var(--sv3-gray); }

/* Reference grid (Referenzen) */
.sv3-ref-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: clamp(12px, 1.5vw, 20px); margin-top: clamp(40px, 5vw, 60px); }
.sv3-ref-item { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sv3-light-gray); cursor: pointer; }
.sv3-ref-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--sv3-ease); }
.sv3-ref-item:hover img { transform: scale(1.06); }
.sv3-ref-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%); display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: opacity 0.4s; }
.sv3-ref-item:hover .sv3-ref-item-overlay { opacity: 1; }
.sv3-ref-item-label { color: #fff; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }

/* Form (Kontakt) */
.sv3-form { display: grid; gap: 20px; max-width: 640px; margin-top: clamp(32px, 4vw, 48px); }
.sv3-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sv3-form-field { display: flex; flex-direction: column; gap: 6px; }
.sv3-form-field label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--sv3-label); }
.sv3-form-field input, .sv3-form-field textarea, .sv3-form-field select {
  font-family: 'Inter', sans-serif; font-size: 15px; padding: 14px 16px;
  border: 1px solid var(--sv3-faint); background: #fff; color: var(--sv3-dark);
  transition: border-color 0.3s;
}
.sv3-form-field input:focus, .sv3-form-field textarea:focus, .sv3-form-field select:focus {
  outline: none; border-color: var(--sv3-green);
}
.sv3-form-field textarea { resize: vertical; min-height: 140px; }
.sv3-form-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.sv3-form-consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--sv3-gray); line-height: 1.5; }
.sv3-form-consent input[type=checkbox] { margin-top: 4px; flex-shrink: 0; }
.sv3-form-consent a { color: var(--sv3-dark); text-decoration: underline; }
.sv3-form-recaptcha-notice { font-size: 11px; color: var(--sv3-label); line-height: 1.5; margin-top: 8px; }
.sv3-form-recaptcha-notice a { color: var(--sv3-dark); }
.sv3-form-submit { justify-self: start; }
.sv3-form-status { padding: 16px; font-size: 14px; line-height: 1.6; border-left: 3px solid var(--sv3-green); background: #fff; display: none; }
.sv3-form-status.sv3-error { border-left-color: var(--sv3-red); }
.sv3-form-status.sv3-show { display: block; }

/* Contact-Block (kontakt.html) */
.sv3-contact-info { display: grid; gap: 24px; }
.sv3-contact-info-item { padding-bottom: 24px; border-bottom: 1px solid var(--sv3-faint); }
.sv3-contact-info-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--sv3-label); margin-bottom: 8px; }
.sv3-contact-info-value { font-size: 16px; color: var(--sv3-dark); line-height: 1.6; }
.sv3-contact-info-value a { color: var(--sv3-dark); text-decoration: none; border-bottom: 1px solid rgba(93,104,110,0.3); }
.sv3-contact-info-value a:hover { color: var(--sv3-green); border-bottom-color: var(--sv3-green); }

/* Karriere Job Cards */
.sv3-job-grid { display: grid; gap: clamp(16px, 2vw, 24px); margin-top: clamp(32px, 4vw, 48px); }
.sv3-job-card { background: #fff; padding: clamp(28px, 3vw, 40px); display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; border-left: 3px solid var(--sv3-green); transition: transform 0.4s var(--sv3-ease); }
.sv3-job-card:hover { transform: translateX(4px); }
.sv3-job-card-info { flex: 1; min-width: 220px; }
.sv3-job-card-title { font-size: clamp(18px, 2vw, 24px); font-weight: 800; color: var(--sv3-dark); margin-bottom: 8px; }
.sv3-job-card-meta { font-size: 13px; color: var(--sv3-gray); display: flex; flex-wrap: wrap; gap: 16px; }
.sv3-job-card-meta span::before { content: '·'; margin-right: 16px; color: var(--sv3-faint); }
.sv3-job-card-meta span:first-child::before { content: ''; margin-right: 0; }

/* Legal pages (datenschutz.html, impressum.html) */
.sv3-legal { padding: clamp(80px, 10vw, 140px) 0; background: var(--sv3-cream); }
.sv3-legal-container { max-width: 880px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }
.sv3-legal h1 { font-size: clamp(32px, 4vw, 56px); font-weight: 300; color: var(--sv3-dark); line-height: 1.15; margin-bottom: clamp(32px, 4vw, 56px); }
.sv3-legal h1 strong { font-weight: 800; }
.sv3-legal h2 { font-size: clamp(22px, 2.5vw, 32px); font-weight: 800; color: var(--sv3-dark); margin-top: clamp(40px, 5vw, 64px); margin-bottom: 20px; }
.sv3-legal h3 { font-size: clamp(16px, 1.8vw, 20px); font-weight: 700; color: var(--sv3-dark); margin-top: 32px; margin-bottom: 12px; }
.sv3-legal p { font-size: 15px; line-height: 1.85; color: var(--sv3-gray); margin-bottom: 16px; }
.sv3-legal ul, .sv3-legal ol { margin: 16px 0 24px 24px; }
.sv3-legal ul li, .sv3-legal ol li { font-size: 15px; line-height: 1.85; color: var(--sv3-gray); margin-bottom: 8px; }
.sv3-legal a { color: var(--sv3-dark); border-bottom: 1px solid rgba(93,104,110,0.3); text-decoration: none; }
.sv3-legal a:hover { color: var(--sv3-green); border-bottom-color: var(--sv3-green); }
.sv3-legal-placeholder { background: #fff7e6; border-left: 3px solid #f4a727; padding: 16px 20px; margin: 16px 0; font-size: 14px; color: #8a5910; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .sv3-hero-nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(0,0,0,0.92); padding: 24px clamp(24px, 4vw, 60px); flex-direction: column; gap: 18px; align-items: flex-start; }
  .sv3-hero-nav-links.sv3-open { display: flex; }
  .sv3-nav-toggle { display: inline-flex; }
  .sv3-content-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .sv3-hero-text-first, .sv3-hero-text-rest { font-size: clamp(40px, 14vw, 80px); letter-spacing: -1px; }
  .sv3-bento { grid-template-columns: 1fr; }
  .sv3-bento-card--large { grid-row: auto; }
  .sv3-bento-card--large .sv3-bento-card-img { aspect-ratio: 16 / 10; }
  .sv3-about-grid { grid-template-columns: 1fr; gap: 32px; }
  .sv3-stats-grid { grid-template-columns: 1fr; gap: 48px; }
  .sv3-values-grid { grid-template-columns: 1fr; gap: 32px; }
  .sv3-footer-inner { flex-direction: column; text-align: center; }
  .sv3-footer-address { text-align: center; }
  .sv3-form-row { grid-template-columns: 1fr; }
}
