:root {
  --navy: #0f1a2b;
  --steel: #1d2b40;
  --aqua: #38b4c6;
  --sand: #f3f0ea;
  --pearl: #fbfaf7;
  --sunset: #f7c7a0;
  --ink: #0c1220;
  --muted: #6d7381;
  --panel: rgba(255, 255, 255, 0.78);
  --shadow: 0 20px 50px rgba(9, 16, 32, 0.18);
  --shadow-soft: 0 18px 36px rgba(11, 23, 43, 0.1);
}

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

body {
  font-family: "Cabin", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 20%, #fef4eb 0%, #f6f0e8 45%, #eef3f6 100%);
  line-height: 1.6;
  font-size: 19px;
}

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

.hero {
  position: relative;
  padding: 36px 8vw 72px;
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(120deg, #f7f0e3 0%, #e5f0f5 60%, #e0e7f1 100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  display: grid;
  text-transform: uppercase;
  letter-spacing: 0.16rem;
  color: var(--navy);
}

.logo strong {
  font-size: 2.15rem;
  letter-spacing: 0.1rem;
}

.nav-links {
  display: flex;
  gap: 30px;
  font-weight: 600;
  color: var(--steel);
  font-size: 1.12rem;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--aqua);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--navy);
}

.hero-content {
  width: min(1240px, 100%);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  gap: 48px;
  align-items: start;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.tag {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

.hero h1 {
  font-size: clamp(3.55rem, 5.35vw, 5.75rem);
  margin: 18px 0 22px;
  color: var(--navy);
  max-width: 11ch;
}

.lead {
  font-size: 1.28rem;
  color: var(--steel);
  max-width: 38rem;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.03rem;
  font-size: 1.04rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.ghost {
  border: 1px solid var(--navy);
  color: var(--navy);
}

.btn:hover {
  transform: translateY(-2px);
}

.text-link {
  font-weight: 600;
  color: var(--aqua);
  font-size: 1.04rem;
}

.hero-shape {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 180, 198, 0.4), transparent 70%);
  right: -150px;
  bottom: -150px;
}

.hero-slider {
  border-radius: 32px;
  min-height: 360px;
  height: clamp(400px, 45vw, 580px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  background: #d9e2ea;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide:first-child {
  opacity: 1;
}

.js-enabled .hero-slide {
  opacity: 0;
}

.js-enabled .hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 26, 43, 0.18), rgba(56, 180, 198, 0.14));
}


.section {
  width: min(1240px, calc(100% - 16vw));
  margin: 0 auto;
  padding: 112px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 4.2vw, 4.2rem);
  color: var(--navy);
}

.section-heading p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 42rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.84rem;
  color: var(--aqua);
  font-weight: 700;
}






.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.card {
  background: var(--panel);
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 26, 43, 0.06);
  min-height: 184px;
}

.card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.28rem;
}

.card p {
  color: var(--steel);
  font-size: 1rem;
}


.contact {
  padding-top: 72px;
}

.contact-info {
  max-width: 920px;
  padding: 46px 48px;
  border-radius: 32px;
  background: var(--panel);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 26, 43, 0.08);
}

.contact-info h2 {
  margin: 12px 0 18px;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
}

.contact-info p {
  margin-bottom: 14px;
}

.contact-address {
  font-size: 1.1rem;
  color: var(--steel);
}

.contact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 28px 0 24px;
}

.contact-line {
  display: grid;
  grid-template-columns: 4.4rem auto;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  width: 100%;
}

.email-line {
  margin-top: 2px;
}

.contact-label {
  display: inline-block;
  font-weight: 700;
  color: var(--navy);
}

.contact-svg {
  display: block;
  height: 1.5em;
}

.phone {
  width: 160px;
  margin-left: 0;
}

.email {
  width: 190px;
  margin-left: 0;
}

.contact-hours {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 26, 43, 0.1);
}

.contact-hours strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.1rem;
}

.impressum-block {
  margin-top: 28px;
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 0.98rem;
}

.impressum-block strong {
  color: var(--navy);
}

.contact-note {
  margin-top: 24px;
  color: var(--steel);
  font-weight: 600;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--steel);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid #d5dbe5;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer {
  margin-top: 72px;
  background: linear-gradient(180deg, #162338 0%, var(--navy) 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer {
  width: min(1240px, calc(100% - 16vw));
  margin: 0 auto;
  padding: 68px 0 84px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  color: #fff;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-brand strong {
  font-size: 1.45rem;
  letter-spacing: 0.02rem;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 1.02rem;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .hero h1 {
    max-width: none;
  }

  .hero-slider {
    min-height: 320px;
    height: clamp(320px, 52vw, 460px);
  }

  .contact-info {
    max-width: none;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .logo {
    font-size: 1.2rem;
    letter-spacing: 0.12rem;
  }

  .logo strong {
    font-size: 1.6rem;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 0;
    background: #fff;
    padding: 18px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 30;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 24px 6vw 60px;
  }

  .nav,
  .hero-content,
  .section,
  .footer {
    width: min(1240px, calc(100% - 12vw));
  }

  .hero-content {
    margin-top: 28px;
    gap: 22px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.05rem);
    max-width: 8.5ch;
    margin: 14px 0 16px;
  }

  .lead {
    font-size: 0.94rem;
    max-width: none;
  }

  .tag {
    font-size: 0.72rem;
    letter-spacing: 0.08rem;
    padding: 6px 12px;
  }

  .btn {
    padding: 13px 20px;
    font-size: 0.92rem;
  }

  .hero-slider {
    border-radius: 24px;
    min-height: 220px;
    height: clamp(220px, 64vw, 300px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .section-heading p {
    font-size: 0.98rem;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card {
    min-height: auto;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .card h3 {
    font-size: 1.18rem;
  }

  .card p {
    font-size: 0.95rem;
  }

  .contact-info {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .contact-info h2 {
    font-size: clamp(1.8rem, 8.2vw, 2.35rem);
  }

  .contact-address {
    font-size: 1rem;
  }

  .site-footer {
    margin-top: 48px;
  }

  .footer {
    padding: 34px 0 42px;
    gap: 18px;
  }

  .footer-links {
    gap: 16px;
  }

  .contact-line {
    grid-template-columns: 3.8rem auto;
    gap: 6px;
    font-size: 0.98rem;
  }

  .email {
    width: 170px;
    margin-left: 0;
  }

  .phone {
    width: 140px;
  }

  .contact-hours {
    margin-top: 22px;
    padding-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
    transition: none !important;
  }
}
