/* ============================================================
   ENID-MAI JONES — BRAND STYLESHEET
   Colors: Burgundy #771213 | Dark Burgundy #460001
           Cream #FFF6E0 | Black #000000 | White #FFFFFF
   Fonts:  Marcellus (headings) | PT Serif (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=PT+Serif:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 17px;
  line-height: 1.75;
  color: #111;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Marcellus', Georgia, serif;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 5rem 0; }

/* ── Color Utilities ── */
.bg-black    { background: #000; color: #fff; }
.bg-cream    { background: #FFF6E0; color: #111; }
.bg-burgundy { background: #771213; color: #fff; }
.bg-white    { background: #fff; color: #111; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: 'PT Serif', serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.15s;
  border: 2px solid transparent;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: #771213;
  color: #fff;
  border-color: #771213;
}
.btn--primary:hover { background: #460001; border-color: #460001; }

.btn--outline {
  background: transparent;
  color: #771213;
  border-color: #771213;
}
.btn--outline:hover { background: #771213; color: #fff; }

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--outline-white:hover { background: #fff; color: #771213; }

.btn--cream {
  background: #FFF6E0;
  color: #771213;
  border-color: #FFF6E0;
}
.btn--cream:hover { background: #fff; border-color: #fff; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(119, 18, 19, 0.3);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav__links a {
  font-family: 'Marcellus', serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
}

.nav__links a:hover,
.nav__links a.active { color: #fff; }

.nav__links a.active::after {
  content: '';
  display: block;
  height: 2px;
  background: #771213;
  margin-top: 3px;
  border-radius: 2px;
}

.nav__cta .btn {
  padding: 0.55rem 1.5rem;
  font-size: 0.82rem;
}

/* Mobile Nav Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ── */
.hero {
  background: #000;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding-top: 72px;
}

.hero__image {
  position: relative;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.88);
}

.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, #000 100%);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 3rem;
  position: relative;
}

.hero__eyebrow {
  font-family: 'PT Serif', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #771213;
  margin-bottom: 1.5rem;
}

.hero__title {
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: #FFF6E0;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Divider ── */
.divider {
  width: 60px;
  height: 3px;
  background: #771213;
  margin: 1.5rem 0;
}

.divider--center { margin: 1.5rem auto; }
.divider--white { background: #fff; }
.divider--cream { background: #FFF6E0; }

/* ── Section Headers ── */
.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }

.section-eyebrow {
  font-family: 'PT Serif', serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #771213;
  margin-bottom: 0.75rem;
  display: block;
}

.section-eyebrow--white { color: rgba(255,255,255,0.6); }

/* ── Client Logos ── */
.logos-strip {
  padding: 3.5rem 0;
  border-top: 1px solid #e8ddd0;
  border-bottom: 1px solid #e8ddd0;
}

.logos-strip__label {
  font-family: 'PT Serif', serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  text-align: center;
  margin-bottom: 2rem;
}

.logos-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.logos-strip__row img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.3s;
}

.logos-strip__row img:hover { filter: grayscale(0%) opacity(1); }

/* ── About Teaser / Split Sections ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.split__image {
  position: relative;
  overflow: hidden;
  min-height: 540px;
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.split__content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split--reverse .split__image { order: 2; }
.split--reverse .split__content { order: 1; }

/* ── Keynote Cards ── */
.keynotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.keynote-card {
  background: #fff;
  border-top: 3px solid #771213;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}

.keynote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.keynote-card__number {
  font-family: 'Marcellus', serif;
  font-size: 3rem;
  color: rgba(119, 18, 19, 0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.keynote-card__title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #111;
}

.keynote-card__text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.keynote-card__link {
  font-family: 'PT Serif', serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #771213;
  font-weight: 700;
  transition: letter-spacing 0.2s;
}

.keynote-card__link:hover { letter-spacing: 0.18em; }

/* ── Journey Section ── */
.journey {
  background: #000;
  padding: 6rem 0;
}

.journey__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.journey__label {
  position: sticky;
  top: 100px;
}

.journey__label h2 {
  color: #fff;
  font-size: 2.6rem;
}

.journey__label .divider { background: #771213; }

.journey__label p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.journey__text {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.85;
}

.journey__text p + p {
  margin-top: 1.5rem;
}

.journey__pull {
  font-family: 'Marcellus', serif;
  font-size: 1.55rem;
  color: #FFF6E0;
  line-height: 1.4;
  border-left: 3px solid #771213;
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}

/* ── CTA Band ── */
.cta-band {
  background: #771213;
  padding: 5rem 0;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.cta-band__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: #000;
  padding: 8rem 0 5rem;
  text-align: center;
}

.page-hero h1 { color: #fff; }
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 1.5rem auto 0;
}

/* ── About Page ── */
.bio-section {
  padding: 6rem 0;
}

.bio-section__lead {
  font-size: 1.25rem;
  font-style: italic;
  color: #444;
  line-height: 1.7;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2d8cc;
}

/* ── Speaking Page ── */
.keynote-full {
  padding: 5rem 0;
  border-bottom: 1px solid #e8ddd0;
}

.keynote-full:last-child { border-bottom: none; }

.keynote-full__header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.keynote-full__num {
  font-family: 'Marcellus', serif;
  font-size: 4rem;
  color: rgba(119, 18, 19, 0.1);
  line-height: 1;
  flex-shrink: 0;
}

.keynote-full__title { color: #111; }

.keynote-full__body {
  font-size: 1.02rem;
  color: #444;
  line-height: 1.8;
  max-width: 780px;
}

.takeaways {
  margin-top: 2rem;
}

.takeaways h4 {
  font-family: 'PT Serif', serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #771213;
  margin-bottom: 1rem;
}

.takeaways ul {
  list-style: none;
  padding: 0;
}

.takeaways ul li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: 0.97rem;
  color: #444;
  border-bottom: 1px solid #f0e8dc;
}

.takeaways ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #771213;
}

/* ── Workshops ── */
.workshop-placeholder {
  text-align: center;
  padding: 5rem 2rem;
}

.workshop-placeholder h3 {
  color: #771213;
  margin-bottom: 1rem;
}

/* ── Contact / Book Me ── */
.book-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.book-option {
  border: 1px solid #e2d8cc;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.book-option:hover {
  border-color: #771213;
  box-shadow: 0 4px 20px rgba(119,18,19,0.1);
}

.book-option__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.book-option h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #111;
}

.book-option p {
  font-size: 0.92rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* ── Contact Form ── */
.contact-form {
  max-width: 680px;
  margin: 0 auto;
}

.contact-form h2 {
  margin-bottom: 0.5rem;
}

.contact-form > p {
  color: #666;
  margin-bottom: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-family: 'PT Serif', serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'PT Serif', serif;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid #d8cfc5;
  border-radius: 4px;
  background: #fff;
  color: #111;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #771213;
}

.form-group textarea { resize: vertical; min-height: 130px; }

/* ── Footer ── */
.footer {
  background: #000;
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.6);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand img {
  height: 40px;
  margin-bottom: 1.25rem;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 280px;
  color: rgba(255,255,255,0.55);
}

.footer__col h4 {
  font-family: 'Marcellus', serif;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer__col ul li a:hover { color: #FFF6E0; }

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer__social a:hover {
  border-color: #771213;
  color: #fff;
  background: #771213;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav__links,
  .nav__cta { display: none; }

  .nav__toggle { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: #000;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(119,18,19,0.3);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__image {
    height: 55vw;
    min-height: 300px;
    order: -1;
  }

  .hero__image::after { display: none; }

  .hero__content {
    padding: 3rem 2rem;
  }

  .hero__subtitle { max-width: 100%; }

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

  .split--reverse .split__image,
  .split--reverse .split__content { order: unset; }

  .split__content { padding: 3rem 2rem; }

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

  .journey__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .journey__label { position: static; }

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

  .form-row { grid-template-columns: 1fr; }

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

@media (max-width: 600px) {
  section { padding: 3.5rem 0; }

  .hero__content { padding: 2.5rem 1.5rem; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }

  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .logos-strip__row { gap: 2rem; }
  .logos-strip__row img { height: 32px; }
}
