/* ============================================
   EVA WEBSITE — GLOBAL STYLES
   Executive Virtual Assistant
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --navy:      #0b1423;
  --navy-mid:  #152038;
  --gold:      #c9a84c;
  --gold-lt:   #e2c97e;
  --cream:     #faf8f4;
  --smoke:     #f0ede8;
  --slate:     #8a94a6;
  --white:     #ffffff;
  --radius:    12px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,h2,h3,h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}

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

/* ── Utility ── */
.container { width: min(1200px, 92vw); margin-inline: auto; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.headline span { color: var(--gold); font-style: italic; }

.subtext {
  color: var(--slate);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.8;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(11,20,35,.3);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(11,20,35,.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}

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

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .02em;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-cta { margin-left: 8px; }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201,168,76,.05) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow-text {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title strong {
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.stat-item {}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 6px;
}

/* Hero image side */
.hero-visual {
  position: relative;
}

.hero-photo-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--navy-mid), #1e2d47);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #152038, #1e3050);
  color: rgba(255,255,255,.3);
  gap: 16px;
}

.hero-photo-placeholder svg {
  opacity: .3;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(201,168,76,.3);
}

.hero-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.hero-badge-text {
  font-size: .75rem;
  font-weight: 600;
  opacity: .8;
}

.hero-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--gold);
  border-radius: 16px;
  opacity: .4;
}

/* ── About Strip ── */
.about-strip {
  background: var(--white);
  padding: 64px 0;
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text { }
.about-image-wrap {
  position: relative;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--smoke);
}

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

.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--smoke), #e8e4dd);
  color: var(--slate);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── Services ── */
.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid rgba(0,0,0,.05);
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.09);
  border-color: rgba(201,168,76,.2);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(201,168,76,.04));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--slate);
  font-size: .9rem;
  line-height: 1.75;
}

/* ── Portfolio / Videos ── */
.portfolio { background: var(--navy); padding: 96px 0; }

.portfolio .headline { color: var(--white); }
.portfolio .subtext  { color: rgba(255,255,255,.5); }
.portfolio .tag      { color: var(--gold); }

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

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

.video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--navy-mid);
  cursor: pointer;
  group: true;
}

.video-card:first-child {
  grid-column: span 2;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.video-card:hover .video-thumb {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,20,35,.85) 0%, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-card:hover .video-overlay {
  background: linear-gradient(to top, rgba(11,20,35,.9) 0%, rgba(11,20,35,.3) 60%);
}

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.video-card:hover .play-btn {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
}

.play-btn svg { fill: white; }

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}

.video-title {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.video-duration {
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .05em;
}

/* Add video button */
.add-video-btn {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  background: transparent;
  border: 2px dashed rgba(201,168,76,.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition);
  color: rgba(255,255,255,.3);
}

.add-video-btn:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.04);
  color: var(--gold);
}

.add-video-btn span {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ── Video Modal ── */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.modal-backdrop.open { display: flex; }

.modal-content {
  width: min(900px, 100%);
  position: relative;
}

.modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
}

.modal-close:hover { color: var(--gold); }

.modal-video-wrap {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.modal-video-wrap iframe,
.modal-video-wrap video {
  width: 100%;
  height: 100%;
  border: none;
}

/* Add Video Form */
.add-video-form {
  display: none;
  background: var(--navy-mid);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(201,168,76,.15);
}

.add-video-form.open { display: block; }

.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 24px;
}

.form-row {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  transition: border-color var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.08);
}

.form-input::placeholder { color: rgba(255,255,255,.25); }

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* ── Testimonials ── */
.testimonials { background: var(--smoke); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(0,0,0,.05);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
}

.testimonial-text {
  color: var(--slate);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8b6914);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: .9rem;
}

.testimonial-role {
  color: var(--slate);
  font-size: .78rem;
}

/* ── Book CTA ── */
.book-cta {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.book-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,.07) 0%, transparent 70%);
}

.book-cta-content { position: relative; z-index: 1; }

.book-cta .headline { color: var(--white); }
.book-cta .subtext  {
  color: rgba(255,255,255,.5);
  margin: 0 auto 40px;
}

.book-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.calendly-note {
  margin-top: 20px;
  color: rgba(255,255,255,.3);
  font-size: .8rem;
  letter-spacing: .05em;
}

/* ── Footer ── */
.footer {
  background: #07101e;
  padding: 56px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  color: rgba(255,255,255,.35);
  font-size: .875rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,.4);
  font-size: .875rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  color: rgba(255,255,255,.25);
  font-size: .8rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: .85rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ── Training Page Specifics ── */
.training-hero {
  min-height: 70vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.training-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(201,168,76,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(201,168,76,.04) 0%, transparent 50%);
}

.training-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.training-hero .hero-title { font-size: clamp(2.4rem,4.5vw,4rem); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.program-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.05);
  transition: var(--transition);
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,.1);
}

.program-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.program-banner {
  background: linear-gradient(135deg, var(--navy), #1e3050);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.program-banner-icon {
  font-size: 2.5rem;
  margin-bottom: auto;
  padding-bottom: 24px;
}

.program-banner h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.program-level {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}

.program-body {
  padding: 40px;
}

.program-card:not(.featured) .program-body {
  padding: 32px;
}

.program-desc {
  color: var(--slate);
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.program-modules {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.program-modules li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--navy);
}

.program-modules li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.program-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.program-meta {
  display: flex;
  gap: 16px;
}

.program-meta-item {
  text-align: center;
}

.program-meta-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
}

.program-meta-key {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--slate);
}

/* Process Steps */
.process { background: var(--cream); }

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding-bottom: 48px;
}

.step-item:last-child { padding-bottom: 0; }

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content { padding-top: 12px; }

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--slate);
  font-size: .92rem;
  line-height: 1.75;
  max-width: 560px;
}

/* FAQ */
.faq { background: var(--white); }

.faq-list {
  margin-top: 56px;
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--navy);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201,168,76,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 300;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  color: var(--slate);
  line-height: 1.8;
  padding-bottom: 24px;
  font-size: .95rem;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .video-grid { grid-template-columns: repeat(2,1fr); }
  .video-card:first-child { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .program-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card:first-child { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-image-wrap { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
  .steps-list::before { display: none; }
}

/* ── Mobile Nav Drawer ── */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--navy);
  z-index: 1500;
  padding: 80px 32px 40px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  border-left: 1px solid rgba(255,255,255,.06);
}

.nav-drawer.open { transform: translateX(0); }

.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1400;
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.nav-drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.nav-drawer-links a {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition);
}

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

.nav-drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition);
}
.nav-drawer-close:hover { color: var(--gold); }
