/* ============ Contact ============ */
.contact-frame {
  background: linear-gradient(135deg, var(--c-lavender) 0%, var(--c-pink) 60%, var(--c-yellow) 100%);
  border-radius: var(--r-xl);
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
}
.contact-frame .deco {
  position: absolute;
  opacity: 0.55;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.contact-grid h2 {
  font-size: 64px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.contact-grid p {
  font-size: 18px;
  color: var(--t-body);
  max-width: 420px;
}
.contact-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--sh-card);
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-row label {
  font-family: var(--f-pixel);
  font-size: 12px;
  color: var(--c-purple);
  letter-spacing: 0;
}
.form-row input, .form-row textarea, .form-row select {
  border: 1.5px solid var(--b-soft);
  border-radius: var(--r);
  padding: 14px 18px;
  font-family: var(--f-body);
  font-size: 15px;
  background: var(--bg);
  color: var(--t-strong);
  outline: none;
  transition: all 200ms ease;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-color: var(--c-purple);
  background: white;
}
.form-row textarea { min-height: 120px; resize: vertical; }
.budget-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.budget-chip {
  padding: 10px 16px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--b-soft);
  background: var(--bg);
  font-size: 13px;
  color: var(--t-body);
  cursor: pointer;
  transition: all 200ms ease;
}
.budget-chip:hover { border-color: var(--c-purple); }
.budget-chip.on {
  background: var(--c-purple);
  color: white;
  border-color: var(--c-purple);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--r);
  font-size: 14px;
  color: var(--t-strong);
}
.contact-info-item .ico {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: white;
  display: grid;
  place-items: center;
}

/* ============ Footer ============ */
.footer {
  padding: 60px 24px 40px;
  text-align: center;
  font-family: var(--f-pixel);
  font-size: 12px;
  color: var(--t-soft);
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}
.footer-mark {
  margin-bottom: 16px;
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--t-strong);
}

/* ============ Decorative floaters & deco ============ */
.deco-cloud { position: absolute; pointer-events: none; opacity: 0.85; }
.deco-star { position: absolute; pointer-events: none; }

/* ============ Section bg variants (scroll-driven) ============ */
.section-bg-tint {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}
.section.tint-lavender .section-bg-tint { background: radial-gradient(900px 600px at 50% 50%, rgba(224, 215, 255, 0.5), transparent 70%); }
.section.tint-pink .section-bg-tint { background: radial-gradient(900px 600px at 50% 50%, rgba(255, 214, 240, 0.5), transparent 70%); }
.section.tint-yellow .section-bg-tint { background: radial-gradient(900px 600px at 50% 50%, rgba(255, 242, 196, 0.5), transparent 70%); }
.section.tint-cyan .section-bg-tint { background: radial-gradient(900px 600px at 50% 50%, rgba(196, 241, 249, 0.5), transparent 70%); }
.section-inner { position: relative; z-index: 1; }

/* ============ Misc ============ */
::selection { background: var(--c-pink); color: var(--t-strong); }

.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-purple), var(--c-pink-deep));
  z-index: 100;
  transition: width 80ms linear;
}

/* Marker / underline */
.under {
  background-image: linear-gradient(transparent 70%, var(--c-yellow) 70%);
  padding: 0 4px;
}
.under.pink { background-image: linear-gradient(transparent 70%, var(--c-pink) 70%); }
.under.cyan { background-image: linear-gradient(transparent 70%, var(--c-cyan) 70%); }
.under.lav { background-image: linear-gradient(transparent 70%, var(--c-lavender) 70%); }

/* responsive bare minimum (portfolio target is desktop) */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .team-grid, .services-grid, .skills-cats, .process-steps { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 56px; }
  .hero-brand-title { font-size: 24px; }
  .s-head h2, .contact-grid h2 { font-size: 42px; }
}
