:root {
  --ink: #0f1115;
  --ink-soft: #565b63;
  --paper: #ffffff;
  --paper-alt: #f5f6f8;
  --blue: #00ade3;
  --pink: #dd1e8e;
  --gradient: linear-gradient(120deg, var(--blue), var(--pink));
  --border: #e5e7eb;
  --radius: 14px;
  --max-w: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; margin: 0; }

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

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

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

.nav {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: grayscale(0.5) contrast(1.05);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(15,17,21,0.94) 10%, rgba(15,17,21,0.55) 55%, rgba(0,173,227,0.35) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px 72px;
  width: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 16px;
  display: inline-block;
}

.eyebrow-dark { margin-bottom: 14px; }

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
  max-width: 640px;
  margin-bottom: 32px;
}

.hero-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.4;
  max-width: 560px;
  margin: 0 0 32px;
  padding-left: 20px;
  border-left: 3px solid;
  border-image: var(--gradient) 1;
  color: rgba(255,255,255,0.92);
}

.hero-quote span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
}

.hero h1 span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-top: 14px;
  letter-spacing: -0.005em;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.15s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(221,30,142,0.5);
}

.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(221,30,142,0.6); }

.btn-ghost {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-ghost-light {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.12); }

/* Press strip */
.strip {
  padding: 40px 24px;
  border-bottom: 1px solid var(--border);
}

.strip-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.strip-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.press-logo {
  display: flex;
  align-items: center;
  height: 40px;
  opacity: 0.85;
  filter: grayscale(1);
  transition: opacity 0.15s ease, filter 0.15s ease, transform 0.15s ease;
}

.press-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-1px);
}

.press-logo img {
  height: 100%;
  width: auto;
  display: block;
}

.press-logo-pw img,
.press-logo-kirkus img { border-radius: 6px; }

.press-logo-artsatl img,
.press-logo-foreword img { height: 26px; }

.press-logo-wsb img { height: 52px; }

/* Sections */
.section { padding: 96px 24px; }

.section-alt { background: var(--paper-alt); }

.speaking-visual {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.speaking-bg-media-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 640px;
  z-index: 0;
}

.speaking-bg-media-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 18%;
  filter: grayscale(0.2) contrast(1.05);
}

.speaking-bg-media-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(15,17,21,0.93) 0%, rgba(15,17,21,0.78) 38%, rgba(15,17,21,0.4) 68%, rgba(15,17,21,0.1) 100%),
    linear-gradient(to bottom, rgba(15,17,21,0) 55%, var(--ink) 100%);
}

.speaking-visual .section-inner { position: relative; z-index: 1; }

.speaking-visual .eyebrow {
  background: none;
  -webkit-text-fill-color: initial;
  color: rgba(255,255,255,0.75);
}

.speaking-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  color: #fff;
  margin-bottom: 10px;
}

