/* ─── Custom Properties ──────────────────────────────── */
:root {
  --navy:        #1c3557;
  --navy-dark:   #142845;
  --navy-muted:  rgba(28, 53, 87, 0.08);
  --orange:      #d4621b;
  --orange-hover:#bf5718;
  --bg:          #ffffff;
  --bg-alt:      #f7f6f2;
  --text:        #1a1a1a;
  --text-mid:    #4a4a4a;
  --text-muted:  #888;
  --border:      #e2e1de;
  --shadow-sm:   0 2px 8px rgba(28,53,87,.08);
  --shadow-md:   0 4px 24px rgba(28,53,87,.12);
  --radius:      0.3rem;
  --font-display:'Lora', serif;
  --font-body:   'Source Sans 3', sans-serif;
}

/* ─── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65em;
  font-size: 1rem;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ─────────────────────────────────────── */
h1 { font-family: var(--font-display); font-size: 3rem;  font-weight: 700; line-height: 1.2em; }
h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; line-height: 1.3em; }
h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; line-height: 1.4em; }
h4 { font-family: var(--font-body);    font-size: 1rem;   font-weight: 600; }

/* ─── Utility ────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.8rem;
}

.section-label {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label h2 { margin-bottom: 0.8rem; }
.section-label p  { color: var(--text-mid); max-width: 52rem; margin: 0 auto; font-size: 1.1rem; }

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  box-sizing: border-box;
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
}
.btn-primary:hover { background: var(--orange-hover); border-color: var(--orange-hover); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--navy); }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ─── Top Bar ────────────────────────────────────────── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  font-size: 0.9rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 2rem; }
.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.topbar-item svg { flex-shrink: 0; opacity: .7; }
.topbar-item a { color: inherit; }
.topbar-item a:hover { color: #fff; }
.topbar-right { font-size: 0.85rem; }

/* ─── Navigation ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-logo-img {
  width: 6rem;
  height: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--navy); background: var(--navy-muted); }
.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  margin-left: 0.4rem;
}
.nav-cta:hover { background: var(--orange-hover) !important; }

/* ─── Hamburger (mobile) ─────────────────────────────── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--navy);
}
.nav-mobile {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
}
.nav-mobile.is-open { display: block; }
.nav-mobile a {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* ─── Progress Bar ───────────────────────────────────── */
#progress-bar {
  position: fixed;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--orange);
  z-index: 200;
  transition: width .1s linear;
}

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 36rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 40, 69, 0.82) 0%,
    rgba(20, 40, 69, 0.60) 55%,
    rgba(20, 40, 69, 0.25) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}
.hero-content { padding-bottom: 0; }
.hero-content h1 {
  color: #fff;
  margin-bottom: 1.2rem;
}
.hero-content .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 2rem;
  max-width: 36rem;
}
.hero-image { display: none; }

/* ─── Trust Strip ────────────────────────────────────── */
.trust-strip {
  background: var(--navy);
  color: #fff;
  padding: 24px 0;
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.2);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.trust-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.3;
}
.trust-sep { display: none; }

