:root {
  --bg: #FFFFFF;
  --bg-alt: #F5F5F7;
  --ink: #1D1D1F;
  --muted: #6E6E73;
  --line: #D2D2D7;
  --white: #FFFFFF;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

/* Type scale — Fraunces for headlines/brand moments, Inter for everything else */
h1 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}

/* Nav */
header.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.nav-links a:hover { opacity: 1; }

.nav-cta {
  padding: 9px 18px !important;
  background: var(--ink);
  color: var(--white) !important;
  border-radius: 980px;
  opacity: 1 !important;
}

.nav-cta:hover { background: #000; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-primary:hover {
  background: #000;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--ink);
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero */
.hero {
  padding: 72px 0;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1;
  margin-bottom: 28px;
}

.hero .founder-line {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero .hook {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.55;
  max-width: 42ch;
  margin-bottom: 36px;
  color: var(--ink);
}

.hero-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  background: var(--bg-alt);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 15%;
}

/* Statement */
.statement {
  padding: 72px 0;
  background: var(--bg-alt);
}

.statement-block {
  max-width: 780px;
}

.statement-lead {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.statement-sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: 0;
}

.statement-sub:last-child { margin-bottom: 0; }

/* Section spacing */
section { padding: 72px 0; }

.section-head {
  max-width: 640px;
  margin-bottom: 20px;
}

.speaking-intro {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 28px;
  text-wrap: balance;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: start;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.about-body p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--muted);
  font-size: 16px;
}

/* Credibility */
.credibility {
  background: var(--bg-alt);
}

.credibility-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 8;
  margin-top: 32px;
  background: var(--line);
}

.credibility-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.credibility-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.credibility-list li {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid var(--line);
}

.credibility-list li:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

/* Contact */
.contact-inner { max-width: 640px; }

.contact h2 {
  margin-bottom: 18px;
}

.contact p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 48px 0 48px; }
  .hero-photo { order: -1; max-width: 320px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; max-width: 240px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  section { padding: 56px 0; }
  .statement { padding: 56px 0; }
  .credibility-list { flex-direction: column; gap: 12px; }
  .credibility-list li { border-right: none; padding-right: 0; margin-right: 0; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
  .btn-row { flex-direction: column; }
  .btn { width: 100%; }
}
