:root {
  --ck-font: var(--font-system, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
  --ck-bg: #f7f7f7;
  --ck-surface: #ffffff;
  --ck-text: #27221c;
  --ck-muted: #5f5a54;
  --ck-accent: #fdc662;
  --ck-accent-dark: #e7b14f;
  --ck-border: #e5ddd2;
  --ck-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  --ck-radius: 16px;
}

.ck-page {
  font-family: var(--ck-font);
  color: var(--ck-text);
  background: var(--ck-bg);
}

.ck-page * {
  box-sizing: border-box;
}

.ck-wrap {
  width: min(1240px, 100% - 40px);
  margin: 0 auto;
}

.ck-section {
  padding: clamp(36px, 5vw, 72px) 0;
}

.ck-card {
  background: var(--ck-surface);
  border: 1px solid var(--ck-border);
  border-radius: var(--ck-radius);
  box-shadow: var(--ck-shadow);
}

.ck-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--ck-accent);
  color: #27221c;
  padding: 10px 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.ck-btn:hover {
  background: var(--ck-accent-dark);
  transform: translateY(-1px);
}

.ck-eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #7f6d59;
  font-weight: 700;
}

.ck-title {
  margin: 10px 0 0;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ck-lead {
  margin: 18px 0 0;
  color: var(--ck-muted);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .ck-wrap {
    width: min(1240px, 100% - 24px);
  }
}
