/* Clarity Path Coaching — warm personal brand demo */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,400;0,600;1,400&family=Outfit:wght@400;500;600&display=swap");

:root {
  --ch-cream: #fdf8f3;
  --ch-terra: #c45c3e;
  --ch-terra-d: #a34a32;
  --ch-ink: #2d2420;
  --ch-muted: #6b5d56;
  --ch-sand: #f0e6dc;
  --ch-line: #e8ddd4;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ch-ink);
  background: var(--ch-cream);
}

img { max-width: 100%; display: block; }

.ch-wrap { max-width: 920px; margin: 0 auto; padding: 0 1.25rem; }

.ch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.ch-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ch-ink);
  text-decoration: none;
}

.ch-nav a {
  margin-left: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ch-muted);
  text-decoration: none;
}

.ch-nav a:hover { color: var(--ch-terra); }

.ch-hero {
  padding: 3rem 0 4rem;
  text-align: center;
}

.ch-hero-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ch-terra);
  margin-bottom: 1rem;
}

.ch-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 auto 1rem;
  max-width: 16ch;
}

.ch-hero p {
  color: var(--ch-muted);
  max-width: 42ch;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.ch-btn {
  display: inline-flex;
  padding: 0.85rem 1.75rem;
  background: var(--ch-terra);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.2s;
}

.ch-btn:hover { background: var(--ch-terra-d); transform: translateY(-2px); }

.ch-photo {
  max-width: 560px;
  margin: 0 auto 3rem;
  border-radius: 50% 50% 12px 12px / 40% 40% 12px 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(196, 92, 62, 0.15);
}

.ch-photo img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }

.ch-section { padding: 3.5rem 0; }

.ch-section-alt { background: var(--ch-sand); }

.ch-section h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.75rem;
  text-align: center;
  margin: 0 0 2rem;
}

.ch-offers {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .ch-offers { grid-template-columns: repeat(3, 1fr); }
}

.ch-offer {
  background: #fff;
  border: 1px solid var(--ch-line);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}

.ch-offer:hover {
  box-shadow: 0 12px 32px rgba(45, 36, 32, 0.08);
  transform: translateY(-4px);
}

.ch-offer h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.ch-offer p {
  font-size: 0.875rem;
  color: var(--ch-muted);
  margin: 0;
}

.ch-quote {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  text-align: center;
  max-width: 32ch;
  margin: 0 auto 1rem;
  color: var(--ch-ink);
}

.ch-form {
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--ch-line);
}

.ch-field { margin-bottom: 1rem; }

.ch-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.ch-field input,
.ch-field textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--ch-line);
  border-radius: 8px;
  font-family: inherit;
}

.ch-field textarea { min-height: 100px; }

.ch-footer {
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 0.875rem;
  color: var(--ch-muted);
}

.ch-demo-strip {
  text-align: center;
  font-size: 0.6875rem;
  padding: 1rem;
  background: var(--ch-sand);
  color: var(--ch-muted);
}

.ch-demo-strip a { color: var(--ch-terra); font-weight: 600; text-decoration: none; }
