/* SECTIONS + SERVICES + GALLERY + CONTACT */

.section{ padding: 44px 0; }

.section--alt{
  background: color-mix(in srgb, var(--card) 60%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 16px;
}

.section__head h2{
  margin:0;
  font-size: 1.85rem;
}

.sub{
  margin:0;
  color: var(--muted);
  max-width: 60ch;
}

/* SERVICES / CARDS */
.grid{ display:grid; gap:14px; }

.services{ grid-template-columns: repeat(3, 1fr); }

.item{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}

.item h3{ margin:0 0 6px; }
.item p{ margin:0; color: var(--muted); line-height: 1.55; }

/* GALLERY */
.gallery{ grid-template-columns: repeat(3, 1fr); }

.photo{
  margin:0;
  overflow:hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}

.photo img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}

.photo figcaption{
  padding: 12px 14px;
  font-weight: 950;
  color: var(--muted);
}

/* BOX / CONTACT */
.box{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}

.box p{ margin:0 0 10px; color: var(--muted); line-height: 1.6; }
.box p:last-child{ margin:0; }

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}

.big{
  font-size: 1.75rem;
  margin: 6px 0 0;
  font-weight: 1000;
}

.small{ color: var(--muted); line-height: 1.55; }

.map{
  margin-top:12px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: linear-gradient(135deg, rgba(10,102,255,.12), rgba(0,194,168,.10));
}

.dot{
  width:14px;
  height:14px;
  border-radius:50%;
  background: var(--accent2);
  box-shadow: 0 0 0 6px rgba(0,194,168,.18);
}

.map__t{ font-weight: 1000; }
.map__s{ color: var(--muted); }

/* RESPONSIVE (SECTIONS) */
@media (max-width: 760px){
  .services{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
}

