/* ==========================
   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
  ========================== */
  
  .location-hero{
    position:relative;
    height:100vh;
    min-height:850px;
    display:flex;
    align-items:center;
    overflow:hidden;
  }
  
  .location-hero img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
  }
  
  .location-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(0,0,0,.12),rgba(0,0,0,.72));
  }
  
  .location-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;
  }
  
  .location-hero h1{
    font-size:clamp(4rem,7vw,7rem);
    line-height:.95;
    letter-spacing:-5px;
    margin-bottom:28px;
  }
  
  .location-hero p{
    font-size:1.15rem;
    max-width:680px;
    color:rgba(255,255,255,.88);
    margin-bottom:30px;
  }
  
  .hero-highlights{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:34px;
  }
  
  .hero-highlights span{
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(10px);
    color:white;
    border-radius:999px;
    padding:10px 15px;
    font-weight:800;
    font-size:.9rem;
  }
  
  /* ==========================
     BUTTONS
  ========================== */
  
  .hero-buttons,
  .map-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-dark,
  .btn-outline-dark,
  .btn-light{
    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{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.35);
    color:white;
  }
  
  .btn-dark{
    background:#0f3fae;
    color:white;
  }
  
  .btn-outline-dark{
    background:white;
    color:#0f3fae;
    border:2px solid #0f3fae;
  }
  
  .btn-light{
    background:white;
    color:#111;
  }
  
  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-dark:hover,
  .btn-outline-dark:hover,
  .btn-light:hover{
    transform:translateY(-3px);
  }
  
  /* ==========================
     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;
  }
  
  /* ==========================
     INFOBAR
  ========================== */
  
  .location-info-bar{
    background:#fff;
    box-shadow:0 12px 40px rgba(0,0,0,.06);
    position:relative;
    z-index:4;
  }
  
  .info-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr 1fr auto;
    gap:26px;
    align-items:center;
    padding:28px 0;
  }
  
  .info-item span{
    display:block;
    color:#777;
    font-size:.85rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.6px;
    margin-bottom:6px;
  }
  
  .info-item strong{
    font-size:1rem;
  }
  
  .info-item a{
    color:#111;
    text-decoration:none;
  }
  
  .info-action{
    display:flex;
    justify-content:flex-end;
  }
  
  /* ==========================
     STATS
  ========================== */
  
  .location-stats{
    padding:80px 0;
    background:#fafafa;
  }
  
  .stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
  }
  
  .stat-card{
    background:white;
    border-radius:30px;
    padding:38px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
  }
  
  .stat-card strong{
    display:block;
    color:#0f3fae;
    font-size:3.6rem;
    line-height:1;
    margin-bottom:12px;
  }
  
  .stat-card span{
    color:#666;
    font-weight:700;
  }
  
  /* ==========================
     SPECIAL
  ========================== */
  
  .special-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:start;
  }
  
  .special-grid p{
    color:#555;
    font-size:1.05rem;
    margin-bottom:22px;
  }
  
  /* ==========================
     EXPERIENCE
  ========================== */
  
  .location-experience{
    background:#fafafa;
  }
  
  .experience-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
  }
  
  .experience-card{
    background:white;
    border-radius:32px;
    padding:36px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    transition:.3s ease;
  }
  
  .experience-card:hover{
    transform:translateY(-8px);
  }
  
  .experience-card span{
    display:block;
    font-size:2.4rem;
    margin-bottom:18px;
  }
  
  .experience-card h3{
    margin-bottom:12px;
  }
  
  .experience-card p{
    color:#666;
  }
  
  /* ==========================
     TEAM
  ========================== */
  
  .location-team{
    background:white;
  }
  
  .team-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
  }
  
  .team-member{
    background:#f8f9fc;
    border-radius:34px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.05);
    transition:.3s ease;
  }
  
  .team-member:hover{
    transform:translateY(-8px);
  }
  
  .team-member img{
    width:100%;
    height:360px;
    object-fit:cover;
    object-position:center top;
    display:block;
  }
  
  .team-member div{
    padding:28px;
  }
  
  .team-member span{
    display:inline-flex;
    background:#eef4ff;
    color:#0f3fae;
    border-radius:999px;
    padding:7px 12px;
    font-size:.8rem;
    font-weight:900;
    margin-bottom:14px;
  }
  
  .team-member h3{
    margin-bottom:10px;
    font-size:1.35rem;
  }
  
  .team-member p{
    color:#666;
  }
  
  /* ==========================
     GALERIE
  ========================== */
  
  .location-gallery{
    padding:120px 0;
    background:#fafafa;
  }
  
  .gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:260px;
    gap:22px;
  }
  
  .gallery-grid img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:28px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
  }
  
  .gallery-grid img:first-child{
    grid-column:span 2;
    grid-row:span 2;
  }
  
  /* ==========================
     WORKSHOP CTA
  ========================== */
  
  .workshop-cta{
    padding:90px 0;
    background:white;
  }
  
  .workshop-card{
    background:#0f3fae;
    color:white;
    border-radius:42px;
    padding:60px;
    display:grid;
    grid-template-columns:1fr auto;
    gap:40px;
    align-items:center;
  }
  
  .workshop-card .section-tag{
    color:rgba(255,255,255,.72);
  }
  
  .workshop-card p{
    color:rgba(255,255,255,.86);
    max-width:700px;
    margin-top:18px;
  }
  
  /* ==========================
     MAP
  ========================== */
  
  .location-map{
    background:#fafafa;
  }
  
  .map-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:70px;
    align-items:center;
  }
  
  .map-grid p{
    color:#555;
    margin:22px 0 30px;
  }
  
  .map-image{
    border-radius:34px;
    overflow:hidden;
    background:white;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
  }
  
  .map-image img{
    width:100%;
    display:block;
  }
  
  /* ==========================
     MORE LOCATIONS
  ========================== */
  
  .more-locations{
    background:white;
  }
  
  .more-location-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
  }
  
  .more-location-card{
    position:relative;
    min-height:260px;
    border-radius:28px;
    overflow:hidden;
    text-decoration:none;
    color:white;
  }
  
  .more-location-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s ease;
  }
  
  .more-location-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.7));
  }
  
  .more-location-card span{
    position:absolute;
    left:22px;
    bottom:20px;
    z-index:2;
    font-size:1.4rem;
    font-weight:900;
  }
  
  .more-location-card:hover img{
    transform:scale(1.08);
  }
  
  /* ==========================
     RESPONSIVE
  ========================== */
  
  @media(max-width:1100px){
  
    .info-grid{
      grid-template-columns:1fr 1fr;
    }
  
    .info-action{
      justify-content:flex-start;
    }
  
    .stats-grid,
    .experience-grid,
    .more-location-grid{
      grid-template-columns:repeat(2,1fr);
    }
  
    .special-grid,
    .map-grid,
    .workshop-card{
      grid-template-columns:1fr;
    }
  
    .team-grid{
      grid-template-columns:1fr 1fr;
    }
  }
  
  @media(max-width:700px){
  
    .section-spacing{
      padding:90px 0;
    }
  
    .location-hero{
      min-height:760px;
    }
  
    .location-hero h1{
      letter-spacing:-2px;
    }
  
    .hero-buttons,
    .map-actions{
      flex-direction:column;
    }
  
    .btn-primary,
    .btn-secondary,
    .btn-dark,
    .btn-outline-dark,
    .btn-light{
      width:100%;
    }
  
    .info-grid,
    .stats-grid,
    .experience-grid,
    .team-grid,
    .more-location-grid{
      grid-template-columns:1fr;
    }
  
    .gallery-grid{
      grid-template-columns:1fr;
      grid-auto-rows:250px;
    }
  
    .gallery-grid img:first-child{
      grid-column:auto;
      grid-row:auto;
    }
  
    .workshop-card{
      padding:36px;
    }
  
    .team-member img{
      height:310px;
    }
  }