/* hind-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Hind';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/hind-v16-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* hind-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Hind';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/hind-v16-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* hind-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Hind';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/hind-v16-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Cormorant Medium */
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/cormorant-v24-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}


:root {
  --green: hsl(145, 80%, 20%);
  --green-dark: hsl(145, 80%, 20%);
  --red: #bd1d1d;
  --cream: #f6f3eb;
  --paper: #ffffff;
  --ink: #20251f;
  --muted: #677066;
  --line: rgba(32, 37, 31, .14);
  --max: 1180px;
  --serif: 'Cormorant', serif;
  --sans: 'Hind', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
font: 300 clamp(1.25rem, 2vw, 1.55rem)/1.55 var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-soft { background: var(--cream); }
.section-softgreen { background: hsl(78, 25%, 90%); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header liegt über dem Hero */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: hsl(157 80% 12% / 60%);
  border: 0;
}

.header-inner {
  min-height: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* Branding im Header ausblenden – Logos können später separat ins Hero */
.brand {
  display: none;
}

.nav-toggle {
    display: none;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
    font-size: 1.5rem;
}

.main-nav a:hover {
  color: #fff;
  opacity: .75;
    text-decoration: underline;
}


/* HERO = immer kompletter Bildschirm */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 120px);
  min-height: 600px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    url("../img/hero-4.jpg")
    center center / cover no-repeat;

  color: #fff;
  overflow: hidden;
}


/* nur ganz leichte Abdunklung für die Schrift */
.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.08);
}


/* Text mittig */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 4vw;
  text-align: center;
}

.hero h1 {
  margin: 0;
  max-width: none;

  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .01rem;

  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.22);
}


/* Unterzeile und Button auf der Startseite ausblenden */
.hero-eyebrow,
.hero .button {
  display: none;
}


/* Mobil */
@media (max-width: 820px) {

  .site-header {
    position: absolute;
      background: transparent;
  }

  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-toggle span:not(.sr-only) {
    background: #fff;
  }

  .main-nav {
    top: 68px;
  }

  .main-nav a {
  }

  .hero {
    height: calc(100svh - 120px);
    min-height: 560px;
    background-position: center center;
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }
}

/* Infoband */
.infoband {
  position: relative;
  width: 100%;
  background: var(--green);
  border-top: 22px solid #bd1d1d;
  color: #fff;
    height: 120px;
}

.infoband::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 6px;
  background: #fff;
}

.infoband-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.infoband-text {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  text-align: center;
    padding-bottom: 12px;
    text-wrap: balance;
}

.infoband-logos {
display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  position: relative;
  top: -48px;
}

.infoband-logos img {
  display: block;
  width: auto;
  height: 120px;
  object-fit: contain;
}


/* Tablet / Smartphone */
@media (max-width: 800px) {
    .infoband-inner {
    flex-direction: column;
  }  
    .infoband-text{
        line-height: 2;
    }
    .infoband-logos{
        top: -36px;
    }
    .infoband-logos img{
        height: 80px;
    }
    .hero{
        height: calc(100svh - 160px);
    }
}

/* Sehr kleine Displays */
@media (max-width: 560px) {
 .infoband-text {
    line-height: 1;
    margin-top: 12px;
    }
}

/* Type */
.section-kicker {
  color: var(--green);
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .06em;
}
h2 {
  margin: 0 0 30px;
  font: 400 clamp(2rem, 3.5vw, 4rem)/1.08 var(--serif);
  letter-spacing: -.025em;
}
h3 {
  margin: 0 0 18px;
  font: 400 2rem/1.15 var(--serif);
}
p { 
    margin-top: 0;
    font: 300 clamp(1.25rem, 2vw, 1.55rem)/1.55 var(--sans);
}
.lead {
  font: 300 clamp(1.25rem, 2vw, 1.55rem)/1.55 var(--sans);
}
.balance{
    text-wrap: balance;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 13px 20px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: .08em;
  transition: .2s ease;
}
.button:hover { transform: translateY(-1px); background: var(--red); color: #fff; border-color: var(--red); }
.button-light { color: #fff; }
.button-light:hover { background: #fff; color: var(--green-dark); border-color: #fff; }

/* Cards */
.section-head { margin-bottom: 46px; }
.card-grid {
  display: grid;
  gap: 60px;
}
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  position: relative;
    background: white;
    padding: clamp(30px, 5vw, 52px);
    padding-bottom: calc(clamp(30px, 5vw, 52px) + 12px);
}
.card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 12px;

   background: linear-gradient(
    to bottom,
    var(--green-dark) 0 10px,
    #fff 10px 15px,
    var(--red) 15px 30px
);
height: 45px;
}
.service-note { max-width: 850px; margin: 34px auto 0; color: var(--ink); }

/* Experience */
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

/* Dates / locations */
.section-green {
  background: var(--green-dark);
  color: white;
}
.section-head.light .section-kicker { color: var(--green); }
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  margin-top: 48px;
}
.location-card {
    position: relative;
  background: white;
  color: var(--ink);
  padding: clamp(30px, 5vw, 50px);
    padding-bottom: 70px;
}
.location-card::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 12px;

   background: linear-gradient(
    to bottom,
    var(--green-dark) 0 10px,
    #fff 10px 15px,
    var(--red) 15px 30px
);
height: 45px;
}
.location-label {
  color: var(--red);
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .12em;
  font-weight: 700;
  margin-bottom: 4px;
}
.location-card dl { margin: 28px 0; }
.location-card dl div {
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
.location-card dl div:last-child { border-bottom: 1px solid var(--line); }
.location-card dt {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 700;
  color: var(--muted);
}
.location-card dd { margin: 2px 0 0; }

/* Contact */
.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin-top: 28px;
}
.contact-links a{
    color: var(--ink);
}

/* Footer */
.site-footer {
  background: hsl(78, 25%, 90%);
  color: var(--ink);
  font-size: 1rem;
}
.footer-inner {
  min-height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-inner p { margin: 0; }
.footer-inner nav { display: flex; gap: 22px; }
.footer-inner a { text-decoration: none; }
.footer-inner a:hover { color: var(--green-dark); }

@media (max-width: 820px) {
  .header-inner { min-height: 68px; }
  .nav-toggle {
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    background: #fff;
    display: grid;
    align-content: center;
    gap: 5px;
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) { height: 2px; background: var(--ink); display: block; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 18px 20px 24px;
    border-top: 1px solid var(--line);
    box-shadow: 0 14px 20px rgba(0,0,0,.08);
    flex-direction: column;
    gap: 0;
  }
  .main-nav.is-open { display: flex; text-align: right; line-height: 1; background: hsl(157 80% 12% / 60%);}
  .main-nav a { padding: 12px 0; }

  .hero { min-height: 68vh; }
  .hero h1 { max-width: 760px; }
  .card-grid.two,
  .location-grid,
  .split { grid-template-columns: 1fr; }
  .split { gap: 20px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .brand-name { font-size: .86rem; }
  .hero { height: calc(100svh - 170px); background-position: 58% center; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  .section { padding: 70px 0; }
  .footer-inner { padding: 25px 0; align-items: flex-start; flex-direction: column; gap: 10px; }
}
