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

body { opacity: 1; }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0D1B35;
  --navy-light: #162340;
  --gold: #C4963A;
  --gold-light: #D4AD5A;
  --cream: #F7F3EE;
  --warm-white: #FDFBF8;
  --charcoal: #2A2A2A;
  --taupe: #8A7F74;
  --taupe-light: #C5BDB5;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--warm-white); color: var(--charcoal); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(13,27,53,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,150,58,0.2);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Ensure Elementor never covers the nav */
.elementor-section,
.elementor-widget-wrap,
.elementor-widget,
.elementor-container {
  z-index: auto !important;
}
.nav-logo { font-family: var(--serif); font-size: 18px; font-weight: 400; color: #fff; letter-spacing: 0.02em; text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { font-family: var(--sans); font-size: 11px !important; font-weight: 500 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; color: var(--navy) !important; background: var(--gold); padding: 10px 22px; border-radius: 2px; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(196,150,58,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,150,58,0.4), transparent);
}
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 80px 80px; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px; display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); opacity: 0.6; }
.hero-headline { font-family: var(--serif); font-size: clamp(50px,5.2vw,76px); font-weight: 300; line-height: 1.1; color: #fff; margin-bottom: 32px; }
.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-family: var(--sans); font-size: 16px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.60); max-width: 440px; margin-bottom: 52px; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.btn-primary {
  font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--gold); color: var(--navy); padding: 16px 36px; border-radius: 2px; text-decoration: none;
  transition: all 0.2s; border: 1px solid var(--gold); display: inline-block;
}
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-ghost {
  font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); text-decoration: none; display: flex; align-items: center; gap: 10px; transition: color 0.2s;
}
.btn-ghost:hover { color: #fff; }
.btn-ghost::after { content: '→'; font-size: 14px; }

.hero-image { position: relative; overflow: hidden; }
.hero-photo-area {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(196,150,58,0.04) 0%, transparent 60%), linear-gradient(to bottom, #162340 0%, #0a1525 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-photo-frame {
  width: 380px; height: 500px;
  border: 1px solid rgba(196,150,58,0.25);
  position: relative; margin-bottom: 60px;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px;
}
.hero-photo-frame::before {
  content: ''; position: absolute; top: -8px; left: -8px; right: 8px; bottom: -8px;
  border: 1px solid rgba(196,150,58,0.1);
}

.hero-scroll {
  position: absolute; bottom: 36px; left: 80px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.28); z-index: 3;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(196,150,58,0.4)); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cream); border-bottom: 1px solid rgba(138,127,116,0.2);
  padding: 26px 80px; display: flex; align-items: center; gap: 0;
}
.trust-bar-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); white-space: nowrap; padding-right: 36px; border-right: 1px solid var(--taupe-light); margin-right: 36px; flex-shrink: 0; }
.trust-bar-institutions { display: flex; align-items: center; gap: 44px; flex-wrap: wrap; }
.institution { font-family: var(--serif); font-size: 15px; font-weight: 500; color: var(--taupe); letter-spacing: 0.04em; opacity: 0.7; }

/* ── SECTION SHARED ── */
section { padding: 112px 80px; }
.section-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--gold); opacity: 0.5; }
.section-title { font-family: var(--serif); font-size: clamp(34px,3.2vw,54px); font-weight: 300; line-height: 1.15; color: var(--navy); margin-bottom: 24px; }
.section-title em { font-style: italic; color: var(--gold); }

