/* ============================================
   ISAAC MILLS-OWOO
   Editorial · Asymmetric · Intentional
   ============================================ */

:root {
  --ink:     #0c0b09;
  --paper:   #f5f0e8;
  --rust:    #b85c38;
  --sage:    #6b8f71;
  --warm:    #e8e0d0;
  --dim:     #7a7468;
  --on-dark: rgba(245,240,232,0.75);

  --serif: 'DM Serif Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rust);
}

/* ---- SHARED LABELS ---- */
.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.6rem;
}
.label.light { color: rgba(245,240,232,0.45); }

/* section big background numbers */
.section-num {
  position: absolute;
  top: 0; right: 2rem;
  font-family: var(--serif);
  font-size: clamp(10rem, 18vw, 18rem);
  line-height: 0.85;
  color: var(--ink);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.section-num.light { color: var(--paper); opacity: 0.06; }

/* ---- BUTTONS ---- */
.btn-fill {
  display: inline-block;
  background: var(--rust);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: background 0.22s var(--ease), transform 0.22s var(--ease);
}
.btn-fill:hover {
  background: #9e4d2e;
  transform: translateY(-2px);
}
.btn-fill.full { width: 100%; text-align: center; display: block; }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1.5px solid var(--rust);
  padding-bottom: 2px;
  transition: color 0.2s, gap 0.2s;
}
.btn-text:hover { color: var(--rust); gap: 0.7rem; }
.btn-text.light { color: var(--paper); border-bottom-color: rgba(245,240,232,0.4); }
.btn-text.light:hover { color: rgba(245,240,232,0.7); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--paper);
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(245,240,232,0.35);
  transition: gap 0.2s var(--ease), border-color 0.2s;
}
.link-arrow svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.22s var(--ease);
}
.link-arrow:hover { gap: 1rem; border-color: rgba(245,240,232,0.7); }
.link-arrow:hover svg { transform: translateX(3px); }
.link-arrow.secondary { color: rgba(245,240,232,0.55); }
.link-arrow.secondary:hover { color: var(--paper); }

/* ---- NAV ---- */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  mix-blend-mode: difference;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.5rem;
}

.logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--paper);
  letter-spacing: 0.05em;
}

#main-nav {
  display: flex;
  gap: 2.5rem;
}
#main-nav a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.65;
  transition: opacity 0.2s;
}
#main-nav a:hover { opacity: 1; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.toggle-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.toggle-lines i {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: all 0.28s var(--ease);
}

/* ---- HERO ---- */
#hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  bottom: -0.1em;
  left: -0.02em;
  font-family: var(--serif);
  font-size: clamp(12rem, 28vw, 28rem);
  line-height: 0.82;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,240,232,0.06);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  padding: 0 2.5rem;
  padding-top: 10rem;
  padding-bottom: 5rem;
  gap: 3rem;
}

.hero-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.4rem;
}

.hero-left h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  color: var(--paper);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.hero-left h5 {
  font-family: var(--serif);
  font-size: clamp(.9rem, 1.3vw, 2rem);
  line-height: .8;
  color: var(--paper);
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
}

.h1-line { display: block; }
.h1-italic {
  font-style: italic;
  color: var(--rust);
  padding-left: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-photo-wrap {
  position: relative;
  width: min(380px, 90%);
}

.hero-photo-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(20%) contrast(1.05);
}

.hero-photo-label {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  background: var(--rust);
  padding: 0.65rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-photo-label span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper);
}

.hero-scroll {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2.5rem;
  border-top: 1px solid rgba(245,240,232,0.08);
}
.scroll-track {
  width: 60px; height: 1px;
  background: rgba(245,240,232,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-thumb {
  position: absolute;
  top: 0; left: 0;
  width: 30px; height: 100%;
  background: var(--rust);
  animation: scrollThumb 2.5s ease-in-out infinite;
}
@keyframes scrollThumb {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(200%); }
  100% { transform: translateX(-100%); }
}
.hero-scroll span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
}

/* ---- TICKER ---- */
.ticker {
  background: var(--rust);
  padding: 0.8rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 1.5rem;
  animation: tickerMove 30s linear infinite;
}
.ticker-track span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
}
.ticker-track .sep { opacity: 0.4; }
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- ABOUT ---- */
#about {
  position: relative;
  padding: 8rem 2.5rem;
  background: var(--paper);
}

