/* ─────────────────────────────────────────
   Peakton — style.css
   Fonts: Fraunces (headings) + Nunito (body)
   Palette: warm cream, terracotta accent, deep brown text
───────────────────────────────────────── */

/* ── TOKENS ── */
:root {
  --cream:       #FBF7F1;
  --cream-mid:   #F2EBE0;
  --cream-dark:  #E8DDD0;
  --accent:      #C9541E;
  --accent-light:#F0956A;
  --accent-pale: #FCEEE6;
  --brown-deep:  #25180D;
  --brown-mid:   #5C3D24;
  --brown-light: #9B7558;
  --white:       #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Nunito', 'Helvetica Neue', sans-serif;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  28px;
  --shadow-card: 0 2px 18px rgba(37, 24, 13, 0.08);
  --shadow-btn:  0 4px 16px rgba(201, 84, 30, 0.30);

  --max-w: 1060px;
  --gutter: 24px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--brown-deep);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.22s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: #b04519;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(201, 84, 30, 0.38);
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

/* ── SECTION LABELS ── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-pale);
  padding: 5px 13px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--brown-deep);
  margin-bottom: 20px;
}

.section-intro {
  font-size: 18px;
  color: var(--brown-mid);
  max-width: 620px;
  margin-bottom: 52px;
  line-height: 1.75;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 241, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--brown-deep);
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--accent); }

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 110px;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 22px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 6.5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--brown-deep);
  margin-bottom: 28px;
  letter-spacing: -0.025em;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 19px;
  color: var(--brown-mid);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}

/* Decorative blob */
.hero-shape {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50% 40% 60% 35% / 45% 55% 40% 60%;
  background: radial-gradient(circle at 40% 40%, var(--accent-pale) 0%, var(--cream-mid) 70%);
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

/* ── WHAT I DO ── */
.what-i-do {
  padding: 100px 0;
  background: var(--cream-mid);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--cream-dark);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(37, 24, 13, 0.12);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 18px;
  line-height: 1;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--brown-deep);
}

.card p {
  color: var(--brown-mid);
  font-size: 16px;
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 0;
  background: var(--cream);
}

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  counter-reset: none;
}

.step {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  min-width: 70px;
  padding-top: 2px;
  transition: color 0.2s;
}
.step:hover .step-number {
  color: var(--accent-light);
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brown-deep);
}

.step-body p {
  color: var(--brown-mid);
  font-size: 16.5px;
  line-height: 1.72;
}

/* ── ABOUT ── */
.about {
  padding: 100px 0;
  background: var(--brown-deep);
  color: var(--cream);
}

.about .section-label {
  background: rgba(240, 149, 106, 0.15);
  color: var(--accent-light);
}

.about .section-heading {
  color: var(--cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.about-text p {
  color: rgba(251, 247, 241, 0.72);
  font-size: 17px;
  margin-bottom: 18px;
  max-width: 520px;
  line-height: 1.78;
}

.about-text .btn-primary {
  margin-top: 8px;
}

.about-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  min-width: 220px;
}

.badge-initials {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
}

.badge-title {
  font-size: 13.5px;
  color: rgba(251, 247, 241, 0.55);
  line-height: 1.6;
}

/* ── FOOTER ── */
.site-footer {
  background: #1A100A;
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(251, 247, 241, 0.45);
  max-width: 420px;
}

.footer-email {
  font-size: 14px;
  color: var(--accent-light);
  font-weight: 600;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  :root { --gutter: 20px; }

  .hero { padding: 72px 0 80px; }
  .hero-shape { width: 320px; height: 320px; top: -40px; right: -60px; }

  .what-i-do,
  .how-it-works,
  .about { padding: 72px 0; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-badge {
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
  }

  .step { gap: 20px; }
  .step-number { font-size: 36px; min-width: 50px; }
}

@media (max-width: 480px) {
  .header-inner { height: 58px; }
  .cards { grid-template-columns: 1fr; }
  .hero-headline { font-size: 36px; }
}