/* ── ABOUT ── */
.about { background: var(--warm-white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { font-size: 16px; line-height: 1.9; color: #484848; margin-bottom: 20px; font-weight: 300; }
.about-text p strong { font-weight: 500; color: var(--navy); }
.about-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--taupe-light); border: 1px solid var(--taupe-light); margin-top: 44px; }
.about-stat { background: var(--warm-white); padding: 26px 20px; text-align: center; }
.about-stat-number { font-family: var(--serif); font-size: 38px; font-weight: 300; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.about-stat-label { font-family: var(--sans); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--taupe); font-weight: 400; }
.about-photo-box { height: 300px; overflow: hidden; border: 1px solid rgba(196,150,58,0.15); }
.about-quote-card { background: var(--navy); padding: 44px 40px; position: relative; margin-top: -2px; }
.about-quote-card::before { content: '"'; font-family: var(--serif); font-size: 110px; line-height: 0; position: absolute; top: 44px; left: 40px; color: var(--gold); opacity: 0.25; }
.about-quote-text { font-family: var(--serif); font-size: 20px; font-style: italic; font-weight: 300; color: #fff; line-height: 1.65; padding-top: 22px; position: relative; z-index: 1; }
.about-quote-attr { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 20px; }

/* ── PHOTO STRIP ── */
.photo-strip-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.quote-bar {
  padding: 72px 80px 56px;
  position: relative; z-index: 2;
  display: flex; align-items: flex-start; gap: 60px;
}
.quote-bar::after {
  content: ''; position: absolute; bottom: 0; left: 80px; right: 80px;
  height: 1px; background: linear-gradient(90deg, rgba(196,150,58,0.5), transparent);
}
.quote-accent { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; padding-top: 8px; }
.quote-mark { font-family: var(--serif); font-size: 80px; line-height: 0.7; color: var(--gold); opacity: 0.6; font-style: italic; }
.quote-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(196,150,58,0.4), transparent); }
.quote-content { flex: 1; }
.quote-eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); opacity: 0.7; margin-bottom: 20px; display: flex; align-items: center; gap: 12px;
}
.quote-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); opacity: 0.5; }
.quote-text { font-family: var(--serif); font-size: clamp(26px,3vw,42px); font-weight: 300; font-style: italic; color: #fff; line-height: 1.35; max-width: 780px; }
.quote-text em { color: var(--gold-light); font-style: italic; }

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  height: 380px;
  font-size: 0;
  line-height: 0;
}
.photo-panel {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.photo-panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.82) saturate(0.9);
}
.photo-panel:hover .photo-panel-img { transform: scale(1.04); filter: brightness(0.95) saturate(1.05); }
.photo-panel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,53,0.4) 0%, transparent 40%);
  pointer-events: none; transition: opacity 0.4s;
}
.photo-panel:hover::after { opacity: 0.5; }
.photo-panel::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s ease; z-index: 3;
}
.photo-panel:hover::before { transform: scaleX(1); }