.about-layout {
  display: grid;
  grid-template-columns: 280px 1fr 340px;
  grid-template-rows: auto 1fr;
  gap: 2rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.about-intro {
  grid-column: 1;
  grid-row: 1;
  padding-top: 0.5rem;
}

.about-intro h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-top: 0.5rem;
}

.about-body {
  grid-column: 2;
  grid-row: 1 / 3;
}

.about-lead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(12,11,9,0.12);
}

.about-body p {
  color: var(--dim);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  max-width: 55ch;
}

.about-figures {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.figure b {
  display: block;
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--rust);
  line-height: 1;
}
.figure span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  line-height: 1.4;
}

.about-photo-col {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: start;
}

.about-photo-frame {
  position: relative;
}
.about-photo-frame::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: -12px;
  border: 1px solid var(--rust);
  opacity: 0.25;
  z-index: 0;
}
.about-photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(10%);
}

/* ---- BOOK ---- */
.book-section {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 8rem 2.5rem;
  overflow: hidden;
}

.book-eyebrow {
  max-width: 1280px;
  margin: 0 auto 3rem;
}

.book-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.book-title-big {
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.book-title-big em { color: var(--rust); }

.book-sub-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--on-dark);
  margin-top: 1.2rem;
  line-height: 1.5;
}

.book-cover-col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 1rem;
}

.book-float {
  position: relative;
  transition: transform 0.4s var(--ease);
}
.book-float:hover { transform: translateY(-8px) rotate(-1deg); }

.book-float img {
  width: min(220px, 100%);
  box-shadow:
    -5px 5px 0 rgba(184,92,56,0.3),
    0 30px 60px rgba(0,0,0,0.5);
}

.book-desc {
  font-size: 0.95rem;
  color: var(--on-dark);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.book-desc em { font-family: var(--serif); font-style: italic; }

.book-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245,240,232,0.1);
}

.book-list li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.book-list > li > span {
  font-family: var(--serif);
  font-size: 0.75rem;
  color: var(--rust);
  opacity: 0.7;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.book-list b {
  display: block;
  font-size: 0.85rem;
  color: var(--paper);
  margin-bottom: 0.2rem;
}
.book-list p {
  font-size: 0.82rem;
  color: var(--on-dark);
  margin: 0;
}

.book-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ---- SPEAKING ---- */
#speaking {
  position: relative;
  background: var(--paper);
  padding: 8rem 2.5rem;
}

.speaking-header {
  max-width: 1280px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem 5rem;
  align-items: start;
}

.speaking-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-top: 0.4rem;
}

.speaking-sub {
  font-size: 0.92rem;
  color: var(--dim);
  max-width: 50ch;
  margin-top: 1rem;
  line-height: 1.75;
}

/* topics as cards */
.topics-list {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.topic-row {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--paper);
  border: 1px solid rgba(12,11,9,0.1);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.topic-row:hover {
  border-color: var(--rust);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(12,11,9,0.08);
}
.topic-row.highlight {
  background: var(--ink);
  border-color: var(--rust);
}
.topic-row.highlight .t-content h3 { color: var(--paper); }
.topic-row.highlight .t-content p   { color: var(--on-dark); }
.topic-row.highlight .t-num          { color: var(--rust); opacity: 0.6; }

.t-num {
  font-family: var(--serif);
  font-size: 0.72rem;
  font-style: italic;
  color: var(--rust);
  opacity: 0.45;
  margin-bottom: 1.2rem;
}

.t-content {
  flex: 1;
}
.t-content h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.t-content p {
  font-size: 0.85rem;
  color: var(--dim);
  margin: 0;
  line-height: 1.7;
}

.t-tag {
  align-self: flex-start;
  margin-top: 1.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  background: var(--warm);
  padding: 0.3rem 0.75rem;
  white-space: nowrap;
}
.t-tag.popular {
  background: var(--rust);
  color: var(--paper);
}

.venues-row {
  max-width: 1280px;
  margin: 3.5rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(12,11,9,0.08);
  display: flex;
  align-items: baseline;
  gap: 3rem;
  flex-wrap: wrap;
}

.venues-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.venues-wrap span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--dim);
  background: var(--warm);
  padding: 0.3rem 0.9rem;
}