.speaking-visual .section-title { color: #fff; }

.speaking-visual .section-lead { color: rgba(255,255,255,0.8); }

.speaking-visual .pull-quote { color: #fff; }

.speaking-visual .pull-quote span { color: rgba(255,255,255,0.65); }

.speaking-experience-head {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: #fff;
  margin: 48px 0 24px;
}

.cards-three { grid-template-columns: repeat(3, 1fr); }

.speaking-press-quote {
  color: rgba(255,255,255,0.75);
  font-style: italic;
  font-size: 1.02rem;
  max-width: 720px;
  margin: 8px 0 40px;
}

@media (max-width: 900px) {
  .cards-three { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .speaking-bg-media-top { height: 420px; }

  .speaking-bg-media-top img { object-position: 68% 12%; }

  .speaking-bg-media-top::after {
    background:
      linear-gradient(0deg, rgba(15,17,21,0.95) 0%, rgba(15,17,21,0.8) 45%, rgba(15,17,21,0.4) 75%, rgba(15,17,21,0.15) 100%),
      linear-gradient(to bottom, rgba(15,17,21,0) 45%, var(--ink) 100%);
  }
}

/* Contact */
.contact-visual {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.contact-bg-media {
  position: absolute;
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  width: 300px;
  max-width: 32%;
  aspect-ratio: 3 / 4;
  z-index: 0;
  pointer-events: none;
  opacity: 0.32;
  filter: grayscale(0.6) contrast(1.05) brightness(0.85);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at center, #000 35%, transparent 78%);
  mask-image: radial-gradient(ellipse 60% 60% at center, #000 35%, transparent 78%);
}

.contact-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

.contact-visual .section-inner { position: relative; z-index: 1; }

.contact-visual .eyebrow {
  background: none;
  -webkit-text-fill-color: initial;
  color: rgba(255,255,255,0.75);
}

.contact-visual .section-title { color: #fff; }

@media (max-width: 700px) {
  .contact-bg-media { display: none; }
}

.section-inner { max-width: var(--max-w); margin: 0 auto; }

.section h2 { font-size: clamp(1.8rem, 3vw, 2.3rem); margin-bottom: 20px; }

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  max-width: 780px;
}

.section-lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 0 28px;
}

blockquote {
  margin: 0;
  font-style: italic;
  color: var(--ink);
}

blockquote span {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.pull-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  border-left: 4px solid;
  border-image: var(--gradient) 1;
  padding-left: 22px;
  margin: 40px 0 32px;
}

/* Praise */
.praise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.praise-card {
  padding: 28px;
  background: var(--paper-alt);
  border-radius: var(--radius);
  font-size: 0.98rem;
}

.praise-card-accent {
  background: var(--ink);
  color: #fff;
}

.praise-card-accent span { color: rgba(255,255,255,0.7); }

/* About */
.about-inner { max-width: 820px; }

.about-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0 0 18px;
}

/* About — split dark layout */
.about-split {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 22px 22px;
  pointer-events: none;
}

.about-split-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  min-height: 640px;
}

.about-split-text {
  position: relative;
  padding: 96px 48px 96px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hummingbird {
  position: absolute;
  top: 28px;
  right: 24px;
  width: 110px;
  opacity: 0.85;
  transform: scaleX(-1);
  pointer-events: none;
}

@media (max-width: 860px) {
  .about-hummingbird { width: 72px; top: 16px; right: 16px; }
}

.about-split .eyebrow {
  display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: #0f1115;
  -webkit-text-fill-color: #0f1115;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 20px;
  transform: skewX(-8deg);
}


.about-split-text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 28px;
  max-width: 620px;
}

.about-split .about-copy p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
}

.pull-quote-light {
  color: #fff;
  border-image: var(--gradient) 1;
}

.pull-quote-light span { color: rgba(255,255,255,0.6); }

.about-split-media {
  position: relative;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

.about-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 860px) {
  .about-split-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-split-text { padding: 64px 24px 40px; }

  .about-split-media {
    clip-path: none;
    height: 340px;
    order: -1;
  }
}

/* Book */
.book-bold {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 110px 24px;
}

.book-bold-watermark {
  position: absolute;
  top: -0.12em;
  left: -0.03em;
  margin: 0;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(6rem, 20vw, 15rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.08);
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}

.book-bold-wedge {
  position: absolute;
  right: -10%;
  top: 0;
  width: 60%;
  height: 100%;
  background: var(--gradient);
  clip-path: polygon(45% 0, 100% 0, 100% 100%, 20% 100%);
  opacity: 0.9;
  z-index: 0;
}

.book-bold-bird {
  position: absolute;
  right: 2%;
  bottom: -6%;
  width: 34%;
  max-width: 420px;
  z-index: 0;
  opacity: 0.9;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
  pointer-events: none;
}

.book-bold-inner { position: relative; z-index: 1; }

.book-bold .eyebrow {
  background: none;
  -webkit-text-fill-color: initial;
  color: rgba(255,255,255,0.8);
}

.book-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

.book-cover img {
  border-radius: 10px;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.6);
}

.book-bold .book-grid { grid-template-columns: 380px 1fr; }

.book-bold .book-cover img {
  border-radius: 0;
  box-shadow: none;
  width: 100%;
}

.book-bold .book-copy h3 {
  font-family: 'Fraunces', serif;
  font-size: 2.1rem;
  margin-bottom: 4px;
  color: #fff;
}

