@font-face {
  font-display: swap;
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
}
@font-face {
  font-display: swap; 
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/inter-v20-latin-300.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/inter-v20-latin-500.woff2') format('woff2');
}

    /* ─── RESET & BASE ───────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --anthrazit: #212222;
      --sand: #d6c9af;
      --sand-light: #e8dece;
      --sand-dark: #b8a98c;
      --white: #f7f4ef;
      --orange: #e05a1b;
      --orange-hover: #c44e16;
      --nav-h: 64px;
    }

    html {
      
      scroll-snap-type: y mandatory;
      overflow-y: scroll;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--anthrazit);
      color: var(--white);
      font-size: 16px;
      line-height: 1.65;
    }

.img-box {
  background-color: white;
  border: 1px solid black;
  padding: 1rem;
  border-radius: 15px;
}

    /* ─── NAVBAR ─────────────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: var(--nav-h);
      background: rgba(33, 34, 34, 0.97);
      border-bottom: 1px solid rgba(214, 201, 175, 0.15);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nav-inner {
      
      width: 100%;
      max-width: var(--content-max);
      padding: 0 var(--content-pad);
      
      /*display: grid;*/
      display: flex;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1.5rem;
    }

    .nav-brand {
      flex: 1;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 300;
      letter-spacing: 0.12em;
      color: var(--sand);
      text-transform: lowercase;
      white-space: nowrap;
    }

    .nav-brand span {
      color: var(--sand-dark);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      background: var(--orange);
      color: #fff;
      border: none;
      border-radius: 4px;
      padding: 0.5rem 1.1rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }

    .nav-cta:hover { background: var(--orange-hover); }

    .nav-cta svg { flex-shrink: 0; }

    .nav-right {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 1.8rem;
    }

    .nav-links {
      display: flex;
      gap: 1.6rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--sand-light);
      text-decoration: none;
      font-size: 0.82rem;
      letter-spacing: 0.06em;
      font-weight: 300;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--sand); }

    /* ─── COUNTRY DROPDOWN ───────────────────────────────────────── */
    .dropdown {
      position: relative;
    }

    .dropdown-toggle {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      background: none;
      border: 1px solid rgba(214, 201, 175, 0.3);
      border-radius: 3px;
      color: var(--sand-light);
      font-family: 'Inter', sans-serif;
      font-size: 0.78rem;
      letter-spacing: 0.05em;
      font-weight: 300;
      padding: 0.3rem 0.6rem;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
      white-space: nowrap;
    }

    .dropdown-toggle:hover {
      border-color: var(--sand);
      color: var(--sand);
    }

    .dropdown-toggle svg {
      transition: transform 0.2s;
    }

    .dropdown.open .dropdown-toggle svg {
      transform: rotate(180deg);
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      right: 0;
      top: calc(100% + 8px);
      background: #2a2b2b;
      border: 1px solid rgba(214, 201, 175, 0.2);
      border-radius: 4px;
      min-width: 140px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }

    .dropdown.open .dropdown-menu { display: block; }

    .dropdown-menu button {
      display: block;
      width: 100%;
      background: none;
      border: none;
      padding: 0.55rem 1rem;
      color: var(--sand-light);
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      text-align: left;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
      letter-spacing: 0.03em;
    }

    .dropdown-menu button:hover {
      background: rgba(214, 201, 175, 0.1);
      color: var(--sand);
    }

    /* ─── SHARED WIDTH CONSTRAINT ────────────────────────────────── */
    /* Nav inner, section inners and footer all share the same max-width
       and horizontal padding so content lines up perfectly edge-to-edge. */
    :root {
      --content-max: 1300px;
      --content-pad: 6vw;
    }

    /* ─── SCROLL SNAP SECTIONS ───────────────────────────────────── */
    .section {
      scroll-snap-align: start;
      height: 100vh;
      padding-top: var(--nav-h);
      display: flex;
      flex-direction: column;
    }

    .section-grid {
      display: flex;
  gap: 20px;
    }

    .section-equal-col {
      flex: 1;
      min-width: 0;
    }  

    .section-text {


      font-size: 0.95rem;
      font-weight: 300;
      color: rgba(247, 244, 239, 0.65);
      line-height: 1.8;
      margin-bottom: 1rem;

    }

    :nth-child(even of section.section) {
      background: #1a1b1b;
    }

    :nth-last-child(1 of section.section) {
    }

    /* The last section uses "end" so the browser can snap to its
       bottom edge, making the footer fully visible. */
    #kontakt {
      scroll-snap-align: end;
    }

    .section-inner {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;

            padding: 0 var(--content-pad);
      max-width: var(--content-max);
      margin: 0 auto;
      width: 100%;
    }

    /* ─── SECTION 1 — HERO ───────────────────────────────────────── */
    #hero {
      /* background: var(--anthrazit); */
    }

    #hero .section-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 4rem;
    }

    .hero-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--sand-dark);
      margin-bottom: 1.4rem;
    }

    .hero-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.6rem, 4.5vw, 4rem);
      font-weight: 300;
      line-height: 1.12;
      color: var(--white);
      margin-bottom: 1.6rem;
    }

    .hero-headline em {
      color: var(--sand);
      font-style: normal;
    }

    .hero-body {
      font-size: 0.95rem;
      font-weight: 300;
      color: rgba(247, 244, 239, 0.65);
      max-width: 420px;
      line-height: 1.8;
      margin-bottom: 2.2rem;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: none;
      border: 1px solid var(--sand);
      color: var(--sand);
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.75rem 1.6rem;
      cursor: pointer;
      border-radius: 2px;
      text-decoration: none;
      transition: background 0.25s, color 0.25s;
    }

    .hero-cta:hover {
      background: var(--sand);
      color: var(--anthrazit);
    }

    #hero-toc {
      color: var(--sand-light);
      font-weight: 300;
    }

    #hero-toc li {
      list-style-type: none;
    }

    #hero-toc li a {
      color: var(--sand-light);
      text-decoration: none;
    }

    #hero-toc li a:hover, a:active {
      text-decoration: underline; /* Unterstrich erscheint nur beim Hovern */
      color: rgba(247, 244, 239, 0.65);
    }

    #hero-toc li li {
      list-style-type: none;
      padding-left: 1rem;
    }

    .hero-image {
      width: 100%;
      aspect-ratio: 4 / 5;
      max-height: 65vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      color: rgba(214, 201, 175, 0.3);
    }

    .hero-image svg { opacity: 0.4; }

    /* ─── SECTION 2 ─────────────────────────────────── */

    .section-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--sand-dark);
      margin-bottom: 1.2rem;
    }

    .section-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 3.5rem;
    }

    .section-headline em {
      color: var(--sand);
      font-style: normal;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .service-card {
      padding: 2rem 1.8rem;
      background: rgba(214, 201, 175, 0.04);
      border: 1px solid rgba(214, 201, 175, 0.08);
      transition: background 0.25s, border-color 0.25s;
    }

    .service-card:hover {
      background: rgba(214, 201, 175, 0.08);
      border-color: rgba(214, 201, 175, 0.18);
    }

    .service-icon {
      width: 36px;
      height: 36px;
      margin-bottom: 1.2rem;
      color: var(--sand);
    }

    .service-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 0.65rem;
      letter-spacing: 0.02em;
    }

    .service-desc {
      font-size: 0.82rem;
      font-weight: 300;
      color: rgba(247, 244, 239, 0.55);
      line-height: 1.75;
    }

    /* ─── SECTION 3 ─────────────────────────────────── */

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .testimonial {
      padding: 2rem;
      border-top: 1px solid rgba(214, 201, 175, 0.25);
      position: relative;
    }

    .testimonial-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      color: var(--sand);
      line-height: 1;
      margin-bottom: 0.5rem;
      opacity: 0.5;
    }

    .testimonial-text {
      font-size: 0.88rem;
      font-weight: 300;
      color: rgba(247, 244, 239, 0.7);
      line-height: 1.8;
      margin-bottom: 1.4rem;
    }

    .testimonial-author {
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--sand-dark);
      font-weight: 400;
    }

    .testimonial-company {
      font-size: 0.72rem;
      color: rgba(214, 201, 175, 0.4);
      font-weight: 300;
      margin-top: 0.2rem;
    }

    /* ─── SECTION 4 ──────────────────────────── */
    #kontakt {
      display: flex;
      flex-direction: column;
    }

    #kontakt .section-inner {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 6rem;
    }

    .contact-left {
      flex: 1;
    }

    .contact-right {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .form-group label {
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--sand-dark);
      font-weight: 400;
    }

    .form-group input,
    .form-group textarea {
      background: rgba(247, 244, 239, 0.04);
      border: 1px solid rgba(214, 201, 175, 0.15);
      border-radius: 2px;
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 0.88rem;
      font-weight: 300;
      padding: 0.7rem 1rem;
      outline: none;
      transition: border-color 0.2s;
      resize: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--sand);
    }

    .form-group textarea {
      height: 100px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .btn-submit {
      align-self: flex-start;
      background: var(--sand);
      color: var(--anthrazit);
      border: none;
      border-radius: 2px;
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.75rem 2rem;
      cursor: pointer;
      transition: background 0.2s;
    }

    .btn-submit:hover { background: var(--sand-light); }

    /* ─── FOOTER ─────────────────────────────────────────────────── */

        footer {
          border-top: 1px solid rgba(214, 201, 175, 0.15);
          display: flex;
                color: var(--sand);
                                font-size: 0.7rem;
      font-weight: 300;
                padding: .5vw var(--content-pad);
      max-width: var(--content-max);
      margin-left: auto;
      margin-right: auto;
      width: 100%;

      scroll-snap-align: end;
        }

        footer a {
          text-decoration: none;
          color: var(--sand);
        }

        .footer-legal {
          flex: 1;
        }

        .footer-hearts, .footer-address {
          flex-grow: 0;
          flex-shrink: 0;
          flex-basis: auto;
          white-space: nowrap;
        }

        .footer-address {


      line-height: 1.7;
      letter-spacing: 0.02em;
        }
      

    /* ─── SVG HEARTS ─────────────────────────────────────────────── */
    .hearts-wrapper {
      position: relative;
      width: 90px;
      height: 52px;
    }

    .heart-de, .heart-eu {
      position: absolute;
    }

    .heart-eu {
      left: 0;
      top: 0;
      transform: rotate(-12deg);
    }

    .heart-de {
      left: 28px;
      top: 4px;
      transform: rotate(10deg);
    }

    /* ─── RESPONSIVE ─────────────────────────────────────────────── */
    @media (max-width: 900px) {
      nav {
        padding: 0 1.5rem;
        gap: 1rem;
      }

      .nav-brand { font-size: 0.85rem; }

      .nav-links { display: none; }

      #hero .section-inner {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
        overflow: auto;
      }

      .hero-image { /* max-height: 35vh; aspect-ratio: 16/7; */ }

      .services-grid { grid-template-columns: 1fr; }

      .testimonials-grid { grid-template-columns: 1fr; overflow: auto; }

      #kontakt .section-inner {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
        overflow: auto;
      }

      .form-row { grid-template-columns: 1fr; }

      footer {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
      }


      .footer-address { text-align: center; }

      .footer-hearts { justify-content: center; }
    }

    @media (max-width: 500px) {
      #countryDropdown { display: none; }
      .hideOnMobile { display: none; }

      .section-headline {
        margin-bottom: 1.5rem;
      }

      .section-text {

      line-height: 1.5;
      margin-bottom: 0.5rem;
      }

    }