/* Kontakt — Map section.
   One unified card: cream info panel (left) + interactive map (right).
   Sized so the whole section fits in a single desktop viewport. */

.map-section{background:var(--paper);padding:80px 0 96px}

/* The card. Grid: fixed-width info aside + flexible map. */
.map-stage{
  display:grid;
  grid-template-columns:380px 1fr;
  align-items:stretch;
  background:var(--cream);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--sh-lg);
  min-height:540px;
}

/* --- Left: info aside ---------------------------------------- */
.map-info{
  position:relative;
  padding:46px 42px;
  display:flex;
  flex-direction:column;
  gap:22px;
  background:var(--cream);
  border-right:1px solid var(--line);
}
/* subtle noise paper texture */
.map-info::before{
  content:"";position:absolute;inset:0;pointer-events:none;opacity:.05;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.map-info>*{position:relative;z-index:1}

.map-info h2{
  font-family:"Fraunces",serif;
  font-size:clamp(1.7rem,2.6vw,2.15rem);
  font-weight:300;
  line-height:1.1;
  color:var(--pine);
  letter-spacing:-.015em;
  margin:6px 0 4px;
}
.map-info h2 em{color:var(--teal);font-weight:400}

/* Address row, framed by dashed dividers */
.map-address{
  display:flex;gap:14px;align-items:flex-start;
  padding:20px 0;
  border-top:1px dashed var(--line);
  border-bottom:1px dashed var(--line);
}
.map-address .ic{
  width:42px;height:42px;border-radius:11px;
  background:var(--mint-50);color:var(--teal);
  display:flex;align-items:center;justify-content:center;flex:none;
}
.map-address b{
  display:block;color:var(--pine);
  font-family:"Fraunces",serif;font-size:1.12rem;font-weight:500;
  letter-spacing:-.005em;margin-bottom:2px;
}
.map-address span{color:var(--muted);font-size:.92rem}

/* Features checklist */
.map-features{list-style:none;display:grid;gap:11px;margin:0}
.map-features li{
  display:flex;gap:11px;align-items:center;
  color:var(--ink-soft);font-size:.92rem;font-weight:500;line-height:1.4;
}
.map-features svg{color:var(--teal);flex:none}

/* Actions pinned to bottom of card */
.map-actions{
  margin-top:auto;
  display:flex;flex-direction:column;gap:10px;
  padding-top:8px;
}
.map-actions .btn{
  justify-content:space-between;
  padding:14px 22px;
  font-size:.92rem;
}

/* --- Right: map canvas --------------------------------------- */
.map-canvas{
  position:relative;
  background:var(--cream);
  overflow:hidden;
}
.map-canvas iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
  min-height:540px;
  filter:grayscale(.16) contrast(1.02);
}

/* --- Responsive ---------------------------------------------- */
@media(max-width:980px){
  .map-section{padding:60px 0 74px}
  .map-stage{
    grid-template-columns:1fr;
    min-height:0;
  }
  .map-info{
    padding:36px 30px;
    border-right:none;
    border-bottom:1px solid var(--line);
  }
  .map-canvas iframe{min-height:380px}
}
@media(max-width:680px){
  .map-info{padding:30px 24px;gap:18px}
  .map-info h2{font-size:1.6rem}
  .map-canvas iframe{min-height:320px}
  .map-actions .btn{justify-content:center}
}