.speaking-cta {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(12,11,9,0.08);
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 8rem 2.5rem;
  overflow: hidden;
}

.testimonials-section > .label {
  max-width: 1280px;
  margin: 0 auto 3rem;
  display: block;
}

.quotes-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto 4rem;
  align-items: stretch;
}

.quote-block {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid rgba(245,240,232,0.1);
  transition: border-color 0.25s var(--ease);
}
.quote-block:hover { border-color: var(--rust); }

.q-mark {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 0.8;
  color: var(--rust);
  opacity: 0.5;
  margin-bottom: 0.9rem;
}

.quote-block p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--paper);
  margin-bottom: 1.5rem;
  flex: 1;
}

.quote-block p em {
  font-style: normal;
  color: var(--rust);
  font-family: var(--serif);
}

.quote-block footer {
  border-top: 1px solid rgba(245,240,232,0.08);
  padding-top: 1rem;
}
.quote-block footer b {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 0.15rem;
}
.quote-block footer span {
  font-size: 0.7rem;
  color: var(--on-dark);
}

.featured-in {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(245,240,232,0.08);
}
.featured-in > .label { margin-bottom: 1.5rem; }

.fi-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
}
.fi-list span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--on-dark);
}

/* ---- CONTACT ---- */
.contact-section {
  position: relative;
  background: var(--paper);
  padding: 8rem 2.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.contact-left h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin: 0.6rem 0 2.5rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.c-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rust);
  border-bottom: 1px solid rgba(184,92,56,0.25);
  padding-bottom: 3px;
  transition: border-color 0.2s;
  align-self: flex-start;
}
.c-link:hover { border-color: var(--rust); }

.socials {
  display: flex;
  gap: 1.5rem;
}
.s-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.s-link:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.f-row { margin-bottom: 1.2rem; }
.f-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.2rem; }

.f-group { display: flex; flex-direction: column; gap: 0.4rem; }

.f-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.f-group input,
.f-group select,
.f-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--warm);
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.f-group input::placeholder,
.f-group textarea::placeholder { color: rgba(12,11,9,0.3); }
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: var(--rust);
  background: var(--paper);
}
.f-group textarea { resize: vertical; }

.f-note {
  margin-top: 0.8rem;
  font-size: 0.72rem;
  color: var(--dim);
  text-align: center;
}

/* ---- FOOTER ---- */
#site-footer {
  background: var(--ink);
  padding: 2rem 2.5rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(245,240,232,0.4);
}

.footer-nav {
  display: flex;
  gap: 2rem;
}
.footer-nav a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(245,240,232,0.7); }

#site-footer p {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.2);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-layout   { grid-template-columns: 1fr 1fr; }
  .about-intro    { grid-column: 1; }
  .about-body     { grid-column: 1; grid-row: 2; }
  .about-photo-col { grid-column: 2; grid-row: 1 / 3; }

  .book-layout    { grid-template-columns: 1fr 1fr; }
  .book-title-col { grid-column: 1; }
  .book-cover-col { grid-column: 2; }
  .book-desc-col  { grid-column: 1 / 3; }

  .speaking-header { grid-template-columns: 1fr; }
  .topics-list     { grid-template-columns: repeat(2, 1fr); }
  .contact-layout  { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  #main-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 99;
  }
  #main-nav.open { display: flex; }
  #main-nav a { font-size: 1.2rem; opacity: 1; }

  .hero-inner      { grid-template-columns: 1fr; padding-top: 8rem; }
  .hero-right      { display: none; }
  .hero-left h1    { font-size: clamp(2.5rem, 8vw, 4rem); }

  .about-layout    { grid-template-columns: 1fr; }
  .about-photo-col { grid-column: 1; grid-row: auto; }

  .book-layout     { grid-template-columns: 1fr; }
  .book-cover-col  { grid-column: 1; }
  .book-desc-col   { grid-column: 1; }

  .topics-list     { grid-template-columns: 1fr; }
  .quotes-layout   { grid-template-columns: 1fr; }

  .f-row.two-col   { grid-template-columns: 1fr; }

  .footer-inner    { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  #about, #speaking, .book-section, .testimonials-section, .contact-section {
    padding: 5rem 1.25rem;
  }
  .hero-inner { padding: 6rem 1.25rem 3rem; }
  .nav-inner  { padding: 1.2rem 1.25rem; }
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
