﻿:root {
  --bg: #ececec;
  --surface: #ffffff;
  --ink: #1a2330;
  --muted: #303846;
  --line: #d8d8d8;
  --green: #3ea837;
  --soft-green: #c7d7b6;
  --blue: #1463d8;
  --soft-blue: #dce8ff;
  --shadow: 0 2px 10px rgba(20, 25, 35, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Lato", "Segoe UI", sans-serif;
  line-height: 1.45;
}

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

img,
svg {
  display: block;
}

.container-wide {
  width: min(1560px, 93vw);
  margin: 0 auto;
}

.container {
  width: min(1500px, 88vw);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
}

.topbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: min(210px, 20vw);
}

.brand-logo {
  width: 100%;
  max-height: 54px;
  height: auto;
  object-fit: contain;
}

.utility-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn,
.lang-btn,
.menu-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn {
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.icon-btn.light,
.lang-btn {
  background: #fff;
  color: #141b24;
}

.utility-icon {
  background: var(--soft-blue);
  color: var(--blue);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.phone-icon {
  background: var(--blue);
  color: #fff;
}

.utility-icon:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 99, 216, 0.22);
}

.phone-icon:hover {
  background: #0f56bf;
}

.utility-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 10px);
  right: 50%;
  transform: translateX(50%) translateY(-4px);
  padding: 8px 12px;
  border-radius: 999px;
  background: #0f1724;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.utility-icon:hover::after {
  opacity: 1;
  transform: translateX(50%) translateY(0);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phone-icon svg {
  width: 25px;
  height: 25px;
  stroke: none;
  fill: currentColor;
}

.handshake-icon {
  background: var(--blue);
  color: #fff;
}

.handshake-icon:hover {
  background: #0f56bf;
}

.handshake-icon svg {
  width: 24px;
  height: 24px;
  stroke: none;
  fill: currentColor;
}

.book-icon {
  background: var(--blue);
  color: #fff;
}

.book-icon:hover {
  background: #0f56bf;
}

.book-icon svg {
  stroke: currentColor;
  fill: none;
}

