/* ==========================
   BASIS
========================== */

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:#111;
    line-height:1.6;
  }
  
  .container{
    width:90%;
    max-width:1320px;
    margin:0 auto;
  }
  
  .section-spacing{
    padding:120px 0;
  }
  
  /* ==========================
     HERO
  ========================== */
  
  .standorte-hero{
    position:relative;
    height:90vh;
    min-height:750px;
    display:flex;
    align-items:center;
    overflow:hidden;
  }
  
  .standorte-hero img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
  }
  
  .standorte-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
      180deg,
      rgba(0,0,0,.15),
      rgba(0,0,0,.70)
    );
  }
  
  .standorte-hero-content{
    position:relative;
    z-index:2;
    color:white;
    max-width:850px;
  }
  
  .hero-badge{
    display:inline-flex;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    margin-bottom:24px;
    font-size:14px;
    font-weight:700;
  }
  
  .standorte-hero h1{
    font-size:clamp(4rem,7vw,7rem);
    line-height:.95;
    letter-spacing:-5px;
    margin-bottom:24px;
  }
  
  .standorte-hero p{
    max-width:700px;
    font-size:1.15rem;
    color:rgba(255,255,255,.88);
  }
  
  /* ==========================
     TYPO
  ========================== */
  
  .section-tag{
    display:inline-block;
    margin-bottom:18px;
    color:#2563eb;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
  }
  
  .section-head{
    text-align:center;
    margin-bottom:70px;
  }
  
  .section-head p{
    max-width:760px;
    margin:14px auto 0;
    color:#666;
  }
  
  .centered{
    text-align:center;
  }
  
  h2{
    font-size:clamp(2.8rem,4vw,4.8rem);
    line-height:1.05;
    letter-spacing:-3px;
  }
  
  /* ==========================
     STANDORTE GRID
  ========================== */
  
  .location-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
  }
  
  .location-card{
    position:relative;
    min-height:520px;
    border-radius:34px;
    overflow:hidden;
    text-decoration:none;
    color:white;
    transition:.4s ease;
  }
  
  .location-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
  }
  
  .location-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
      180deg,
      rgba(0,0,0,.08),
      rgba(0,0,0,.72)
    );
  }
  
  .location-card:hover{
    transform:translateY(-10px);
  }
  
  .location-card:hover img{
    transform:scale(1.08);
  }
  
  .location-content{
    position:absolute;
    left:24px;
    right:24px;
    bottom:24px;
    z-index:2;
  }
  
  .location-content span{
    display:inline-flex;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(12px);
    font-size:.8rem;
    font-weight:800;
    margin-bottom:14px;
  }
  
  .location-content h2{
    font-size:2rem;
    margin-bottom:12px;
    letter-spacing:-1px;
  }
  
  .location-content p{
    color:rgba(255,255,255,.85);
    font-size:.95rem;
  }
  
  /* ==========================
     INFO BLOCK
  ========================== */
  
  .locations-info{
    padding:0 0 120px;
  }
  
  .info-card{
    background:#f8f9fc;
    border-radius:42px;
    padding:80px;
    text-align:center;
  }
  
  .info-card h2{
    max-width:850px;
    margin:0 auto 20px;
  }
  
  .info-card p{
    max-width:780px;
    margin:auto;
    color:#666;
    font-size:1.08rem;
  }
  
  /* ==========================
     CTA
  ========================== */
  
  .locations-cta{
    background:#111827;
    color:white;
    text-align:center;
    padding:120px 0;
  }
  
  .locations-cta h2{
    margin-bottom:20px;
  }
  
  .locations-cta p{
    max-width:760px;
    margin:0 auto 34px;
    color:rgba(255,255,255,.75);
  }
  
  .cta-buttons{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
  }
  
  .btn-primary,
  .btn-secondary-dark{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:58px;
    padding:0 32px;
    border-radius:999px;
    text-decoration:none;
    font-weight:800;
    transition:.3s ease;
  }
  
  .btn-primary{
    background:white;
    color:#111;
  }
  
  .btn-secondary-dark{
    background:#0f3fae;
    color:white;
  }
  
  .btn-primary:hover,
  .btn-secondary-dark:hover{
    transform:translateY(-3px);
  }
  
  /* ==========================
     RESPONSIVE
  ========================== */
  
  @media(max-width:1300px){
  
    .location-grid{
      grid-template-columns:repeat(3,1fr);
    }
  
  }
  
  @media(max-width:900px){
  
    .location-grid{
      grid-template-columns:repeat(2,1fr);
    }
  
    .info-card{
      padding:50px;
    }
  
  }
  
  @media(max-width:700px){
  
    .section-spacing{
      padding:90px 0;
    }
  
    .standorte-hero{
      min-height:700px;
    }
  
    .standorte-hero h1{
      letter-spacing:-2px;
    }
  
    .location-grid{
      grid-template-columns:1fr;
    }
  
    .location-card{
      min-height:420px;
    }
  
    .info-card{
      padding:34px;
    }
  
    .cta-buttons{
      flex-direction:column;
    }
  
    .btn-primary,
    .btn-secondary-dark{
      width:100%;
    }
  
  }