/*
Theme Name:  Hope Consultancy Services
Template:    Divi
Description: Divi child theme for Hope Consultancy Services — navy/gold editorial aesthetic.
Version:     2.0.0
Text Domain: hope-consultancy
*/

/* Fonts loaded via functions.php wp_enqueue_style — no @import needed here */

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --navy:       #0D1B2A;
  --navy-mid:   #1A2E45;
  --gold:       #B8972A;
  --gold-light: #D4B44A;
  --slate:      #4A5568;
  --light:      #F8F7F4;
  --white:      #FFFFFF;
  --border:     #E2DDD4;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body,
#page-container,
.et_pb_pagebuilder_layout #page-container {
  font-family: var(--font-sans) !important;
  font-size: 15px;
  font-weight: 300;
  color: var(--navy);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font-sans); }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
}

p { margin-bottom: 1.4em; }
p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════
   SITE LAYOUT
═══════════════════════════════════════════════ */
.site { overflow-x: hidden; }
.site-main { display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section { padding: 80px 0; }

/* ═══════════════════════════════════════════════
   SITE HEADER / NAV
═══════════════════════════════════════════════ */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(184,151,42,0.15);
}

/* Hide Divi's own header since we supply header.php */
#main-header,
#top-header,
.et_header_style_centered #main-header,
.et_pb_fullwidth_header { display: none !important; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }

