/* ═══════════════════════════════════════════
   TOKENS
════════════════════════════════════════════ */
:root {
  --yellow: #F5C100;
  --yellow-dark: #D4A600;
  --yellow-light: #FFF6CC;
  --black: #111111;
  --white: #FFFFFF;
  --light-grey: #F7F7F5;
  --text: #333333;
  --text-muted: #666666;
  --border: #E5E5E5;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.12);

  --container: 1140px;
  --container-narrow: 760px;

  --transition: 0.2s ease;
}

/* ═══════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ═══════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.text-centre {
  text-align: center;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 0.75rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
  margin-top: 1rem;
}

em {
  font-style: italic;
  color: var(--yellow-dark);
}

/* ═══════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.btn--primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn--outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  margin-top: 2.5rem;
}

/* ═══════════════════════════════════════════
   SECTIONS
════════════════════════════════════════════ */
.section {
  padding-block: 80px;
}

.section--hero {
  background: var(--white);
  padding-top: 40px;
}

.section--light {
  background: var(--light-grey);
}

.section--white {
  background: var(--white);
}

.section-intro {
  margin-bottom: 3rem;
}

/* ═══════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo banner */
.logo-link {
  flex-shrink: 0;
}

.logo-banner {
  display: inline-flex;
  align-items: center;
  background: var(--black);
  padding: 6px 14px;
  border: 2px solid var(--yellow);
  border-radius: 4px;
}

.logo-banner--sm {
  padding: 4px 10px;
  border-width: 1.5px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--yellow);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-banner--sm .logo-text {
  font-size: 0.95rem;
}

/* Desktop nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}

.main-nav a:not(.nav-cta):hover {
  color: var(--yellow);
}

.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--yellow);
  color: var(--black) !important;
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--yellow-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ═══════════════════════════════════════════
   HERO / VIDEO
════════════════════════════════════════════ */
.hero-title {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.hero-sub {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--black);
  max-width: 900px;
  margin-inline: auto;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.photo-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  border: 3px solid var(--yellow);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-text h2 {
  margin-bottom: 1.25rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.credential-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.credential-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.credential-list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   CONSULTATIONS
════════════════════════════════════════════ */
.consult-lead--emphasis {
  font-weight: 600;
  color: var(--black);
  font-size: 1.1rem;
}

.consult-what {
  margin: 2rem auto;
  max-width: 520px;
  text-align: left;
}

.consult-what__intro {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.consult-what__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.consult-what__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text);
}

.consult-what__list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  margin-top: 0.45em;
}

.consult-what__session-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.consult-what__session-summary {
  font-weight: 600;
  color: var(--yellow-dark);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.consult-what__close {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.consult-free-call {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}


.consult-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 720px;
  margin-inline: auto;
  margin-top: 2.5rem;
}

.consult-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.consult-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.consult-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--yellow-dark);
}

.consult-icon svg {
  width: 100%;
  height: 100%;
}

.consult-card h3 {
  margin-bottom: 0.75rem;
}

.consult-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   BOOK & COURSE
════════════════════════════════════════════ */
.resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 480px);
  justify-content: center;
  gap: 2rem;
}

.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.resource-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.resource-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
}

.resource-card__badge--course {
  background: var(--black);
  color: var(--yellow);
}

.resource-card__cover {
  height: 220px;
  overflow: hidden;
}

.resource-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.resource-card__cover--icon {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0 0;
  background: none;
}

.resource-card__cover--icon svg {
  width: 48px;
  height: 48px;
  color: var(--yellow-dark);
}

.resource-card__body {
  padding: 1.75rem;
  text-align: center;
}

.resource-card__body h3 {
  margin-bottom: 0.75rem;
}

.resource-card__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.coming-soon-label {
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: var(--yellow-dark) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem !important;
}

/* Waitlist form */
.waitlist-form {
  margin-top: 0.5rem;
}

.form-row {
  display: flex;
  gap: 0.5rem;
}

.form-row input[type="email"] {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  min-width: 0;
}

.form-row input[type="email"]:focus {
  border-color: var(--yellow);
}

.form-row input[type="email"].error {
  border-color: #e53e3e;
}

.form-row .btn {
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.form-message {
  font-size: 0.8rem !important;
  margin-top: 0.5rem;
  min-height: 1.2em;
  color: var(--text-muted) !important;
}

.form-message.success {
  color: #2f855a !important;
}

.form-message.error-msg {
  color: #e53e3e !important;
}

/* ═══════════════════════════════════════════
   COOKIE BANNER
════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--black);
  border: 1.5px solid rgba(245, 193, 0, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  padding: 1.25rem 1.5rem;
  animation: slideUp 0.3s ease;
}

.cookie-banner[hidden] {
  display: none;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  flex: 1;
  min-width: 200px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__accept {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.cookie-banner__decline {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.cookie-banner__decline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

@media (max-width: 480px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-banner__accept,
  .cookie-banner__decline {
    flex: 1;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════
   SPEAKING
════════════════════════════════════════════ */
.speaking-formats {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  margin-top: 1rem;
}

/* Shared waitlist */
.waitlist-shared {
  margin-top: 2.5rem;
  text-align: center;
}

.waitlist-shared__label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.waitlist-form--shared .form-row--centred {
  justify-content: center;
  max-width: 480px;
  margin-inline: auto;
}

.waitlist-form--shared .form-message {
  text-align: center;
}

/* ═══════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding-top: 60px;
  padding-bottom: 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--yellow);
}

.social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.social-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.social-links ul {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.social-links a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(245, 193, 0, 0.1);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-disclaimer {
  font-style: italic;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
════════════════════════════════════════════ */
@media (max-width: 900px) {
  .consult-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .social-links {
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section {
    padding-block: 56px;
  }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 1rem 24px 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: none;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-cta {
    margin-top: 0.5rem;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .photo-accent {
    display: none;
  }

  /* Resource grid */
  .resource-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .social-links {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  /* Form */
  .form-row {
    flex-direction: column;
  }

  .form-row .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
  }
}
