/* ════════════════════════════════════════════════════════════
   contact/style.css — Contact page · clean editorial
   ════════════════════════════════════════════════════════════ */

body.page-contact {
  --ink:        #0E0E0C;
  --text:       #2A2A28;
  --muted:      #76746E;
  --faint:      #B3B1A8;
  --hairline:   #E8E6DF;
  --hairline-2: #D6D4CA;

  --bg:         #FAFAF7;
  --card:       #FFFFFF;
  --card-soft:  #F4F3EE;

  --accent:     #B5573A;
  --accent-ink: #8C3E26;
  --accent-bg:  #FBEFE8;

  background: var(--bg);
  color: var(--text);
}

body.page-contact main.container {
  max-width: 720px;
  padding: 0 24px 80px;
}

/* Back link */
body.page-contact .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 24px 0 0;
  padding: 8px 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
}
body.page-contact .back-link:hover { color: var(--ink); }
body.page-contact .back-link::before { content: "←"; }

/* ─── HERO ─────────────────────────────────────────── */
.ct-hero {
  text-align: center;
  padding: clamp(48px, 7vw, 88px) 0 clamp(28px, 4vw, 40px);
}
.ct-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .16em;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0 0 22px;
}
.ct-h1 {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 18px;
}
.ct-sub {
  font-size: clamp(16px, 1.7vw, 18px);
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── EMAIL CARD (centered hero CTA) ───────────────── */
.ct-card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 56px) 28px;
  text-align: center;
  margin: 0 auto clamp(48px, 6vw, 72px);
  max-width: 520px;
  box-shadow: 0 1px 2px rgba(60,40,20,.03), 0 16px 40px -24px rgba(60,40,20,.10);
}
.ct-card-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-bg);
  color: var(--accent);
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
}
.ct-card-label {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 14px;
}
.ct-card-email {
  display: inline-block;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.015em;
  padding: 8px 4px;
  border-bottom: 2px dashed var(--hairline-2);
  transition: color .15s, border-color .15s;
  word-break: break-all;
  font-variant-numeric: tabular-nums;
}
.ct-card-email:hover {
  color: var(--accent-ink);
  border-bottom-color: var(--accent);
}
.ct-card-note {
  font-size: 13.5px;
  color: var(--faint);
  margin: 16px 0 0;
  line-height: 1.55;
}

/* ─── TOPICS GRID ──────────────────────────────────── */
.ct-topics {
  margin: 0 0 clamp(48px, 6vw, 72px);
}
.ct-section-title {
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -.02em;
  text-align: center;
}
.ct-topic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px) { .ct-topic-grid { grid-template-columns: 1fr; } }
.ct-topic {
  padding: 22px 20px;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  transition: border-color .15s, transform .15s;
}
.ct-topic:hover {
  border-color: var(--hairline-2);
  transform: translateY(-1px);
}
.ct-topic-emoji {
  font-size: 26px;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.ct-topic-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -.005em;
}
.ct-topic-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.ct-topic-desc a {
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── TIP ──────────────────────────────────────────── */
.ct-tip {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--accent-bg);
  border: 1px solid #F0D5C4;
  border-radius: 14px;
  margin: 0 0 40px;
}
.ct-tip-icon {
  font-size: 22px;
  line-height: 1.2;
  flex-shrink: 0;
}
.ct-tip-body { flex: 1; min-width: 0; }
.ct-tip-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}
.ct-tip-text {
  font-size: 14px;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}
.ct-tip-text strong { color: var(--accent-ink); font-weight: 700; }

/* ─── FOOT ─────────────────────────────────────────── */
.ct-foot {
  text-align: center;
  font-size: 13.5px;
  color: var(--faint);
  margin: 0;
}
.ct-foot a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  padding: 0 4px;
}
.ct-foot a:hover { color: var(--ink); }
