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

:root {
  --primary: #0E7C7B;
  --primary-dark: #0a6362;
  --secondary: #123C5A;
  --accent: #E8B65A;
  --neutral: #F4F7F6;
  --white: #ffffff;
  --text: #1a2b3c;
  --text-light: #5a6b7c;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(18, 60, 90, 0.08);
  --shadow-lg: 0 12px 48px rgba(18, 60, 90, 0.12);
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1120px;
  --header-h: 64px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-dark);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn--small {
  font-size: 0.875rem;
  padding: 8px 18px;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(18,60,90,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.header__logo:hover {
  color: var(--primary-dark);
}

.header__nav {
  display: flex;
  gap: 28px;
}

.header__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--secondary);
}

.header__nav a:hover {
  color: var(--primary);
}

.header__cta {
  flex-shrink: 0;
}

/* Hero */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--secondary) 0%, #1a4a6a 50%, var(--primary) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(70% 100% at 50% 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin-bottom: 36px;
}

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

/* Sections */
.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--neutral);
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 8px;
}

.section__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--secondary);
  margin-bottom: 48px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(18,60,90,0.04);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about__text {
  font-size: 1.05rem;
  line-height: 1.7;
}

.about__text p + p {
  margin-top: 20px;
}

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

.highlight {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 16px;
  box-shadow: var(--shadow);
}

.highlight__number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.highlight__label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Opening Hours */
.hours-table {
  max-width: 480px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hours-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(18,60,90,0.05);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row--header {
  background: var(--secondary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hours-row--closed span:last-child {
  color: var(--accent);
  font-weight: 500;
}

.hours-row--today {
  background: rgba(14,124,123,0.06);
  font-weight: 600;
}

.hours-row--today span:first-child::after {
  content: ' (heute)';
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--primary);
}

.hours-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__item-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__item strong {
  color: var(--secondary);
}

.contact__item a {
  color: var(--primary);
  font-weight: 500;
}

.contact__item a:hover {
  color: var(--primary-dark);
}

.contact__map iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: var(--radius);
  display: block;
}

.contact__map a {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.7);
  padding: 32px 0;
  font-size: 0.875rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__inner nav {
  display: flex;
  gap: 20px;
}

.footer__inner nav a {
  color: rgba(255,255,255,0.7);
}

.footer__inner nav a:hover {
  color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

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

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact__map iframe {
    height: 200px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