.nav-logo-badge {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600; font-size: 17px;
  color: var(--navy);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav-wordmark {
  font-family: var(--font-serif);
  font-weight: 300; font-size: 14px;
  color: #CBD5E0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Primary nav list */
.nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links li { margin: 0; padding: 0; }
.nav-links a {
  font-size: 12px; font-weight: 400;
  color: #94A3B8;
  letter-spacing: 1px;
  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 .current-menu-item > a { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: transparent;
  border: 0.5px solid var(--gold);
  color: var(--gold);
  padding: 8px 18px;
  font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-sans);
  transition: all var(--transition);
  display: inline-block;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }

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

/* ═══════════════════════════════════════════════
   SECTION LABELS & DIVIDERS
═══════════════════════════════════════════════ */
.section-label {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  margin-bottom: 14px; display: block;
}
.divider {
  width: 48px; height: 1.5px;
  background: var(--gold);
  margin: 24px 0;
}
.section-body {
  font-size: 15px; font-weight: 300;
  line-height: 1.8; color: var(--slate);
  max-width: 560px;
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 13px 28px; border: none;
  transition: all var(--transition);
  cursor: pointer;
}
.btn--primary { background: var(--gold); color: var(--navy); }
.btn--primary:hover { background: var(--gold-light); color: var(--navy); }
.btn--outline { background: transparent; border: 0.5px solid var(--gold); color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--navy); }
.btn--ghost {
  background: none; border: none;
  color: #94A3B8; font-size: 12px;
  letter-spacing: 1px; text-decoration: underline;
  text-underline-offset: 3px; padding: 0;
}
.btn--ghost:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero-section { background: var(--navy); }

.hero {
  background: var(--navy);
  padding: 80px 40px 0;
  display: grid;
  grid-template-columns: 1fr minmax(0, 380px);
  gap: 40px;
  align-items: end;
  min-height: 540px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content { padding-bottom: 60px; }

.hero-eyebrow {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; font-weight: 400;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 58px);
  font-weight: 300; line-height: 1.08;
  color: #F0EDE8; margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.hero-headline em { color: var(--gold-light); font-style: italic; }

.hero-sub {
  font-size: 15px; font-weight: 300;
  line-height: 1.7; color: #94A3B8;
  max-width: 420px; margin-bottom: 40px;
}

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

.hero-image-col { align-self: end; position: relative; }

.hero-img-frame {
  width: 300px; height: 340px;
  background: linear-gradient(180deg, #1A2E45 0%, #0D1B2A 100%);
  margin: 0 auto; overflow: hidden;
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
  position: relative;
}
.hero-img-frame img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.hero-credential {
  position: absolute; bottom: 24px; left: -10px;
  background: var(--gold); padding: 10px 16px;
  font-size: 11px; font-weight: 500;
  color: var(--navy); letter-spacing: 0.5px;
}

.hero-tagline {
  text-align: center; padding: 14px 20px;
  color: #475569; font-size: 10.5px;
  letter-spacing: 3px; text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   CREDENTIAL STRIP
═══════════════════════════════════════════════ */
.credential-strip {
  background: var(--navy-mid);
  padding: 18px 40px;
  display: flex; gap: 32px;
  justify-content: center; flex-wrap: wrap;
  border-top: 1px solid rgba(184,151,42,0.2);
}
.cred-item {
  display: flex; align-items: center; gap: 10px;
  color: #94A3B8; font-size: 11.5px;
  letter-spacing: 0.5px; white-space: nowrap;
}
.cred-dot {
  width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════ */
.services-section { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border);
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background var(--transition);
}
.service-card:hover { background: #F0EDE8; }

.service-icon {
  width: 40px; height: 40px;
  border: 0.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon i { font-size: 18px; color: var(--gold); }

.service-name {
  font-family: var(--font-serif);
  font-size: 19px; font-weight: 500;
  color: var(--navy); margin-bottom: 12px; line-height: 1.3;
}
.service-desc {
  font-size: 13px; font-weight: 300;
  line-height: 1.7; color: var(--slate);
}
.service-arrow {
  font-size: 11.5px; color: var(--gold);
  margin-top: 18px; letter-spacing: 1px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}

/* ═══════════════════════════════════════════════
   ABOUT SPLIT
═══════════════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-image-side {
  background: var(--navy);
  padding: 56px 40px;
  display: flex; flex-direction: column;
  justify-content: space-between; gap: 40px;
}

.about-portrait {
  width: 160px; height: 200px;
  background: var(--navy-mid);
  border-radius: 80px 80px 0 0;
  overflow: hidden; margin: 0 auto 28px;
}
.about-portrait img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.consultant-name {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 300;
  color: #E2D9CC; text-align: center; margin-bottom: 4px;
}
.consultant-title {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  text-align: center;
}

.about-quals { display: flex; flex-direction: column; gap: 10px; }
.qual-badge {
  background: rgba(184,151,42,0.1);
  border: 0.5px solid rgba(184,151,42,0.3);
  padding: 8px 14px; font-size: 12px;
  color: #CBD5E0; letter-spacing: 0.5px;
}

.about-text-side { padding: 64px 48px; background: var(--white); }

.about-quote {
  font-family: var(--font-serif);
  font-size: 21px; font-weight: 300; font-style: italic;
  line-height: 1.55; color: var(--navy);
  border-left: 2px solid var(--gold);
  padding-left: 22px; margin: 32px 0;
}

.stat-row { display: flex; gap: 36px; margin-top: 36px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 38px; font-weight: 300;
  color: var(--gold); display: block; line-height: 1;
}
.stat-lbl {
  font-size: 10.5px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--slate);
  font-weight: 400; margin-top: 4px; display: block;
}

/* ═══════════════════════════════════════════════
   INSIGHTS SECTION (home page preview)
═══════════════════════════════════════════════ */
.insights-section { background: var(--navy); }
.insights-section .section-label { color: var(--gold-light); }
.insights-section h2 { color: #F0EDE8; }
.insights-section .section-body { color: #94A3B8; }
.insights-section .divider { background: var(--gold); }

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 48px;
}

.insight-card {
  background: var(--navy);
  padding: 28px 24px;
  transition: background var(--transition);
}
.insight-card:hover { background: var(--navy-mid); }
.insight-card--featured { grid-column: span 2; padding: 36px 32px; }
.insight-card--featured .insight-title { font-size: 23px; margin-bottom: 16px; }

.insight-tag {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; font-weight: 500; display: block;
}
.insight-title {
  font-family: var(--font-serif);
  font-size: 17px; font-weight: 400;
  color: #E2D9CC; line-height: 1.4; margin-bottom: 14px;
}
.insight-excerpt {
  font-size: 13.5px; font-weight: 300;
  line-height: 1.75; color: #94A3B8; margin-bottom: 18px;
}
.insight-meta { font-size: 11px; color: #64748B; letter-spacing: 0.5px; }

.insights-cta-row {
  display: flex; justify-content: space-between;
  align-items: center; margin-top: 36px;
  flex-wrap: wrap; gap: 16px;
}
.insights-cta-row p {
  font-size: 13px; font-weight: 300;
  color: #64748B; margin: 0;
}

/* Insights archive page */
.insights-archive-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
}
.insight-article {
  background: var(--white); padding: 32px 28px;
  transition: background var(--transition);
}
.insight-article:hover { background: #F5F3EE; }
.insight-article .insight-tag { color: var(--gold); }
.insight-article .insight-title {
  font-family: var(--font-serif);
  font-size: 20px; color: var(--navy);
  line-height: 1.35; margin-bottom: 12px; font-weight: 400;
}

/* Filter bar */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; padding: 20px 0; }
.filter-btn {
  background: transparent; color: #94A3B8;
  border: 0.5px solid #334155;
  padding: 6px 16px; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; font-family: var(--font-sans);
  transition: all var(--transition); cursor: pointer;
}
.filter-btn:hover, .filter-btn.is-active {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════
   LESSONS & LIGHT
═══════════════════════════════════════════════ */
.lessons-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.lessons-categories { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.cat-pill {
  background: var(--light); border: 0.5px solid var(--border);
  padding: 6px 16px; font-size: 11.5px; color: var(--slate);
  cursor: pointer; transition: all var(--transition);
}
.cat-pill:hover { background: var(--navy); color: var(--gold-light); border-color: var(--navy); }

.lessons-quote-block {
  background: var(--navy); padding: 40px;
  border-left: 3px solid var(--gold);
}
.lessons-quote {
  font-family: var(--font-serif);
  font-size: 22px; font-style: italic; font-weight: 300;
  color: #E2D9CC; line-height: 1.5; margin-bottom: 16px;
}
.lessons-attr { font-size: 12px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }

.lessons-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
}
.lessons-card {
  background: var(--white); padding: 28px 24px;
  transition: background var(--transition);
}
.lessons-card:hover { background: #F5F3EE; }
.lessons-card-tag {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 14px; display: block;
}
.lessons-card-title {
  font-family: var(--font-serif);
  font-size: 18px; color: var(--navy); line-height: 1.4; margin-bottom: 10px;
}
.lessons-card-date { font-size: 11px; color: #94A3B8; }

/* ═══════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════ */
.cta-section {
  background: var(--navy);
  padding: 96px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif); font-size: 180px; font-weight: 300;
  color: rgba(255,255,255,0.025);
  white-space: nowrap; pointer-events: none;
  letter-spacing: -4px; user-select: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px); font-weight: 300;
  color: #F0EDE8; margin-bottom: 16px; line-height: 1.15;
}
.cta-sub { font-size: 15px; font-weight: 300; color: #94A3B8; margin-bottom: 40px; }

.cta-contact-info {
  display: flex; gap: 48px; justify-content: center;
  flex-wrap: wrap; margin-top: 56px;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  padding-top: 48px;
}
.contact-detail { text-align: center; }
.contact-detail i { font-size: 20px; color: var(--gold); display: block; margin: 0 auto 10px; }
.contact-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #64748B; margin-bottom: 5px; }
.contact-value { font-size: 14px; color: #CBD5E0; }

/* ═══════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════ */
.contact-hero { background: var(--navy); padding: 80px 40px 64px; }
.contact-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 48px); font-weight: 300;
  color: #F0EDE8; line-height: 1.1; margin-bottom: 20px;
}

.contact-body {
  background: var(--white); padding: 64px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  max-width: 1200px; margin: 0 auto;
}
.contact-form-wrap { display: flex; flex-direction: column; gap: 22px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--slate); font-weight: 400;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 0.5px solid var(--border);
  background: var(--light); font-family: var(--font-sans);
  font-size: 14px; color: var(--navy);
  transition: border-color var(--transition);
  appearance: none; outline: none; border-radius: 0;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); background: var(--white);
}
.form-textarea { height: 110px; resize: vertical; }

.contact-info-block { padding-top: 8px; }
.contact-info-item { margin-bottom: 32px; }
.contact-info-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.contact-info-value { font-size: 15px; color: var(--navy); }
.contact-info-sub { font-size: 13px; font-weight: 300; color: var(--slate); margin-top: 4px; }
.linkedin-block { background: var(--light); border: 0.5px solid var(--border); padding: 24px; margin-top: 8px; }
.linkedin-block-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--slate); margin-bottom: 10px; font-weight: 500; }
.linkedin-block p { font-size: 13px; font-weight: 300; color: var(--slate); line-height: 1.6; margin: 0; }

/* Contact form feedback message */
#hcs-contact-message { border-radius: 0; }

/* ═══════════════════════════════════════════════
   SINGLE POST / ENTRY CONTENT
═══════════════════════════════════════════════ */
.entry-header { background: var(--navy); padding: 80px 40px 64px; }
.entry-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 44px); font-weight: 300;
  color: #F0EDE8; line-height: 1.15; margin-bottom: 16px; max-width: 680px;
}
.entry-meta { font-size: 12px; color: #64748B; letter-spacing: 0.5px; }

.entry-content {
  background: var(--white); padding: 64px 40px;
  max-width: 760px; margin: 0 auto;
}
.entry-content p { font-size: 15.5px; font-weight: 300; line-height: 1.85; color: var(--slate); margin-bottom: 1.6em; }
.entry-content h2 { font-family: var(--font-serif); font-size: 28px; color: var(--navy); margin: 2em 0 0.6em; font-weight: 300; }
.entry-content h3 { font-family: var(--font-serif); font-size: 22px; color: var(--navy); margin: 1.6em 0 0.5em; font-weight: 300; }
.entry-content blockquote {
  font-family: var(--font-serif); font-size: 21px;
  font-style: italic; font-weight: 300; line-height: 1.5;
  color: var(--navy); border-left: 2px solid var(--gold);
  padding-left: 22px; margin: 2em 0;
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════ */
.about-hero { background: var(--navy); }
.full-bio { padding: 64px 40px; background: var(--white); max-width: 820px; margin: 0 auto; }
.full-bio p { font-size: 15.5px; font-weight: 300; line-height: 1.85; color: var(--slate); }
.full-bio h3 { font-family: var(--font-serif); font-size: 26px; color: var(--navy); margin: 2em 0 0.6em; font-weight: 300; }

/* ═══════════════════════════════════════════════
   SERVICES FULL PAGE
═══════════════════════════════════════════════ */
.service-detail { padding: 72px 40px; border-bottom: 0.5px solid var(--border); }
.service-detail-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.service-detail-title {
  font-family: var(--font-serif); font-size: 30px; color: var(--navy);
  font-weight: 300; line-height: 1.2; margin-bottom: 20px;
}
.service-deliverable-item {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 13.5px; color: var(--slate); font-weight: 300; line-height: 1.5; align-items: flex-start;
}
.service-deliverable-item::before {
  content: ''; width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0; margin-top: 7px;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
  background: #07111C;
  padding: 32px 40px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
/* Hide Divi's footer */
#footer-bottom, #main-footer { display: none !important; }

.footer-brand {
  font-family: var(--font-serif); font-size: 13px;
  font-weight: 300; color: #475569;
  letter-spacing: 2px; text-transform: uppercase;
}
.footer-note { font-size: 11px; color: #2D3748; letter-spacing: 0.5px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 11px; color: #475569; letter-spacing: 0.5px; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   DIVI MODULE OVERRIDES (for any Divi Builder pages)
═══════════════════════════════════════════════ */
.et_pb_button,
.et_pb_more_button {
  background: var(--gold) !important; color: var(--navy) !important;
  border: none !important; border-radius: 0 !important;
  font-family: var(--font-sans) !important;
  font-size: 12px !important; font-weight: 500 !important;
  letter-spacing: 1.5px !important; text-transform: uppercase !important;
  padding: 13px 28px !important; transition: background 0.2s ease !important;
}
.et_pb_button:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

.et_pb_contact_field input,
.et_pb_contact_field select,
.et_pb_contact_field textarea {
  background: var(--light) !important; border: 0.5px solid var(--border) !important;
  border-radius: 0 !important; font-family: var(--font-sans) !important;
}
.et_pb_contact_field input:focus,
.et_pb_contact_field textarea:focus { border-color: var(--gold) !important; }

/* ═══════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════ */
.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; }
.text-gold { color: var(--gold); }
.bg-navy { background: var(--navy); }

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 60px; min-height: auto; }
  .hero-image-col { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-image-side { padding: 48px 32px; }
  .about-text-side { padding: 48px 32px; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .insight-card--featured { grid-column: span 2; }
  .lessons-grid { grid-template-columns: 1fr; }
  .lessons-cards { grid-template-columns: 1fr 1fr; }
  .contact-body { grid-template-columns: 1fr; }
  .insights-archive-grid { grid-template-columns: 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════ */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .nav-inner { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.is-open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--navy); padding: 24px 20px 32px;
    border-bottom: 1px solid rgba(184,151,42,0.2);
    z-index: 9998; gap: 0;
  }
  .nav-links.is-open li { border-bottom: 0.5px solid rgba(255,255,255,0.05); }
  .nav-links.is-open a { display: block; padding: 14px 0; }
  .hero { padding: 48px 20px 40px; }
  .credential-strip { padding: 16px 20px; gap: 16px; flex-direction: column; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card--featured { grid-column: span 1; }
  .lessons-cards { grid-template-columns: 1fr; }
  .cta-section { padding: 64px 20px; }
  .cta-contact-info { flex-direction: column; gap: 28px; }
  .site-footer { flex-direction: column; align-items: flex-start; padding: 28px 20px; }
  .contact-body { padding: 40px 20px; gap: 40px; }
  .entry-content { padding: 48px 20px; }
}
