:root {
  --off-white: #faf8f5;
  --dark: #1a1a18;
  --mid: #6b6b67;
  --accent: #8B1A1A;
  --accent-light: #a82828;
  --light-line: #e2dfd9;
  --bg-dark: #1a1a18;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--off-white);
  color: var(--dark);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-line);
}

.nav-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--dark);
  text-decoration: none;
}

.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(--mid);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--dark); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 60px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 0.3s;
}

.hero-image img {
  width: 380px;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

.hero-image-wrap {
  position: relative;
  display: inline-block;
}

.hero-image-ring {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 412px;
  height: 412px;
  border-radius: 50%;
  border: 2px solid rgba(139, 26, 26, 0.25);
  pointer-events: none;
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-headline {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

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

.hero-sub {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-cta {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.3rem;
  transition: color 0.2s;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-cta:hover { color: var(--accent); }

/* SECTION SHARED */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2rem;
}

.section-divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 1.5rem;
}

/* INTRO / ABOUT */
.intro {
  padding: 7rem 4rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--light-line);
}

.intro-text {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 2rem;
}

.intro-body {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
}

/* WHAT I DO */
.what {
  background: var(--bg-dark);
  color: var(--off-white);
  padding: 7rem 4rem;
}

.what-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.what-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 600;
  padding-top: 0.4rem;
}

.what-content h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--off-white);
}

.what-content p {
  font-size: 0.95rem;
  color: #a8a8a0;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.what-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #2e2e2c;
}

.pillar-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.pillar-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--off-white);
  margin-bottom: 0.4rem;
}

.pillar-desc {
  font-size: 0.85rem;
  color: #7a7a72;
  line-height: 1.65;
}

/* SPEAKING */
.speaking {
  padding: 7rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.speaking-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-line);
}

.speaking-header h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.speaking-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
}

.talks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--light-line);
}

.talk-card {
  background: var(--off-white);
  padding: 2.5rem;
  transition: background 0.2s;
}

.talk-card:hover { background: #f0ede8; }

.talk-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.talk-title {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  color: var(--dark);
}

.talk-desc {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.7;
}

/* CREDENTIALS */
.credentials {
  background: #f0ede8;
  padding: 4rem;
}

.credentials-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}

.credentials-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
  flex-shrink: 0;
}

.credentials-list {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.credential {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.credential-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.credential-sub {
  font-size: 0.78rem;
  color: var(--mid);
}

/* TESTIMONIALS */
.testimonials {
  padding: 7rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
  margin-bottom: 3rem;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.testimonial blockquote {
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.testimonial-source {
  font-size: 0.78rem;
  color: var(--mid);
}

.testimonial-source strong {
  display: block;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.82rem;
  margin-bottom: 0.1rem;
}

/* CONTACT */
.contact {
  background: var(--bg-dark);
  color: var(--off-white);
  padding: 7rem 4rem;
  text-align: center;
}

.contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 2rem;
}

.contact h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.contact p {
  font-size: 0.95rem;
  color: #a8a8a0;
  margin-bottom: 2.5rem;
}

.contact-email {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--off-white);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.3rem;
  transition: color 0.2s;
}

.contact-email:hover { color: var(--accent-light); }

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.social-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: #7a7a72;
  text-decoration: none;
  transition: color 0.2s;
}

.social-links a:hover { color: var(--off-white); }

/* FOOTER */
footer {
  padding: 2rem 4rem;
  border-top: 1px solid #2e2e2c;
  background: var(--bg-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p {
  font-size: 0.75rem;
  color: #4a4a48;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  /* NAV — show links inline, smaller */
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 0.7rem; }

  /* HERO — image first, text below */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 2rem 1.5rem 3rem; order: 2; }
  .hero-image { padding: 6rem 0 1rem; order: 1; }
  .hero-image img { width: 220px; height: 220px; }
  .hero-image-ring { width: 252px; height: 252px; top: -16px; left: -16px; }
  .hero-headline { font-size: 2rem; }
  .hero-eyebrow { margin-bottom: 1.2rem; }
  .hero-sub { margin-bottom: 2rem; }

  /* ABOUT */
  .intro { padding: 3.5rem 1.5rem; }

  /* WHAT I DO */
  .what { padding: 3.5rem 1.5rem; }
  .what-inner { grid-template-columns: 1fr; gap: 2rem; }
  .what-pillars { grid-template-columns: 1fr; }

  /* SPEAKING */
  .speaking { padding: 3.5rem 1.5rem; }
  .speaking-header { flex-direction: column; gap: 0.5rem; }
  .talks-grid { grid-template-columns: 1fr; }

  /* CREDENTIALS — 2-col grid */
  .credentials { padding: 2.5rem 1.5rem; }
  .credentials-inner { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .credentials-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; width: 100%; }

  /* TESTIMONIALS */
  .testimonials { padding: 3.5rem 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonials-label { margin-bottom: 2rem; }

  /* CONTACT */
  .contact { padding: 3.5rem 1.5rem; }
  .contact-email { font-size: 1rem; word-break: break-all; }

  /* FOOTER */
  footer { padding: 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
}
