
/* ===================================
   DR. JEFFREY SCOTT STANTON
   Design System — Premium Professional
   =================================== */

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

:root {
  --navy:      #1C2B3A;
  --slate:     #2B4163;
  --steel:     #3D5A80;
  --gold:      #C9A84C;
  --gold-dark: #a8892e;
  --offwhite:  #F4F6F9;
  --soft:      #E8ECF2;
  --white:     #ffffff;
  --text-dark: #1C2B3A;
  --text-mid:  #4A5568;
  --text-light:#8A9BB0;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--offwhite);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0.05em; text-transform: uppercase; }
p { margin-bottom: 1.2rem; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* === LAYOUT === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 100px 0; }
.section-pad-lg { padding: 130px 0; }

/* === COLOR SECTIONS === */
.bg-navy { background: var(--navy); color: var(--white); }
.bg-slate { background: var(--slate); color: var(--white); }
.bg-light { background: var(--offwhite); color: var(--text-dark); }
.bg-white { background: var(--white); color: var(--text-dark); }

/* Dark section texture overlay */
.bg-navy, .bg-slate {
  position: relative;
}
.bg-navy::before, .bg-slate::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.bg-navy > *, .bg-slate > * { position: relative; z-index: 1; }

/* === NAVIGATION === */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(28, 43, 58, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: all 0.3s ease;
}
.site-nav .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo .name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-logo .title {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a, .nav-links > li > button {
  display: block;
  padding: 0.5rem 0.85rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover, .nav-links > li > button:hover { color: var(--white); }
.nav-links > li > a.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--navy);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem;
  font-weight: 400;
  transition: all 0.2s;
}
.nav-dropdown a:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
.dropdown-arrow { font-size: 0.6rem; margin-left: 4px; opacity: 0.6; }

/* CTA Button in nav */
.btn-nav-cta {
  display: inline-block;
  padding: 0.55rem 1.3rem;
  background: var(--gold);
  color: var(--navy) !important;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
  margin-left: 0.75rem;
}
.btn-nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }

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

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.2rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}
.btn-secondary {
  display: inline-block;
  padding: 0.95rem 2rem;
  background: transparent;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 3px;
  transition: all 0.25s ease;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.btn-outline-dark {
  display: inline-block;
  padding: 0.95rem 2rem;
  background: transparent;
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--navy);
  border-radius: 3px;
  transition: all 0.25s ease;
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--navy);
  color: var(--white);
}
.hero-content { max-width: 780px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  max-width: 620px;
  line-height: 1.65;
}
.hero-micro {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === PROOF STRIP === */
.proof-strip {
  background: #111d28;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 1.5rem 0;
}
.proof-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.proof-item .stat {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

/* === SECTION LABELS === */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-label-dark {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
  display: block;
}

/* === GOLD ACCENT LINE === */
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0 2rem;
}
.gold-rule.centered { margin: 1.25rem auto 2rem; }

/* === SERVICE CARDS === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  margin-top: 4rem;
}
.service-card {
  background: var(--white);
  border-top: 3px solid transparent;
  padding: 2.5rem;
  transition: all 0.3s;
  position: relative;
}
.service-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(28, 43, 58, 0.1);
}
.service-card .card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}
.service-card h3 { margin-bottom: 1rem; font-size: 1.35rem; }
.service-card p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 1.5rem; }
.card-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.card-link:hover { gap: 0.7rem; color: var(--gold-dark); }

/* === TESTIMONIALS === */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-left: 3px solid var(--gold);
  position: relative;
}
.testimonial-card .quote-mark {
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}
.testimonial-card blockquote {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.testimonial-card .testimonial-body {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}
.testimonial-card .attribution {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

/* === BULLETS (custom) === */
.exec-list {
  list-style: none;
  margin: 1.5rem 0;
}
.exec-list li {
  padding: 0.7rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(28,43,58,0.08);
}
.exec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.exec-list.light li { border-bottom-color: rgba(255,255,255,0.1); }
.exec-list.light li::before { background: var(--gold); }

/* === STAT BLOCKS === */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.stat-block { text-align: center; }
.stat-block .number {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.stat-block .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* === CONTRAST CALLOUT === */
.contrast-block {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  background: rgba(201, 168, 76, 0.06);
  margin: 2rem 0;
}
.contrast-block p { margin: 0; font-style: italic; }

/* === FOOTER === */
.site-footer {
  background: #111d28;
  color: rgba(255,255,255,0.6);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.footer-brand .tagline {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-top: 72px;
  padding-bottom: 5rem;
  background: var(--navy);
  color: var(--white);
}
.page-hero.shorter { min-height: 40vh; }

/* === PROCESS / STEPS === */
.process-steps {
  counter-reset: steps;
  margin-top: 3rem;
}
.process-step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(28,43,58,0.1);
  align-items: flex-start;
}
.process-step:last-child { border-bottom: none; }
.step-number {
  min-width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: 0.5rem; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.step-content p { margin: 0; color: var(--text-mid); font-size: 0.95rem; }

/* === FORM === */
.contact-form {
  background: var(--white);
  padding: 3rem;
  border-top: 3px solid var(--gold);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--soft);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--offwhite);
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { height: 140px; resize: vertical; }
.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1rem;
  text-align: center;
}

/* === BLOG === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--white);
  border-top: 2px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
}
.blog-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(28,43,58,0.1);
}
.blog-card-img {
  height: 200px;
  background: var(--slate);
  overflow: hidden;
  position: relative;
}
.blog-card-img .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--slate) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 3rem;
}
.blog-card-body { padding: 1.75rem; }
.category-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201, 168, 76, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  font-family: var(--font-head);
}
.blog-card p { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 1rem; }
.read-more {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.blog-featured {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 3px solid var(--gold);
  margin-bottom: 3rem;
}
.blog-featured .featured-img {
  min-height: 380px;
  background: var(--slate);
}
.blog-featured .featured-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured h2 { font-size: 1.7rem; margin-bottom: 1rem; }
.blog-featured p { color: var(--text-mid); margin-bottom: 1.5rem; }

/* === PODCAST === */
.episode-card {
  background: var(--white);
  padding: 2rem;
  border-left: 3px solid transparent;
  margin-bottom: 1rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s;
}
.episode-card:hover { border-left-color: var(--gold); }
.episode-thumb {
  width: 80px;
  height: 80px;
  background: var(--slate);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 1.5rem;
}
.episode-info { flex: 1; }
.episode-info .series-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
}
.episode-info h4 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--text-dark); }
.episode-info p { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 0.75rem; }
.platform-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--soft);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--text-mid);
  font-weight: 600;
  transition: all 0.2s;
}
.platform-btn:hover { border-color: var(--navy); color: var(--navy); }