.book-bold .book-copy p {
  color: rgba(255,255,255,0.78);
}

.book-bold .book-meta,
.book-bold .book-meta strong {
  color: rgba(255,255,255,0.9);
}

.book-subtitle {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 22px;
}

@media (max-width: 760px) {
  .book-bold-bird { width: 46%; opacity: 0.5; }
  .book-bold-wedge { width: 80%; opacity: 0.55; }
}

.book-copy p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin: 0 0 16px;
}

.book-meta {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 32px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.book-meta strong { color: var(--ink); }

/* Speaking cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 8px 0 0;
}

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}

.card h3 { font-size: 1.1rem; margin-bottom: 10px; }

.card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}

/* Newsletter */
.newsletter {
  background: var(--ink);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-bg-media {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: 420px;
  max-width: 46%;
  aspect-ratio: 1;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  -webkit-mask-image: radial-gradient(circle, #000 42%, transparent 72%);
  mask-image: radial-gradient(circle, #000 42%, transparent 72%);
}

.newsletter-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 760px) {
  .newsletter-bg-media { display: none; }
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.newsletter h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.newsletter-glow {
  text-shadow:
    0 0 18px rgba(0,173,227,0.85),
    0 0 40px rgba(0,173,227,0.55),
    0 0 80px rgba(0,173,227,0.35);
}

.newsletter-lead {
  color: rgba(255,255,255,0.75);
  margin: 0 auto 32px;
}

.newsletter .hero-actions { justify-content: center; }

.substack-feed {
  list-style: none;
  margin: 40px auto 0;
  padding: 0;
  max-width: 520px;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.substack-feed li {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.substack-feed a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 4px;
  transition: color 0.15s ease;
}

.substack-feed a:hover { color: var(--blue); }

.substack-feed .substack-title {
  font-weight: 600;
  font-size: 0.98rem;
}

.substack-feed .substack-date {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* Media / video */
.video-wrap {
  position: relative;
  padding-bottom: 177.78%; /* 9:16 portrait */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -24px rgba(15,17,21,0.35);
  width: 100%;
  max-width: 400px;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Instagram */
.insta-feed { margin-top: 8px; }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.insta-post {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  position: relative;
}

.insta-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.insta-post:hover img { transform: scale(1.05); }

@media (max-width: 640px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}

.insta-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--paper);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.insta-card:hover { border-color: var(--pink); transform: translateY(-1px); }

.insta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #fff;
  flex-shrink: 0;
}

.insta-card span:last-child {
  display: flex;
  flex-direction: column;
}

.insta-card strong { font-size: 1rem; }
.insta-card em { font-style: normal; color: var(--ink-soft); font-size: 0.9rem; }

/* Contact */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  min-width: 220px;
  background: var(--paper);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.contact-item:hover { border-color: var(--pink); transform: translateY(-1px); }

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px 24px 32px;
  color: var(--ink-soft);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--ink-soft);
  transition: all 0.15s ease;
}

.footer-social a:hover {
  color: #fff;
  background: var(--gradient);
  border-color: transparent;
}

/* Responsive */
@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    display: none;
  }

  .nav-links.open { display: flex; }

  .nav-links li { border-top: 1px solid var(--border); }

  .nav-links a {
    display: block;
    padding: 16px 24px;
  }

  .hero {
    min-height: auto;
    background: var(--ink);
    display: block;
  }

  .hero-media {
    position: relative;
    height: 52vh;
    min-height: 320px;
  }

  .hero-media::after {
    background: linear-gradient(0deg, var(--ink) 0%, rgba(15,17,21,0.85) 18%, rgba(15,17,21,0.15) 55%, transparent 75%);
  }

  .hero-inner {
    padding: 32px 24px 56px;
  }

  .cards { grid-template-columns: 1fr; }

  .book-grid { grid-template-columns: 1fr; }

  .book-bold .book-grid { grid-template-columns: 1fr; }

  .book-cover { max-width: 240px; }

  .book-meta { grid-template-columns: 1fr; }

  .praise-grid { grid-template-columns: 1fr; }
}
