@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/Newsreader-Roman.woff2') format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/Newsreader-Italic.woff2') format('woff2');
}

:root {
  --bg: #f6f1e8;
  --ink: #1c1a17;
  --muted: #6b6559;
  --rule: #d9d2c2;
  --accent: #b8543a;
  --accent-deep: #8f3e29;
  --serif: 'Newsreader', Charter, 'Iowan Old Style', Georgia, serif;
  --gutter: clamp(1.5rem, 4vw, 3rem);
}

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

html {
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.6;
  font-feature-settings: "kern", "liga", "onum";
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 150ms ease;
}
a:hover { color: var(--accent); }

main {
  display: block;
  padding: 0 var(--gutter);
}

/* ── 1. Opener ─────────────────────────────────────── */
.opener {
  max-width: 52rem;
  margin: 0 auto;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 0;
}
.opener h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 0;
}

/* ── Anna photo (in Meet) ─────────────────────────── */
.anna-photo {
  margin: 0;
  width: 100%;
  max-width: 24rem;
}
.anna-photo img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 879px) {
  .anna-photo { max-width: 20rem; margin: 0 auto; }
}

/* ── Eyebrows ──────────────────────────────────────── */
.eyebrow {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin: 0 0 3rem;
}

/* ── 2. Meet ──────────────────────────────────────── */
.meet {
  max-width: 78rem;
  margin: 0 auto;
  padding: 7rem 0;
}
.meet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 880px) {
  .meet-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 5rem;
  }
}
.lede {
  max-width: 36rem;
  font-size: 1.32rem;
  line-height: 1.55;
  margin: 0;
}

.tried-section {
  max-width: 78rem;
  margin: 0 auto;
  padding: 9rem 0 7rem;
}

.tried-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 880px) {
  .tried-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 5rem;
    align-items: start;
  }
}

.tried {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tried li {
  border-top: 1px solid var(--rule);
  padding: 1.5rem 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
}
.tried li:last-child { border-bottom: 1px solid var(--rule); }
.tried .hook {
  display: block;
  font-size: 1.4rem;
  line-height: 1.25;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 0.45rem;
  font-weight: 400;
}

/* ── Kimono video ─────────────────────────────────── */
.kimono {
  margin: 0;
  position: sticky;
  top: 3rem;
}
.kimono-frame {
  position: relative;
  width: 100%;
  max-width: 18rem;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
}
.kimono-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.kimono figcaption {
  margin-top: 0.9rem;
  max-width: 18rem;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
}

/* ── 3. Speaking ──────────────────────────────────── */
.speaking {
  max-width: 40rem;
  margin: 0 auto;
  padding: 7rem 0;
}
.topic {
  padding: 3rem 0;
  border-top: 1px solid var(--rule);
}
.topic:last-of-type { border-bottom: 1px solid var(--rule); }
.topic-num {
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--accent);
  font-feature-settings: "kern", "lnum", "tnum";
  line-height: 1;
  margin-bottom: 1.4rem;
}
.topic h3 {
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.005em;
  margin: 0 0 0.6rem;
}
.topic-sub {
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 1.02rem;
}
.topic p:last-child {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.65;
}

/* ── 4. Contact ───────────────────────────────────── */
.contact {
  max-width: 36rem;
  margin: 0 auto;
  padding: 7rem 0 8rem;
}
.contact-prose {
  font-size: 1.2rem;
  line-height: 1.55;
  margin: 0 0 1.8rem;
}
.contact-email {
  margin: 0;
  font-size: 1.6rem;
}
.contact-email a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}
.contact-email a:hover { color: var(--accent-deep); }

.contact-linkedin {
  margin: 1rem 0 0;
  font-size: 1.05rem;
}
.contact-linkedin a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
.contact-linkedin a:hover { color: var(--accent); }

/* ── Mobile tightening ────────────────────────────── */
@media (max-width: 640px) {
  .opener { padding-top: 4rem; padding-bottom: 3.5rem; }
  .meet, .speaking { padding: 4.5rem 0; }
  .contact { padding: 4.5rem 0 6rem; }
  .lede { font-size: 1.18rem; }
  .tried .hook { font-size: 1.2rem; }
  .topic { padding: 2.2rem 0; }
  .topic h3 { font-size: 1.55rem; }
  .topic-num { font-size: 1.9rem; }
  .contact-email { font-size: 1.35rem; }
  .kimono { position: static; }
}

::selection {
  background: var(--accent);
  color: var(--bg);
}