/* === FILTER BAR === */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-pill {
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--soft);
  color: var(--text-mid);
  background: var(--white);
  transition: all 0.2s;
}
.filter-pill.active, .filter-pill:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--white);
}

/* === ABOUT === */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-block {
  position: relative;
}
.about-img-placeholder {
  background: var(--slate);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-head);
}
.about-img-caption {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.3;
}

/* === SPEAKING PAGE === */
.keynote-item {
  padding: 3rem 0;
  border-bottom: 1px solid var(--soft);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.keynote-item:last-child { border-bottom: none; }
.keynote-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.keynote-number {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  color: var(--soft);
  line-height: 1;
}

/* === UTILITY === */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
.opacity-60 { opacity: 0.6; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .blog-featured { grid-template-columns: 1fr; }
  .keynote-item { grid-template-columns: 1fr; gap: 1rem; }
  .cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    padding: 2rem;
    gap: 0.25rem;
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open > li > a,
  .nav-links.open > li > button { font-size: 1.1rem; padding: 0.75rem 0; }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: none; padding: 0 0 0 1.5rem; }
  .btn-nav-cta { margin: 1rem 0 0; display: block; text-align: center; }
  .section-pad { padding: 70px 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .process-step { flex-direction: column; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .proof-strip .container { flex-direction: column; align-items: flex-start; }
}