.flag-de {
  width: 23px;
  height: 15px;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  background: linear-gradient(180deg, #121212 33.33%, #e22f34 33.33%, #e22f34 66.66%, #f7c642 66.66%);
}

.menu-toggle {
  display: none;
  background: #fff;
  border: 1px solid #d7d7d7;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #192330;
  display: block;
}

.menu-toggle span + span {
  margin-top: 4px;
}

.nav-row {
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

.nav-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  font-size: 24px;
  font-weight: 400;
  color: #1f2733;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a .nav-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  flex: 0 0 auto;
}

.hero-section {
  padding-top: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: stretch;
}

.hero-copy {
  padding: 90px 70px 80px 0;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(58px, 5vw, 78px);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.hero-copy h2 {
  margin: 20px 0 24px;
  font-size: clamp(42px, 3.1vw, 58px);
  font-weight: 400;
  line-height: 1.12;
}

.hero-copy p {
  margin: 0 0 24px;
  font-size: clamp(24px, 1.35vw, 31px);
  line-height: 1.58;
}

.hero-copy .hero-lead {
  margin-bottom: 18px;
}

.hero-copy strong {
  font-weight: 900;
}

.hero-media {
  margin: 0;
  min-height: 560px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band {
  background: linear-gradient(90deg, transparent 0 44%, var(--soft-green) 44% 100%);
  padding: 34px 0 32px;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.quick-card {
  position: relative;
  min-height: 116px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.quick-card.has-badge {
  overflow: visible;
}

.badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #e2a11a;
  color: #fff;
  border-radius: 20px;
  font-size: 35px;
  font-weight: 700;
  padding: 5px 18px 7px;
  line-height: 1;
}

.quick-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.quick-icon.circle {
  border: 4px solid var(--green);
  border-radius: 50%;
}

.quick-icon svg {
  width: 37px;
  height: 37px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-content {
  flex: 1;
}

.quick-content strong {
  font-size: 44px;
  line-height: 1.18;
  font-weight: 400;
  display: block;
}

.quick-content small {
  width: 62px;
  height: 2px;
  background: #313946;
  display: block;
  margin-top: 14px;
}

.story-section h2,
.visit-copy h2,
.benefits-copy h2,
.next-title {
  margin: 0;
  font-size: clamp(54px, 3.2vw, 69px);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.story-section {
  padding-top: 104px;
}

.story-section h2 {
  text-align: center;
}

.intro-text {
  width: min(1120px, 92vw);
  margin: 36px auto 66px;
  text-align: center;
  font-size: clamp(25px, 1.3vw, 30px);
  line-height: 1.55;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.story-card {
  background: #f2f2f2;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #e2e2e2;
}

.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-card div {
  padding: 28px 24px 30px;
}

.story-card h3 {
  margin: 0 0 16px;
  font-size: 46px;
  color: var(--blue);
  font-weight: 700;
}

.story-card p {
  margin: 0;
  font-size: 40px;
  color: var(--ink);
  line-height: 1.48;
}

.visit-grid {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 90px;
  align-items: start;
}

.visit-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.contact-card {
  width: 82%;
  margin: 44px auto 0;
  background: #f1f1f1;
  border-radius: 12px;
  padding: 36px 34px;
  display: flex;
  gap: 26px;
  align-items: flex-start;
  box-shadow: inset 0 0 0 1px #e3e3e3;
}

.contact-card img {
  width: 152px;
  height: 152px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-card .label {
  margin: 0 0 8px;
  color: #202935;
  font-size: 32px;
}

.contact-card h3 {
  margin: 0 0 8px;
  font-size: 56px;
  font-weight: 700;
}

.contact-card p {
  margin: 0 0 8px;
  font-size: 34px;
  color: #2e3744;
}

.green-text {
  color: var(--green);
  font-weight: 700;
}

.visit-copy {
  padding-top: 26px;
}

.visit-copy p {
  margin: 24px 0;
  font-size: 39px;
  line-height: 1.6;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 322px;
  min-height: 90px;
  padding: 14px 34px;
  border: 2px solid #6a7179;
  font-size: 36px;
  letter-spacing: 0.01em;
  margin-top: 22px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 36% 64%;
  gap: 56px;
  align-items: stretch;
}

.benefits-copy ul {
  list-style: none;
  margin: 34px 0 38px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.benefits-copy li {
  position: relative;
  padding-left: 38px;
  font-size: 39px;
  line-height: 1.55;
}

.benefits-copy li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}

.benefits-media {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
}

.benefits-media img {
  width: 100%;
  height: 100%;
  min-height: 700px;
  object-fit: cover;
}

.next-section {
  padding-top: 40px;
}

.next-title {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 38px;
}

.next-grid {
  margin-bottom: 46px;
}

.footer-panel {
  background: #f4f4f4;
  border-radius: 6px 6px 0 0;
  border: 1px solid #dfdfdf;
  padding: 34px 36px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1.8fr;
  gap: 34px;
  align-items: start;
}

.footer-col h3 {
  margin: 0 0 12px;
  font-size: 45px;
  font-weight: 700;
}

.footer-col p,
.footer-col a {
  margin: 0 0 12px;
  font-size: 37px;
  line-height: 1.5;
}

.footer-links a {
  display: block;
  padding-left: 24px;
  position: relative;
}

.footer-links a::before {
  content: ">";
  position: absolute;
  left: 0;
  color: #a9a9a9;
  font-weight: 700;
}

.social-top {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 18px;
  align-items: start;
}

.mini-logo {
  width: 95px;
  height: 95px;
  background: #ececec;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.mini-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-icons {
  margin-top: 16px;
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ebebeb;
  color: #949494;
  display: grid;
  place-items: center;
  font-size: 37px;
  font-weight: 700;
  text-transform: lowercase;
}

.badges {
  margin-top: 22px;
  border-top: 1px solid #dfdfdf;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 34px;
}

.tag {
  min-width: 74px;
  min-height: 50px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 32px;
}

.badge-gold {
  background: linear-gradient(135deg, #f3ca6b, #b18424);
}

.badge-graphite {
  background: linear-gradient(135deg, #949494, #555);
}

.legal-strip {
  border-top: 1px solid #d6d6d6;
  background: #e4e4e4;
}

.legal-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 12px 0;
  font-size: 27px;
  color: #273140;
}

@media (max-width: 1440px) {
  .brand {
    max-width: min(180px, 24vw);
  }

  .main-nav a {
    font-size: 20px;
  }

  .hero-copy h1 {
    font-size: 56px;
  }

  .hero-copy h2 {
    font-size: 44px;
  }

  .hero-copy p,
  .quick-content strong,
  .story-card p,
  .visit-copy p,
  .benefits-copy li,
  .footer-col p,
  .footer-col a,
  .legal-inner {
    font-size: 24px;
  }

  .story-card h3,
  .contact-card h3,
  .footer-col h3,
  .next-title,
  .story-section h2,
  .visit-copy h2,
  .benefits-copy h2 {
    font-size: 38px;
  }

  .badge {
    font-size: 22px;
  }

  .outline-btn {
    min-height: 66px;
    min-width: 240px;
    font-size: 22px;
  }

  .contact-card .label {
    font-size: 20px;
  }

  .contact-card p,
  .badges,
  .social-icons a {
    font-size: 22px;
  }

  .tag {
    font-size: 20px;
    min-height: 36px;
    min-width: 52px;
  }

  .legal-inner {
    min-height: 60px;
  }
}

@media (max-width: 1100px) {
  .topbar {
    min-height: 72px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 12px;
    right: 12px;
    background: #f7f7f7;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 16px;
    gap: 14px;
  }

  .site-header.menu-open .main-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-row {
    position: relative;
  }

  .nav-inner {
    min-height: 56px;
    justify-content: flex-end;
  }

  .main-nav a {
    font-size: 18px;
  }

  .hero-grid,
  .visit-grid,
  .benefits-grid,
  .story-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 42px 0 24px;
  }

  .hero-media {
    min-height: 320px;
  }

  .cta-band {
    background: var(--soft-green);
  }

  .quick-card {
    min-height: 92px;
    padding: 16px;
  }

  .quick-content strong {
    font-size: 22px;
  }

  .visit-copy {
    padding-top: 0;
  }

  .contact-card {
    width: 100%;
    margin-top: 24px;
  }

  .benefits-media img {
    min-height: 320px;
  }

  .legal-inner {
    gap: 14px;
    font-size: 15px;
  }
}

@media (max-width: 700px) {
  .container-wide,
  .container {
    width: 94vw;
  }

  .brand {
    max-width: 150px;
  }

  .brand-logo {
    max-height: 42px;
  }

  .icon-btn,
  .lang-btn,
  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy h2,
  .story-section h2,
  .visit-copy h2,
  .benefits-copy h2,
  .next-title,
  .story-card h3,
  .contact-card h3,
  .footer-col h3 {
    font-size: 30px;
  }

  .hero-copy p,
  .intro-text,
  .story-card p,
  .visit-copy p,
  .benefits-copy li,
  .footer-col p,
  .footer-col a,
  .contact-card p {
    font-size: 19px;
  }

  .quick-content strong {
    font-size: 20px;
  }

  .outline-btn {
    width: 100%;
    min-width: 0;
    font-size: 18px;
  }

  .contact-card {
    flex-direction: column;
  }

  .contact-card img {
    width: 120px;
    height: 120px;
  }

  .footer-panel {
    padding: 22px 16px;
  }

  .social-top {
    grid-template-columns: 70px 1fr;
  }

  .mini-logo {
    width: 70px;
    height: 70px;
  }

  .utility-icon::after {
    font-size: 11px;
    padding: 7px 10px;
  }

  .social-icons a {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}