/* ─── Services ───────────────────────────────────────── */
.services {
  padding: 5rem 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card-img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
}
.service-card-img-placeholder {
  width: 100%;
  height: 10rem;
  background: var(--navy-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-body {
  padding: 1.5rem;
  border-top: 3px solid var(--orange);
}
.service-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--navy-muted);
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--navy);
}
.service-card h3 { margin-bottom: 0.5rem; color: var(--navy); font-size: 1.2rem; }
.service-card p  { color: var(--text-mid); font-size: 0.95rem; line-height: 1.5; }
.service-list {
  margin-top: 0.6rem;
  padding-left: 1rem;
  list-style: disc;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── About ──────────────────────────────────────────── */
.about {
  padding: 5rem 0;
  background: var(--bg-alt);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  border-radius: 0.4rem;
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--orange);
  color: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: 0.4rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about-badge .badge-text {
  font-size: 0.85rem;
  opacity: .9;
}
.about-content h2 { color: var(--navy); margin-bottom: 1.2rem; }
.about-content p  { color: var(--text-mid); margin-bottom: 1rem; font-size: 1.05rem; }
.about-content p:last-child { margin-bottom: 0; }
.about-content .about-signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about-sig-text strong { display: block; font-weight: 600; color: var(--navy); }
.about-sig-text span  { font-size: 0.9rem; color: var(--text-muted); }

/* ─── Why Us ─────────────────────────────────────────── */
.why-us {
  padding: 5rem 0;
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.why-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 0.4rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.why-item .why-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.why-item h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.5rem; }
.why-item p  { color: var(--text-mid); font-size: 0.95rem; }

/* ─── Testimonials ───────────────────────────────────── */
.testimonials {
  padding: 5rem 0;
  background: var(--navy);
  color: #fff;
}
.testimonials .section-label .eyebrow { color: var(--orange); }
.testimonials .section-label h2 { color: #fff; }
.testimonials .section-label p  { color: rgba(255,255,255,.7); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testi-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0.4rem;
  padding: 2rem;
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.2rem;
}
.testi-stars svg { color: var(--orange); }
.testi-card blockquote {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7em;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-card blockquote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--orange);
  line-height: 0;
  vertical-align: -1rem;
  margin-right: 0.2rem;
}
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.testi-author-info strong { display: block; color: #fff; font-size: 0.95rem; }
.testi-author-info span  { font-size: 0.85rem; color: rgba(255,255,255,.55); }

/* ─── FAQ ────────────────────────────────────────────── */
.faq {
  padding: 5rem 0;
  background: var(--bg-alt);
}
.faq-list {
  max-width: 56rem;
  margin: 3rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  cursor: pointer;
  gap: 1rem;
}
.faq-question h3 {
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--navy);
}
.faq-toggle {
  width: 3rem;
  height: 3rem;
  border-radius: 0.3rem;
  background: var(--navy-muted);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.faq-toggle svg { transition: transform .25s; }
.faq-item.is-open .faq-toggle { background: var(--navy); color: #fff; }
.faq-item.is-open .faq-toggle svg { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 1.5rem;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7em;
  max-width: 48rem;
}
.faq-item.is-open .faq-answer { display: block; }

/* ─── CTA Strip ──────────────────────────────────────── */
.cta-strip {
  background: var(--orange);
  padding: 4rem 0;
  text-align: center;
  color: #fff;
}
.cta-strip h2 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
}
.cta-strip p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ─── Contact Section ────────────────────────────────── */
#kontakt {
  padding: 5rem 0;
  background: var(--bg);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { color: var(--navy); margin-bottom: 1.5rem; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--text-mid);
  font-size: 1rem;
}
.contact-row svg { color: var(--navy); flex-shrink: 0; margin-top: 2px; }
.contact-row a { color: inherit; }
.contact-row a:hover { color: var(--navy); }
.contact-hours { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.contact-hours h3 { color: var(--navy); font-size: 1rem; margin-bottom: 0.8rem; }
.contact-hours p  { color: var(--text-mid); font-size: 0.95rem; }
.contact-map { border-radius: 0.4rem; overflow: hidden; box-shadow: var(--shadow-sm); }
.contact-map iframe { display: block; width: 100%; height: 26rem; border: 0; }

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .nav-logo-name { color: #fff; }
.footer-brand .nav-logo-sub  { color: rgba(255,255,255,.5); }
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.95rem; transition: color .2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: #fff; }

/* ─── Contact Modal ──────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.is-open { display: flex; }
.modal-card {
  background: #fff;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 54rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header {
  background: var(--navy);
  color: #fff;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h2 { color: #fff; font-size: 1.4rem; }
.modal-header p  { color: rgba(255,255,255,.7); font-size: 0.9rem; margin-top: 0.2rem; }
.modal-close {
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: background .2s;
}
.modal-close:hover { background: rgba(255,255,255,.25); }
.modal-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
}
.modal-info {
  padding: 2rem;
  background: var(--bg-alt);
  border-right: 1px solid var(--border);
}
.modal-info h3 { color: var(--navy); font-size: 1rem; margin-bottom: 1.2rem; font-family: var(--font-body); font-weight: 600; }
.modal-contact-list { display: flex; flex-direction: column; gap: 0.9rem; }
.modal-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-mid);
  font-size: 0.95rem;
}
.modal-contact-item svg { color: var(--navy); flex-shrink: 0; margin-top: 2px; }
.modal-contact-item a { color: var(--navy); font-weight: 600; }
.modal-contact-item a:hover { text-decoration: underline; }
.modal-hours { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.modal-hours p { color: var(--text-mid); font-size: 0.9rem; }
.modal-map iframe { display: block; width: 100%; height: 100%; min-height: 22rem; border: 0; }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 980px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }

  .trust-num   { font-size: 1.4rem; }
  .trust-label { font-size: 0.8rem; }

  .topbar { display: none; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; align-items: center; }

  .hero { min-height: 28rem; padding: 4rem 0; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .about-inner { grid-template-columns: 1fr; gap: 3rem; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .testi-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-inner { grid-template-columns: 1fr; }
  .contact-info { padding: 0 1.5rem; }
  .contact-map iframe { height: 18rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand  { grid-column: 1 / -1; }

  .modal-body { grid-template-columns: 1fr; }
  .modal-info { border-right: none; border-bottom: 1px solid var(--border); }
  .modal-map iframe { height: 16rem; }

}

@media (max-width: 560px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .container { padding: 0 1.2rem; }

  .topbar { display: none; }

  .hero { min-height: 24rem; padding: 3.5rem 0; }

  .services-grid  { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }

  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }

  .about-badge { right: 0; }

  .trust-strip .container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.5rem;
  }
  .trust-item:nth-child(even) { border-right: none; }
  .trust-num { font-size: 1.5rem; }
}

@media (max-width: 400px) {
  .container { padding: 0 1rem; }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }

  .hero-content .lead { font-size: 0.95rem; }

  .trust-num { font-size: 1.2rem; }
  .trust-item .label { font-size: 0.8rem; }
}
