/*
Theme Name: Can I Believe This
Theme URI: https://canIbelievethis.com
Author: Kalen Croft
Author URI: https://canIbelievethis.com
Description: A clarity-focused personal brand and pitch deck service theme for Kalen Croft.
Version: 1.0
License: Private
Text Domain: canIbelievethis
*/

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

/* ── TOKENS ── */
:root {
  --ink: #1a1814;
  --paper: #f5f2eb;
  --warm: #c8a96e;
  --muted: #7a7060;
  --light: #e8e2d6;
  --accent: #2c3e2d;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 4rem;
  background: rgba(245, 242, 235, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--light);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo span { color: var(--warm); font-style: italic; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,169,110,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-rule {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; background: var(--light);
  transform: translateX(-50%);
  opacity: 0.6;
}
.hero-content { max-width: 720px; position: relative; }
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-headline em { font-style: italic; color: var(--warm); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-ctas {
  display: flex; gap: 1.2rem; align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none; cursor: pointer;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-secondary {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--light);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--ink); border-color: var(--ink); }
.hero-ornament {
  position: absolute; right: -2rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 18rem;
  line-height: 1;
  color: var(--light);
  pointer-events: none;
  user-select: none;
  opacity: 0;
  animation: fadeIn 1.2s ease 1s forwards;
}

/* ── DIVIDER ── */
.divider {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 4rem;
  margin: 2rem 0;
}
.divider-line { flex: 1; height: 1px; background: var(--light); }
.divider-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm);
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 1.5rem;
}
.philosophy-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 2rem;
}
.philosophy-headline em { font-style: italic; color: var(--warm); }
.philosophy-body { color: var(--muted); font-size: 0.98rem; line-height: 1.9; }
.philosophy-body p + p { margin-top: 1.2rem; }
.philosophy-right {
  border-left: 1px solid var(--light);
  padding-left: 4rem;
}
.question-stack { display: flex; flex-direction: column; gap: 2rem; }
.question-q {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.question-a { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ── SERVICE ── */
.service {
  background: var(--ink);
  color: var(--paper);
  padding: 6rem 4rem;
}
.service-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
}
.service .section-label { color: var(--warm); }
.service-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.service-headline em { font-style: italic; color: var(--warm); }
.service-body { color: rgba(245,242,235,0.6); font-size: 0.98rem; line-height: 1.9; margin-bottom: 2.5rem; }
.service-price {
  display: inline-block;
  border: 1px solid var(--warm);
  padding: 0.6rem 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 2rem;
}
.step-list { display: flex; flex-direction: column; gap: 2rem; }
.step-item { display: flex; gap: 1.5rem; align-items: start; }
.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--warm);
  opacity: 0.4;
  line-height: 1;
  min-width: 2.5rem;
}
.step-title {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: var(--paper);
}
.step-desc { font-size: 0.88rem; color: rgba(245,242,235,0.5); line-height: 1.7; }

/* ── ABOUT ── */
.about {
  padding: 6rem 4rem;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start;
}
.about-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.about-title { font-size: 0.82rem; color: var(--warm); letter-spacing: 0.1em; text-transform: uppercase; }
.about-right { color: var(--muted); font-size: 0.98rem; line-height: 1.9; }
.about-right p + p { margin-top: 1.2rem; }
.about-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  border-left: 2px solid var(--warm);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

/* ── CONTACT ── */
.contact {
  background: var(--light);
  padding: 6rem 4rem;
  text-align: center;
}
.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.contact-headline em { font-style: italic; color: var(--warm); }
.contact-sub { color: var(--muted); font-size: 1rem; margin-bottom: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.contact-email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--warm);
  padding-bottom: 2px;
  margin-bottom: 3rem;
  transition: color 0.2s;
}
.contact-email:hover { color: var(--warm); }

/* ── FOOTER ── */
footer {
  padding: 2rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--light);
  font-size: 0.78rem;
  color: var(--muted);
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--ink); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
