/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  background-color: #ffffff;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #1a4a6e;
}

h1 { font-size: 2.6rem; line-height: 1.2; }
h2 { font-size: 1.9rem; line-height: 1.3; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; }

/* =============================================
   LAYOUT HELPERS
============================================= */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 72px 0;
}

/* =============================================
   HEADER
============================================= */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e8f0;
  padding: 20px 0;
}

header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: #1a4a6e;
  letter-spacing: 0.03em;
}

.logo-subtitle {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  color: #7a9ab5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  gap: 4px;
}

.header-phone a {
  font-size: 1.05rem;
  font-weight: 400;
  color: #1a4a6e;
}

.header-hours {
  font-size: 0.78rem;
  color: #7a9ab5;
  letter-spacing: 0.04em;
}

/* =============================================
   NAV
============================================= */
nav {
  background-color: #1a4a6e;
}

nav .inner {
  display: flex;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

nav a {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 14px 18px;
  transition: color 0.2s, background-color 0.2s;
}

nav a:hover,
nav a.active {
  color: #ffffff;
  background-color: rgba(255,255,255,0.12);
}

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0d2d45 0%, #1a4a6e 60%, #4a7a99 100%);
  color: #ffffff;
  padding: 96px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(138,181,209,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8ab5d1;
  margin-bottom: 20px;
}

.hero h1 {
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 20px;
}

.hero h1 strong {
  font-weight: 400;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn-primary {
  background-color: #ffffff;
  color: #1a4a6e;
  border: 2px solid #ffffff;
}

.btn-primary:hover {
  background-color: #c8dff0;
  border-color: #c8dff0;
  color: #1a4a6e;
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  border-color: #ffffff;
  background-color: rgba(255,255,255,0.08);
}

/* =============================================
   INFO STRIP
============================================= */
.info-strip {
  background-color: #f7f9fb;
  border-bottom: 1px solid #e0e8f0;
  padding: 0;
}

.info-strip section {
  padding: 0;
}

.info-strip-inner {
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 0;
}

.info-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid #e0e8f0;
}

.info-item:last-child {
  border-right: none;
}

.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: #1a4a6e;
}

.info-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a9ab5;
  margin-bottom: 2px;
}

.info-value {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  color: #333333;
  font-weight: 400;
}

/* =============================================
   SECTION: LEISTUNGEN (SERVICES)
============================================= */
.section-services {
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-eyebrow {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a9ab5;
  margin-bottom: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background-color: #f7f9fb;
  border: 1px solid #e0e8f0;
  border-radius: 3px;
  padding: 32px 28px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  box-shadow: 0 4px 24px rgba(10,35,60,0.1);
  border-color: #b0cde0;
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.service-card h3 {
  color: #1a4a6e;
}

.service-card p {
  font-size: 0.93rem;
  color: #555555;
  margin-bottom: 0;
}

/* =============================================
   SECTION: ABOUT
============================================= */
.section-about {
  background-color: #e8eef4;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 3px;
  display: block;
}

.about-img-caption {
  margin-top: 12px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  color: #7a9ab5;
  letter-spacing: 0.04em;
}

.about-text h2 {
  margin-bottom: 1.2rem;
}

.about-text p {
  color: #555555;
  font-size: 0.97rem;
}

.about-credentials {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.88rem;
  color: #555555;
}

.credential-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #1a4a6e;
  flex-shrink: 0;
}

/* =============================================
   SECTION: TEAM
============================================= */
.section-team {
  background-color: #ffffff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
}

.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  object-fit: cover;
  background-color: #e0e8f0;
  border: 3px solid #c8dff0;
}

.team-name {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #1a4a6e;
  margin-bottom: 4px;
}

.team-role {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a9ab5;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 0.88rem;
  color: #666666;
}

/* =============================================
   SECTION: TESTIMONIALS
============================================= */
.section-testimonials {
  background-color: #1a4a6e;
  color: #ffffff;
}

.section-testimonials .section-eyebrow {
  color: #8ab5d1;
}

.section-testimonials h2 {
  color: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  padding: 32px 28px;
}

.testimonial-stars {
  color: #8ab5d1;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #8ab5d1;
  text-transform: uppercase;
}

/* =============================================
   SECTION: APPOINTMENT / CTA
============================================= */
.section-appointment {
  background: linear-gradient(135deg, #0d2d45 0%, #1a4a6e 100%);
  color: #ffffff;
  text-align: center;
}

.section-appointment h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-appointment p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 36px;
}

.appointment-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   SECTION: CONTACT / MAP
============================================= */
.section-contact {
  background-color: #f7f9fb;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-details h2 {
  margin-bottom: 1.4rem;
}

.contact-block {
  margin-bottom: 28px;
}

.contact-block-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a9ab5;
  margin-bottom: 6px;
}

.contact-block p {
  font-size: 0.95rem;
  color: #333333;
  margin-bottom: 0;
}

.contact-block a {
  color: #1a4a6e;
  font-weight: 400;
}

.contact-block a:hover {
  text-decoration: underline;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hours-table tr td {
  padding: 5px 0;
  color: #333333;
}

.hours-table tr td:first-child {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #555555;
  width: 50%;
}

.map-placeholder {
  width: 100%;
  height: 320px;
  background-color: #e0e8f0;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a9ab5;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  border: 1px solid #c8dff0;
}

/* =============================================
   FOOTER
============================================= */
footer {
  background-color: #0d2d45;
  color: rgba(255,255,255,0.7);
  padding: 48px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-name {
  color: #ffffff;
  font-size: 1.1rem;
}

.footer-brand .logo-subtitle {
  color: #7a9ab5;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8ab5d1;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.8);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {
  .services-grid,
  .team-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .services-grid,
  .team-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .info-strip-inner {
    flex-direction: column;
  }

  .info-item {
    border-right: none;
    border-bottom: 1px solid #e0e8f0;
  }

  .info-item:last-child {
    border-bottom: none;
  }

  nav .inner {
    flex-wrap: wrap;
  }

  nav a {
    padding: 10px 12px;
    font-size: 0.78rem;
  }

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

  .hero {
    padding: 60px 0 52px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }
}