:root {
  --ink: #12202b;
  --muted: #64717a;
  --paper: #f7f5f1;
  --white: #ffffff;
  --accent: #9a6b3f;
  --accent-soft: #d9c5ae;
  --deep: #132a34;
  --line: #dedad3;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
h1,h2,h3,p { margin-top: 0; }
h1,h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.08;
}
h1 { font-size: clamp(3rem, 6vw, 6.2rem); letter-spacing: -0.045em; max-width: 980px; }
h2 { font-size: clamp(2.2rem, 4vw, 4.2rem); letter-spacing: -0.035em; max-width: 760px; }
h3 { font-size: 1.25rem; line-height: 1.3; }

.site-header {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--ink); border-radius: 50%; font-family: "Playfair Display", serif;
}
.brand-name { font-size: 0.95rem; }
.nav { display: flex; align-items: center; gap: 28px; font-size: 0.92rem; }
.nav a { color: #34424a; }
.nav-cta { padding: 10px 16px; border: 1px solid var(--ink); border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.5rem; }

.hero {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  min-height: 730px;
  padding: 90px 0 72px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 40px;
  align-items: center;
}
.eyebrow,.section-kicker,.tag {
  font-size: 0.74rem; letter-spacing: 0.19em; font-weight: 700; color: var(--accent);
}
.hero-lead { font-size: 1.2rem; max-width: 780px; color: #46545d; }
.hero-actions { display: flex; gap: 12px; margin: 32px 0 24px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 999px; font-weight: 600; transition: .2s ease;
}
.primary { background: var(--deep); color: white; }
.primary:hover { transform: translateY(-2px); }
.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.5); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 24px; color: var(--muted); font-size: .9rem; }

.hero-visual { min-height: 460px; position: relative; display: grid; place-items: center; }
.globe {
  width: min(32vw, 340px); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(19,42,52,.25); position: relative;
  background:
    radial-gradient(circle at 50% 50%, rgba(154,107,63,.08), transparent 60%),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 38px, rgba(19,42,52,.09) 39px 40px);
  box-shadow: inset 0 0 70px rgba(19,42,52,.05);
}
.globe:before,.globe:after {
  content:""; position:absolute; left: 12%; right: 12%; top: 50%; height: 1px; background: rgba(19,42,52,.16);
}
.globe:after { transform: rotate(90deg); }
.pin {
  position:absolute; width:48px; height:48px; display:grid; place-items:center;
  border-radius:50%; background:var(--deep); color:#fff; font-size:.74rem; font-weight:700;
}
.europe { left: 18%; top: 38%; }
.usa { right: 16%; top: 52%; background: var(--accent); }
.route {
  position:absolute; left:31%; right:29%; top:48%; height:1px; border-top:1px dashed var(--accent);
  transform: rotate(10deg);
}
.orbit { position:absolute; border:1px solid rgba(154,107,63,.24); border-radius:50%; }
.orbit-one { width: 92%; height: 38%; transform: rotate(28deg); }
.orbit-two { width: 75%; height: 26%; transform: rotate(-24deg); }
.visual-caption { position:absolute; bottom: 34px; font-family:"Playfair Display",serif; font-size:1.5rem; }

.intro-strip { background: var(--deep); color: white; }
.intro-strip p {
  width: min(calc(100% - 48px), 1050px); margin: 0 auto; padding: 42px 0;
  font-family:"Playfair Display", serif; font-size: clamp(1.45rem, 2.3vw, 2.2rem); line-height:1.4;
}