/* ── FRAMEWORKS ── */
.frameworks { background: var(--navy); position: relative; overflow: hidden; }
.frameworks::before {
  content: 'DEEP'; position: absolute;
  font-family: var(--serif); font-size: 280px; font-weight: 600;
  color: rgba(255,255,255,0.02); top: 50%; left: 50%;
  transform: translate(-50%,-50%); white-space: nowrap; pointer-events: none; letter-spacing: 0.2em;
}
.frameworks .section-label { color: var(--gold); }
.frameworks .section-label::before { background: var(--gold); }
.frameworks .section-title { color: #fff; }
.frameworks-intro { font-size: 17px; line-height: 1.85; color: rgba(255,255,255,0.58); font-weight: 300; max-width: 600px; margin-bottom: 64px; }
.frameworks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.framework-card { background: rgba(255,255,255,0.04); padding: 48px 44px; border: 1px solid rgba(196,150,58,0.08); position: relative; transition: background 0.25s, border-color 0.25s; cursor: default; }
.framework-card:hover { background: rgba(196,150,58,0.07); border-color: rgba(196,150,58,0.3); }
.framework-card-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); opacity: 0.7; margin-bottom: 20px; }
.framework-card-name { font-family: var(--serif); font-size: 32px; font-weight: 400; color: #fff; margin-bottom: 16px; line-height: 1.1; }
.framework-card-name em { font-style: italic; color: var(--gold-light); }
.framework-card-desc { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.55); font-weight: 300; }
.framework-card-trademark { font-family: var(--mono); font-size: 9px; letter-spacing: 0.15em; color: rgba(196,150,58,0.4); margin-top: 20px; text-transform: uppercase; }
.deep-breakdown { margin-top: 64px; }
.deep-breakdown-title { font-family: var(--mono); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(196,150,58,0.6); margin-bottom: 20px; }
.deep-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; }
.deep-block { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); padding: 28px 24px; transition: all 0.2s; cursor: default; }
.deep-block:hover { background: rgba(196,150,58,0.06); border-color: rgba(196,150,58,0.2); }
.deep-block-letter { font-family: var(--serif); font-size: 48px; font-weight: 500; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.deep-block-word { font-family: var(--sans); font-size: 13px; font-weight: 500; color: #fff; margin-bottom: 6px; }
.deep-block-desc { font-family: var(--sans); font-size: 12px; color: rgba(255,255,255,0.42); line-height: 1.6; font-weight: 300; }

/* ── SPEAKING ── */
.speaking { background: var(--cream); }
.speaking-intro { font-size: 17px; line-height: 1.85; color: #555; font-weight: 300; margin-bottom: 60px; max-width: 600px; }
.speaking-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.topics-list { display: flex; flex-direction: column; gap: 2px; }
.topic-item { display: flex; align-items: flex-start; gap: 20px; padding: 22px 24px; background: #fff; border: 1px solid rgba(138,127,116,0.15); transition: border-color 0.2s; cursor: default; }
.topic-item:hover { border-color: var(--gold); }
.topic-num { font-family: var(--mono); font-size: 11px; color: var(--gold); opacity: 0.8; flex-shrink: 0; margin-top: 3px; }
.topic-name { font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--navy); line-height: 1.3; margin-bottom: 5px; }
.topic-desc { font-size: 13px; color: var(--taupe); line-height: 1.65; font-weight: 300; }
.speaking-formats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 36px; }
.format-card { background: var(--navy); padding: 26px 22px; border-radius: 2px; }
.format-name { font-family: var(--serif); font-size: 17px; font-weight: 400; color: #fff; margin-bottom: 6px; }
.format-desc { font-size: 12px; color: rgba(255,255,255,0.48); line-height: 1.6; font-weight: 300; }
.speaking-cta { padding-top: 36px; border-top: 1px solid rgba(138,127,116,0.2); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.speaking-cta-text { font-family: var(--serif); font-size: 22px; font-weight: 300; font-style: italic; color: var(--navy); }

/* ── COACHING ── */
.coaching { background: var(--warm-white); display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.coaching-desc { font-size: 16px; line-height: 1.9; color: #484848; font-weight: 300; margin-bottom: 28px; }
.coaching-pillars { display: flex; flex-direction: column; gap: 2px; margin-top: 40px; }
.coaching-pillar { display: flex; align-items: flex-start; gap: 20px; padding: 22px 24px; background: var(--cream); border-left: 3px solid transparent; transition: all 0.2s; cursor: default; }
.coaching-pillar:hover { border-left-color: var(--gold); background: #f0ebe3; }
.cp-name { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--navy); margin-bottom: 4px; }
.cp-desc { font-size: 13px; color: var(--taupe); line-height: 1.65; font-weight: 300; }
.coaching-who { margin-top: 48px; padding: 36px 40px; background: var(--navy); }
.coaching-who-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; opacity: 0.8; }
.coaching-who-title { font-family: var(--serif); font-size: 22px; font-weight: 300; color: #fff; margin-bottom: 16px; font-style: italic; }
.coaching-who-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.coaching-who-list li { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 300; padding-left: 18px; position: relative; line-height: 1.6; }
.coaching-who-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); opacity: 0.6; }

/* ── CONSULTING ── */
.consulting { background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.consulting-desc { font-size: 16px; line-height: 1.9; color: #555; font-weight: 300; margin-bottom: 36px; }
.services-list { display: flex; flex-direction: column; }
.service-item { padding: 24px 0; border-bottom: 1px solid rgba(138,127,116,0.18); display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; cursor: default; }
.service-item:first-child { border-top: 1px solid rgba(138,127,116,0.18); }
.service-name { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--navy); margin-bottom: 5px; transition: color 0.2s; }
.service-desc { font-size: 13px; color: var(--taupe); font-weight: 300; line-height: 1.65; max-width: 380px; }
.service-arrow { color: var(--taupe-light); font-size: 18px; flex-shrink: 0; margin-top: 4px; transition: all 0.2s; }
.service-item:hover .service-arrow { color: var(--gold); transform: translateX(4px); }
.service-item:hover .service-name { color: var(--gold); }
.consulting-cta-block { margin-top: 48px; padding: 36px; background: var(--navy); }
.consulting-cta-text { font-family: var(--serif); font-size: 20px; font-weight: 300; font-style: italic; color: #fff; margin-bottom: 20px; line-height: 1.45; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--navy); padding: 112px 80px; position: relative; overflow: hidden; }
.testimonials::before { content: '❝'; font-family: var(--serif); font-size: 400px; position: absolute; top: -80px; left: 40px; color: rgba(255,255,255,0.02); line-height: 1; pointer-events: none; }
.testimonials-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.testimonials .section-label { justify-content: center; }
.testimonials .section-label::before { display: none; }
.testimonial-quote { font-family: var(--serif); font-size: clamp(21px,2.3vw,30px); font-weight: 300; font-style: italic; color: #fff; line-height: 1.6; margin-bottom: 36px; margin-top: 20px; }
.testimonial-meta { display: flex; align-items: center; justify-content: center; gap: 20px; }
.testimonial-line { width: 40px; height: 1px; background: var(--gold); opacity: 0.5; }
.testimonial-name { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.testimonial-role { font-family: var(--sans); font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 4px; text-align: center; }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 44px; }
.tdot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.18); cursor: pointer; transition: background 0.2s; }
.tdot.active { background: var(--gold); }

/* ── CONTACT ── */
.contact-section {
  background: var(--warm-white);
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 112px 80px !important;
}
.contact-intro { max-width: 640px; margin-bottom: 40px; }
.contact-headline { font-family: var(--serif); font-size: clamp(34px,3.2vw,50px); font-weight: 300; line-height: 1.2; color: var(--navy); margin-bottom: 22px; }
.contact-headline em { font-style: italic; color: var(--gold); }
.contact-desc { font-size: 16px; line-height: 1.85; color: #666; font-weight: 300; margin-bottom: 36px; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 64px 80px 44px; border-top: 1px solid rgba(196,150,58,0.15); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand-name { font-family: var(--serif); font-size: 26px; font-weight: 300; color: #fff; margin-bottom: 10px; letter-spacing: 0.02em; }
.footer-brand-name span { color: var(--gold); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.75; font-weight: 300; margin-bottom: 26px; max-width: 280px; }
.footer-social { display: flex; gap: 20px; }
.social-link { font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; }
.social-link:hover { color: var(--gold); }
.footer-col-title { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; opacity: 0.75; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.42); text-decoration: none; font-weight: 300; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.22); text-transform: uppercase; }
.footer-tagline-bottom { font-family: var(--serif); font-size: 13px; font-style: italic; color: rgba(196,150,58,0.45); letter-spacing: 0.03em; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.hero-text > * { animation: fadeUp 0.8s ease forwards; opacity: 0; }
.hero-eyebrow { animation-delay: 0.1s; }
.hero-headline { animation-delay: 0.25s; }
.hero-sub { animation-delay: 0.4s; }
.hero-actions { animation-delay: 0.55s; }

/* ── TABLET ── */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .hero { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-text { padding: 120px 40px 80px; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .frameworks-grid { grid-template-columns: 1fr; }
  .deep-row { grid-template-columns: 1fr 1fr; }
  .speaking-layout { grid-template-columns: 1fr; }
  .coaching { grid-template-columns: 1fr; gap: 40px; }
  .consulting { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  section { padding: 80px 40px; }
  .trust-bar { padding: 24px 40px; flex-wrap: wrap; gap: 16px; }
  .quote-bar { padding: 48px 40px 40px; }
}

/* ── MOBILE ── */
@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-text { padding: 100px 24px 60px; }
  .hero-headline { font-size: 42px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .about-stat-row { grid-template-columns: 1fr; }
  .deep-row { grid-template-columns: 1fr; }
  .speaking-formats { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  section { padding: 64px 20px; }
  .trust-bar { padding: 20px; }
  .trust-bar-label { border-right: none; margin-right: 0; padding-right: 0; }
  .trust-bar-institutions { gap: 20px; }
  .section-title { font-size: 32px; }
  .speaking-cta { flex-direction: column; align-items: flex-start; }
  .testimonials { padding: 80px 24px; }
  .contact-section { padding: 64px 20px !important; }
  .photo-strip { grid-template-columns: 1fr 1fr; height: 300px; }
  .quote-bar { padding: 40px 20px 32px; flex-direction: column; gap: 16px; }
  .quote-bar::after { left: 20px; right: 20px; }
}

/* ── WPFORMS STYLING ── */
.wpforms-container input,
.wpforms-container select,
.wpforms-container textarea {
  font-family: var(--sans) !important;
  font-size: 14px !important;
  color: var(--charcoal) !important;
  background: #fff !important;
  border: 1px solid rgba(138,127,116,0.28) !important;
  padding: 12px 14px !important;
  border-radius: 2px !important;
  width: 100% !important;
}
.wpforms-container input:focus,
.wpforms-container select:focus,
.wpforms-container textarea:focus {
  border-color: var(--gold) !important;
  outline: none !important;
  box-shadow: none !important;
}
.wpforms-container label {
  font-family: var(--mono) !important;
  font-size: 10px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--taupe) !important;
  margin-bottom: 6px !important;
}
.wpforms-submit-container button,
.wpforms-container .wpforms-submit {
  font-family: var(--sans) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  background: var(--navy) !important;
  color: #fff !important;
  padding: 16px 36px !important;
  border: 1px solid var(--navy) !important;
  border-radius: 2px !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  width: 100% !important;
  margin-top: 12px !important;
}
.wpforms-submit-container button:hover,
.wpforms-container .wpforms-submit:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--navy) !important;
}
.wpforms-field { margin-bottom: 12px !important; }

/* ── HIDE THEME HEADER AND FOOTER PERMANENTLY ── */
.site-header, header.site-header, .masthead, #masthead,
.site-footer, footer.site-footer, #colophon { display: none !important; }
.site-content, .entry-content, #content, .site-main, #main {
  max-width: 100% !important; padding: 0 !important; margin: 0 !important; width: 100% !important;
}
.page-template-default .elementor-widget-container { max-width: 100% !important; width: 100% !important; }
/* ── KIT FORM STYLING ── */
.formkit-form {
  background: var(--navy) !important;
  padding: 64px 80px !important;
  text-align: center !important;
}

.formkit-form h1,
.formkit-form h2,
.formkit-form .formkit-header {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(28px, 3vw, 42px) !important;
  font-weight: 300 !important;
  color: #fff !important;
  line-height: 1.3 !important;
  margin-bottom: 12px !important;
}

.formkit-form .formkit-subheader p,
.formkit-form .formkit-description {
  font-size: 14px !important;
  color: rgba(255,255,255,0.5) !important;
  font-weight: 300 !important;
  max-width: 480px !important;
  margin: 0 auto 24px !important;
}

.formkit-form .formkit-fields {
  display: flex !important;
  gap: 12px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}

.formkit-form input[type="text"],
.formkit-form input[type="email"] {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  color: #2A2A2A !important;
  background: #fff !important;
  border: 1px solid rgba(138,127,116,0.28) !important;
  padding: 14px 20px !important;
  border-radius: 2px !important;
  outline: none !important;
  width: 200px !important;
}

.formkit-form input[type="text"]:focus,
.formkit-form input[type="email"]:focus {
  border-color: #C4963A !important;
}

.formkit-form .formkit-submit,
.formkit-form button[type="submit"] {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  background: #C4963A !important;
  color: #0D1B35 !important;
  padding: 14px 28px !important;
  border: 1px solid #C4963A !important;
  border-radius: 2px !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
}

.formkit-form .formkit-submit:hover,
.formkit-form button[type="submit"]:hover {
  background: transparent !important;
  color: #C4963A !important;
}

.formkit-powered-by-convertkit-container {
  display: none !important;
}

@media (max-width: 640px) {
  .formkit-form {
    padding: 48px 24px !important;
  }
  .formkit-form .formkit-fields {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .formkit-form input[type="text"],
  .formkit-form input[type="email"] {
    width: 100% !important;
  }
  .formkit-form .formkit-submit {
    width: 100% !important;
  }
}