/* Contact page — layered on top of styles.css + kolo-zycia.css */

.contact-main {
  max-width: 1080px;
}

.contact-intro {
  max-width: 720px;
  margin-bottom: 56px;
}

.contact-intro h1 {
  max-width: 22ch;
  margin-bottom: 28px;
}

.contact-intro .tool-lead {
  margin-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-bottom: 48px;
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 30px 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: oklch(99% 0.008 95 / 0.94);
  box-shadow: 0 24px 70px oklch(32% 0.04 125 / 0.08);
  overflow: hidden;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}

.contact-card::before {
  position: absolute;
  content: "";
  width: 220px;
  height: 220px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, oklch(94% 0.04 122 / 0.7), transparent 70%);
  pointer-events: none;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: oklch(42% 0.1 153 / 0.4);
  box-shadow: 0 30px 80px oklch(32% 0.04 125 / 0.14);
}

.contact-card-primary {
  background:
    radial-gradient(circle at 100% 0%, oklch(96% 0.04 122 / 0.6), transparent 55%),
    oklch(99% 0.008 95 / 0.96);
  border-color: oklch(42% 0.1 153 / 0.32);
}

.contact-card-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: oklch(95% 0.03 122);
  color: var(--forest);
  border: 1px solid oklch(42% 0.1 153 / 0.22);
}

.contact-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card-icon-yt {
  background: oklch(94% 0.04 35 / 0.6);
  color: oklch(50% 0.18 30);
  border-color: oklch(60% 0.16 30 / 0.32);
}

.contact-eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 6px;
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1;
}

.contact-card-text {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  color: oklch(32% 0.035 135);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-cta {
  position: relative;
  z-index: 1;
  align-self: stretch;
}

.contact-card-meta {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  word-break: break-all;
}

/* ----------- "What's next" note ----------- */

.contact-note {
  margin-top: 8px;
  padding: 36px 36px 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(150deg, oklch(96% 0.025 116 / 0.7), oklch(98% 0.014 96 / 0.85));
  box-shadow: 0 24px 70px oklch(32% 0.04 125 / 0.06);
}

.contact-note-inner {
  max-width: 880px;
  margin: 0 auto;
}

.contact-note h2 {
  margin: 4px 0 22px;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.15;
}

.contact-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.contact-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: 16px;
  padding: 22px 20px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: oklch(99% 0.008 95 / 0.85);
}

.contact-steps strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink-green);
  font-family: Georgia, Times New Roman, serif;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.2;
}

.contact-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-step-num {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  font-family: Georgia, Times New Roman, serif;
  font-size: 0.95rem;
  line-height: 1;
}

/* ----------- Responsive ----------- */

@media (max-width: 680px) {
  .contact-grid {
    gap: 16px;
    margin-bottom: 36px;
  }

  .contact-card {
    padding: 26px 22px 24px;
  }

  .contact-card h2 {
    font-size: 1.7rem;
  }

  .contact-note {
    padding: 26px 22px 22px;
    border-radius: 18px;
  }
}