.section { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 110px 0; }
.split-section,.speaking,.work-with-me { display:grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.prose { font-size: 1.08rem; color:#43515a; max-width: 700px; }
.prose p + p { margin-top: 24px; }

.cards { display:grid; gap:18px; margin-top: 46px; }
.cards.four { grid-template-columns: repeat(4,1fr); }
.cards.three { grid-template-columns: repeat(3,1fr); }
.card,.insight-card {
  background: var(--white); border: 1px solid var(--line); padding: 30px; min-height: 280px;
}
.card-number { color: var(--accent); font-size:.8rem; font-weight:700; }
.card h3 { margin-top: 58px; }
.card p,.insight-card p { color:var(--muted); }

.statement {
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.large-quote {
  font-family:"Playfair Display",serif; font-size:clamp(2rem,4vw,4rem); line-height:1.22;
  max-width:1060px; margin:0;
}

.timeline { margin-top: 48px; border-top:1px solid var(--line); }
.timeline-item {
  display:grid; grid-template-columns:180px 1fr; gap:24px;
  padding:30px 0; border-bottom:1px solid var(--line);
}
.timeline-label { color:var(--accent); font-size:.78rem; text-transform:uppercase; letter-spacing:.16em; font-weight:700; }
.timeline-item h3 { margin-bottom:8px; }
.timeline-item p { color:var(--muted); margin:0; max-width:800px; }

.work-with-me { background:#efebe4; width:100%; max-width:none; padding-left:max(24px, calc((100vw - var(--max))/2)); padding-right:max(24px, calc((100vw - var(--max))/2)); }
.work-copy p { max-width:600px; color:#4e5b63; }
.offer-list { border-top:1px solid #cdc5ba; }
.offer-list div {
  display:grid; grid-template-columns:210px 1fr; gap:24px; padding:24px 0; border-bottom:1px solid #cdc5ba;
}
.offer-list span { color:#59666e; }

.insight-card { min-height: 330px; display:flex; flex-direction:column; }
.insight-card h3 { font-family:"Playfair Display",serif; font-size:1.65rem; margin:12px 0 18px; }
.insight-card a { margin-top:auto; color:var(--accent); font-weight:600; }

.contact-section {
  background: var(--deep); color:white; padding: 100px max(24px, calc((100vw - var(--max))/2));
  display:grid; grid-template-columns:1.2fr .8fr; gap:80px; align-items:end;
}
.contact-section h2 { margin-bottom:24px; }
.contact-section p { max-width:720px; color:#d5dde0; }
.section-kicker.light { color:var(--accent-soft); }
.contact-actions { display:flex; flex-direction:column; align-items:flex-start; gap:22px; }
.light-button { background:white; color:var(--deep); }
.text-link { color:white; border-bottom:1px solid rgba(255,255,255,.3); }
.contact-note { grid-column:1/-1; font-size:.8rem; opacity:.55; margin:0; }

footer {
  background:#0d2028; color:#b7c0c4; padding:30px max(24px, calc((100vw - var(--max))/2));
  display:flex; justify-content:space-between; gap:30px; font-size:.82rem;
}
footer div:first-child { display:flex; flex-direction:column; }
footer strong { color:white; }

@media (max-width: 900px) {
  .menu-toggle { display:block; }
  .nav {
    display:none; position:absolute; top:78px; left:24px; right:24px; padding:18px;
    background:white; border:1px solid var(--line); flex-direction:column; align-items:flex-start; z-index:10;
  }
  .nav.open { display:flex; }
  .brand-name { display:none; }
  .hero { grid-template-columns:1fr; padding-top:55px; }
  .hero-visual { min-height:360px; }
  .globe { width:300px; }
  .split-section,.speaking,.work-with-me,.contact-section { grid-template-columns:1fr; gap:36px; }
  .cards.four,.cards.three { grid-template-columns:1fr 1fr; }
}

@media (max-width: 600px) {
  .site-header,.hero,.section,.intro-strip p { width:min(calc(100% - 32px), var(--max)); }
  .hero { min-height:auto; padding-bottom:54px; }
  h1 { font-size:3.2rem; }
  .hero-actions { flex-direction:column; align-items:flex-start; }
  .cards.four,.cards.three { grid-template-columns:1fr; }
  .timeline-item,.offer-list div { grid-template-columns:1fr; gap:8px; }
  .section { padding:76px 0; }
  footer { flex-direction:column; }
}

.about-section {
  display: grid;
  grid-template-columns: .85fr .62fr 1.08fr;
  gap: 54px;
  align-items: center;
}
.about-heading { align-self: start; }
.about-photo-wrap {
  position: relative;
  width: 100%;
}
.about-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--accent-soft);
  z-index: -1;
}
.about-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(.88) contrast(1.02);
}
.about-copy { max-width: 620px; }

@media (max-width: 900px) {
  .about-section {
    grid-template-columns: .75fr 1.25fr;
    gap: 40px;
  }
  .about-heading { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .about-section { grid-template-columns: 1fr; }
  .about-heading { grid-column: auto; }
  .about-photo-wrap { max-width: 420px; }
}
