:root {
  --ink: #142034;
  --muted: #667085;
  --line: #d9e0ea;
  --paper: #f6f4ef;
  --white: #ffffff;
  --gold: #c7a767;
  --gold-dark: #98783c;
  --blue: #203f67;
  --deep: #0f1828;
  --green: #1d514d;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

section,
.wrap,
.card,
.card-body,
.service-tile,
.proof,
.region-grid,
.region-list,
.hero-note {
  min-width: 0;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.skip {
  position: fixed;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  background: var(--white);
  padding: 8px 12px;
  z-index: 99;
}

.skip:focus {
  left: 8px;
  top: 8px;
  width: auto;
  height: auto;
  overflow: visible;
  clip-path: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 118px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  color: #10213b;
}

.menu a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.menu a:hover,
.menu a.active {
  color: var(--gold-dark);
  border-color: var(--gold);
}

.phone {
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 24, 42, .83), rgba(12, 24, 42, .28)),
    url("images/tegernsee-winter.jpg") center / cover no-repeat;
  overflow: hidden;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero.compact {
  min-height: 430px;
}

.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 82px 24px;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 110px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 700;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: #26344c;
  overflow-wrap: anywhere;
}

h3 {
  font-size: 24px;
  color: #25324a;
  overflow-wrap: anywhere;
}

p,
li {
  overflow-wrap: anywhere;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(19px, 2.2vw, 25px);
  color: rgba(255, 255, 255, .9);
  overflow-wrap: anywhere;
}

.intro {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 19px;
  overflow-wrap: anywhere;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border-radius: 4px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
}

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

.btn.secondary {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .55);
}

.section {
  border-top: 1px solid var(--line);
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.hero-note {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(760px, 100%);
  max-width: 760px;
  margin-top: 26px;
  color: rgba(255, 255, 255, .9);
}

.hero-note span,
.region-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  font-size: 14px;
  font-weight: 700;
}

.stat {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 20px;
  border-radius: 6px;
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.card.lift {
  transition: transform .28s ease, box-shadow .28s ease;
}

.card.lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(15, 24, 40, .14);
}

.card-body {
  padding: 26px;
}

.card p,
.feature p,
.text-page p,
.text-page li,
.faq p {
  color: var(--muted);
}

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

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.feature img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 6px;
}

.image-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--deep);
}

.image-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: imageCycle 18s infinite;
}

.image-stage img:nth-child(1) { animation-delay: 0s; }
.image-stage img:nth-child(2) { animation-delay: 6s; }
.image-stage img:nth-child(3) { animation-delay: 12s; }

.region-band {
  background: var(--deep);
  color: var(--white);
  overflow: hidden;
}

.region-band h2,
.region-band h3 {
  color: var(--white);
}

.region-band .intro {
  color: rgba(255, 255, 255, .78);
}

.region-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: center;
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.region-list span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.9);
  font-weight: 700;
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.service-tile {
  min-height: 280px;
  display: flex;
  align-items: end;
  padding: 22px;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(15,24,40,.05), rgba(15,24,40,.78)), var(--image) center / cover no-repeat;
  transition: transform .28s ease, filter .28s ease;
}

.service-tile:hover {
  transform: translateY(-7px);
  filter: saturate(1.08) contrast(1.04);
}

.service-tile p {
  color: rgba(255, 255, 255, .88);
}

.service-tile h3 {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.proof {
  padding: 24px;
  border-left: 4px solid var(--gold);
  background: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.step strong {
  color: var(--gold-dark);
  font-size: 24px;
}

.faq {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.faq article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-strip {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: var(--white);
}

.contact-strip h2 {
  color: var(--white);
}

.contact-strip .wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
}

.contact-strip p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .88);
}

.form {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  max-width: 700px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cbd3df;
  border-radius: 4px;
  font: inherit;
  background: var(--white);
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.text-page {
  max-width: 920px;
}

.text-page h2 {
  margin-top: 34px;
  font-size: 30px;
}

.footer {
  background: var(--deep);
  color: rgba(255, 255, 255, .82);
}

.footer .wrap {
  padding-top: 54px;
  padding-bottom: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
}

.footer h3,
.footer h4 {
  color: var(--white);
}

.footer a:hover {
  color: var(--gold);
}

.copy {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
}

@media (max-width: 960px) {
  .nav {
    flex-wrap: wrap;
  }

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

  .menu {
    display: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    padding-top: 10px;
  }

  .menu.open {
    display: flex;
  }

  .grid,
  .grid.two,
  .feature,
  .region-grid,
  .contact-strip .wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-showcase,
  .proof-row {
    grid-template-columns: 1fr 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 590px;
  }

  .wrap {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

@media (max-width: 540px) {
  .nav {
    padding: 12px 18px;
  }

  .brand img {
    width: 118px;
  }

  h1 {
    max-width: min(342px, calc(100vw - 48px));
    font-size: 29px;
  }

  h2 {
    font-size: 28px;
    max-width: min(342px, calc(100vw - 48px));
  }

  h3 {
    font-size: 22px;
    max-width: min(342px, calc(100vw - 48px));
  }

  .lead,
  .intro {
    max-width: min(342px, calc(100vw - 48px));
    font-size: 16px;
  }

  p,
  .card p,
  .feature p,
  .text-page p,
  .text-page li,
  .faq p {
    max-width: min(342px, calc(100vw - 48px));
  }

  .hero-note span,
  .region-list span {
    max-width: 100%;
  }

  .hero-note {
    max-width: min(318px, calc(100vw - 72px));
    gap: 6px;
  }

  .hero-note span {
    min-height: 28px;
    padding: 5px 8px;
    font-size: 11px;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .service-showcase,
  .proof-row {
    grid-template-columns: 1fr;
  }

  .image-stage {
    min-height: 360px;
  }
}

@keyframes heroDrift {
  from { background-position: center center; }
  to { background-position: center 46%; }
}

@keyframes imageCycle {
  0%, 27% { opacity: 1; transform: scale(1); }
  33%, 94% { opacity: 0; transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}
