/* =========================
   CONTACT BODY (Consulting-like)
   ========================= */

.contact-body{
  background: #F6F4EE;
  padding: 52px 0 76px;
}

.contact-body .container{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

/* Big rounded panel */
.c-panel{
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(0,0,0,.10);
  background:
    radial-gradient(1200px 600px at 20% 0%,
      rgba(255,255,255,.95) 0%,
      rgba(255,255,255,.72) 45%,
      rgba(246,244,238,.45) 100%
    );
  box-shadow: 0 24px 70px rgba(0,0,0,.07);
  overflow: hidden;
}

/* subtle top line like consulting */
.c-panel::before{
  content:"";
  position:absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: 58%;
  height: 1px;
  background: rgba(0,0,0,.10);
  opacity: .7;
}

.c-panel-head{
  padding: 34px 34px 18px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(10px);
}

.c-chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(246,244,238,.55);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .78;
}

.c-title{
  margin: 14px 0 10px;
  font-size: 34px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.c-desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  opacity: .78;
}

/* Grid cards */
.c-grid{
  padding: 22px 22px 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.c-item{
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.62);
  box-shadow: 0 14px 40px rgba(0,0,0,.05);
}

.c-item-wide{
  grid-column: 1 / -1;
}

.c-no{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 700;
  letter-spacing: .02em;
  background: rgba(43,43,43,.88);
  color: #F6F4EE;
}

.c-label{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: 6px;
}

.c-value{
  font-size: 15px;
  line-height: 1.55;
  opacity: .92;
}

.c-value a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.c-note{
  font-size: 12px;
  opacity: .55;
  margin-left: 6px;
}

/* bottom quote */
.c-panel-foot{
  padding: 18px 26px 22px;
  border-top: 1px solid rgba(0,0,0,.08);
  text-align: center;
  background: rgba(246,244,238,.35);
}

.c-quote{
  font-size: 14px;
  opacity: .7;
  letter-spacing: .02em;
}

/* Responsive */
@media (max-width: 980px){
  .c-grid{ grid-template-columns: 1fr; }
  .c-panel-head{ padding: 28px 22px 16px; }
  .c-title{ font-size: 28px; }
}