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

:root {
  --navy: #0d1b2a;
  --navy-mid: #162536;
  --navy-light: #1f3448;
  --navy-hover: #243d57;
  --amber: #d4922a;
  --amber-light: #f0b855;
  --amber-pale: rgba(212, 146, 42, 0.12);
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --white: #ffffff;
  --text-body: #4a5568;
  --text-muted: #6b7a8a;
  --border-dark: rgba(245, 240, 232, 0.09);
  --muted-dark: rgba(245, 240, 232, 0.55);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--navy);
  color: var(--cream);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* ══ NAV ══ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 88px;
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
  transition: all 0.3s;
}

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

.nav-logo-svg-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

/* ── ANIMATED KM LOGO ── */
.km-logo-svg {
  width: 52px;
  height: 52px;
  overflow: visible;
}

/* Outer ring spins continuously */
.km-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: kmSpin 20s linear infinite;
}

/* Each stroke fades+slides in */
.km-stroke {
  opacity: 0;
  animation: kmFadeIn 0.5s ease forwards;
}

.km-k1 {
  animation-delay: 0.15s;
}

.km-k2 {
  animation-delay: 0.35s;
}

.km-k3 {
  animation-delay: 0.55s;
}

.km-m1 {
  animation-delay: 0.75s;
}

.km-m2 {
  animation-delay: 0.95s;
}

.km-m3 {
  animation-delay: 1.1s;
}

.km-m4 {
  animation-delay: 1.25s;
}

/* Node dots pop in */
.km-node {
  opacity: 0;
  animation: kmNode 0.35s ease forwards;
}

.km-node1 {
  animation-delay: 0.65s;
}

.km-node2 {
  animation-delay: 1.4s;
}

/* Amber node pulses */
.km-node-pulse {
  animation: kmPulse 2.8s ease-in-out infinite 2s;
}

/* Whole SVG breathes an amber glow */
.km-logo-svg {
  animation: kmGlow 4s ease-in-out infinite 2s;
}

@keyframes kmFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kmNode {
  from {
    opacity: 0;
    transform: scale(0.3);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes kmSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes kmPulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.45;
  }
}

@keyframes kmGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 2px rgba(212, 146, 42, 0.3));
  }

  50% {
    filter: drop-shadow(0 0 7px rgba(212, 146, 42, 0.75));
  }
}

.nav-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}

.nav-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  line-height: 1;
}

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

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--amber-light);
}

.nav-cta {
  background: var(--amber) !important;
  color: var(--navy) !important;
  padding: 12px 26px;
  border-radius: 4px;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  transition: all 0.2s !important;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-menu a {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--amber);
}

.mobile-menu.open {
  display: flex;
}

/* ══ HERO — navy bg, cream text ══ */
.hero {
  min-height: 100vh;
  padding: 120px 60px 80px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero-watermark {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(80px, 13vw, 160px);
  color: var(--cream);
  opacity: 0.03;
  letter-spacing: -3px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  text-align: center;
}

/* subtle grid texture */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 240, 232, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 232, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-label::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--amber);
}

.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--cream);
  margin-bottom: 28px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--amber-light);
}

.hero-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted-dark);
  max-width: 440px;
  margin-bottom: 40px;
}

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

.btn-amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-amber:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
}

.btn-ghost-light {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--muted-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.25);
  padding-bottom: 2px;
  transition: all 0.2s;
}

.btn-ghost-light:hover {
  color: var(--amber-light);
  border-color: var(--amber);
}

.hero-mini-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
}

.mini-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
}

.mini-stat-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-top: 3px;
}

.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-deco-block {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 70%;
  height: 85%;
  background: var(--amber);
  opacity: 0.1;
  border-radius: 12px;
  z-index: 0;
}

.hero-deco-block2 {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 50%;
  height: 50%;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: 28px;
  left: -20px;
  z-index: 2;
  background: var(--amber);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.hero-badge-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.75;
  line-height: 1.5;
}

/* ══ STATS BAR — cream bg, navy text ══ */
.stats-bar {
  background: var(--cream);
  padding: 0 60px;
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--cream-dark);
}

.stat-item {
  flex: 1;
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--cream-dark);
  transition: background 0.2s;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(13, 27, 42, 0.03);
}

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══ SECTION SHARED ══ */
.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.section-divider {
  width: 40px;
  height: 2px;
  background: var(--amber);
  margin: 16px 0 28px;
}

/* ══ ABOUT — cream bg ══ */
.problem {
  background: var(--cream);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem .section-label {
  color: var(--amber);
}

.problem-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}

.problem-h2 span {
  color: var(--amber);
  font-style: italic;
}

.problem-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 32px;
}

.pain-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.pain-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.6;
}

.pain-check {
  width: 22px;
  height: 22px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.pain-check svg {
  width: 10px;
  height: 10px;
}

.problem-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Headshot — sharp, professional, zoomed out */
.problem-photo-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--cream-dark);
  flex: 0 0 auto;
  box-shadow: 0 12px 40px rgba(13, 27, 42, 0.12);
  width: 220px;
  margin: 0 auto;
}

.problem-photo {
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}

.pain-card {
  background: var(--white);
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--cream-dark);
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.pain-card:hover {
  border-color: var(--amber);
  transform: translateX(4px);
}

.pain-card-icon {
  width: 34px;
  height: 34px;
  background: rgba(212, 146, 42, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pain-card-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 3px;
}

.pain-card-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ══ SERVICES — navy bg ══ */
.services {
  background: var(--navy);
  padding: 100px 60px;
}

.services .section-label {
  color: var(--amber);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}

.services-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
}

.services-h2 span {
  color: var(--amber-light);
  font-style: italic;
}

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

.service-card {
  background: var(--navy-mid);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  transition: all 0.3s;
  cursor: default;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  background: var(--navy-light);
  transform: translateY(-4px);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-ghost-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--cream);
  opacity: 0.04;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -3px;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(212, 146, 42, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted-dark);
  margin-bottom: 24px;
}

.service-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 10px;
}

/* ══ EDUCATION BLOCK ══ */
.edu-block {
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--cream-dark);
  border-top: 2px solid var(--amber);
}

.edu-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.edu-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.edu-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cream-dark);
}

.edu-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.edu-icon {
  width: 32px;
  height: 32px;
  background: rgba(212, 146, 42, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.edu-degree {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 2px;
}

.edu-school {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.3;
}

.edu-uni {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  margin-top: 1px;
}

/* ══ CREDIBILITY — cream bg ══ */
.credibility {
  background: var(--cream);
  padding: 72px 60px;
  text-align: center;
}

.cred-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 40px;
}

.cred-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cred-item {
  padding: 20px 44px;
  border-right: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  transition: all 0.2s;
}

.cred-item:last-child {
  border-right: none;
}

.cred-logos:hover .cred-item {
  opacity: 0.35;
}

.cred-logos:hover .cred-item:hover {
  opacity: 1;
}

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

.cred-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.cred-role {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ══ SPEAKING — navy bg ══ */
.speaking {
  background: var(--navy);
  padding: 100px 60px;
}

.speaking .section-label {
  color: var(--amber);
}

.speaking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.speaking-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.speaking-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.speaking-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.65) 0%,
    transparent 55%
  );
}

.speaking-img-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.speaking-img-caption p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.7);
  font-style: italic;
}

.speaking-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 8px;
}

.speaking-h2 em {
  font-style: italic;
  color: var(--amber-light);
}

.speaking-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-dark);
  line-height: 1.8;
  margin-bottom: 8px;
}

.speaking-topics {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 28px 0;
}

.topic-item {
  padding: 22px 24px;
  background: var(--navy-mid);
  border: 1px solid var(--border-dark);
  border-left: 3px solid transparent;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.2s;
}

.topic-item:hover {
  border-left-color: var(--amber);
  background: var(--navy-light);
}

.topic-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}

.topic-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.5;
}

/* ══ TESTIMONIALS — cream bg ══ */
.testimonials {
  background: var(--cream);
  padding: 100px 60px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials .section-label {
  color: var(--amber);
}

.testimonials-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.testimonials-h2 span {
  color: var(--amber);
  font-style: italic;
}

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

.testi-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  border-left: 3px solid var(--amber);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  border-top: 1px solid var(--cream-dark);
  border-right: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(13, 27, 42, 0.1);
}

.testi-quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.25;
  line-height: 0.8;
  margin-bottom: 12px;
  display: block;
}

.testi-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testi-attr {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.testi-attr span {
  display: block;
  color: var(--amber);
  margin-bottom: 2px;
  font-size: 11px;
}

/* ══ BLOG — navy bg ══ */
.blog {
  background: var(--navy);
  padding: 100px 60px;
}

.blog .section-label {
  color: var(--amber);
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}

.blog-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}

.blog-h2 span {
  color: var(--amber-light);
  font-style: italic;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

.blog-card-main {
  background: var(--navy-mid);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  transition: all 0.3s;
}

.blog-card-main:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 146, 42, 0.3);
}

.blog-card-main-img {
  width: 100%;
  height: 240px;
  background: linear-gradient(
    135deg,
    var(--navy-light) 0%,
    rgba(212, 146, 42, 0.2) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-eyebrow-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: rgba(245, 240, 232, 0.85);
  text-align: center;
  line-height: 1.3;
  font-style: italic;
  padding: 32px;
}

.blog-card-body {
  padding: 28px 28px 32px;
}

.blog-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(212, 146, 42, 0.1);
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}

.blog-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card-excerpt {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted-dark);
  line-height: 1.75;
  margin-bottom: 20px;
}

.blog-read-more {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.blog-read-more:hover {
  gap: 10px;
}

.blog-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-card-sm {
  background: var(--navy-mid);
  border-radius: 10px;
  padding: 24px;
  border: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s;
  text-decoration: none;
}

.blog-card-sm:hover {
  border-color: rgba(212, 146, 42, 0.3);
  transform: translateY(-3px);
}

.blog-card-sm-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
}

.blog-card-sm-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
}

.blog-card-sm-date {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted-dark);
}

/* ══ LINKEDIN FOLLOW BANNER — amber gradient ══ */
.follow-banner {
  background: linear-gradient(135deg, var(--amber) 0%, #b87820 100%);
  padding: 72px 60px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.follow-banner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.follow-banner::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.follow-photo-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 4px solid rgba(255, 255, 255, 0.35);
  position: relative;
  z-index: 1;
}

.follow-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

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

.follow-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.follow-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(13, 27, 42, 0.75);
  margin-bottom: 28px;
  line-height: 1.7;
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ══ CONTACT — cream bg ══ */
.contact {
  background: var(--cream);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-label {
  color: var(--amber);
}

.contact-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-h2 em {
  font-style: italic;
  color: var(--amber);
}

.contact-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 40px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  text-decoration: none;
  transition: all 0.2s;
  padding: 4px 0;
}

.contact-link-email,
.contact-link-linkedin {
  color: #1a6bb5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-link-email:hover,
.contact-link-linkedin:hover {
  color: #0d4a8a;
  text-decoration: underline;
}

.contact-link-location {
  color: var(--text-body);
}

.contact-link-location:hover {
  color: var(--amber);
}

.contact-link-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.contact-location-icon {
  display: flex;
  align-items: center;
  color: var(--amber);
  flex-shrink: 0;
}

.contact-info-box {
  margin-top: 32px;
  padding: 24px;
  background: rgba(13, 27, 42, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--amber);
}

.contact-info-box p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.7;
}

/* Form — on cream bg */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  color: var(--navy);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 14px 18px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--amber);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-group select {
  color: var(--navy);
  background: var(--white);
}

.btn-submit {
  background: var(--navy);
  color: var(--cream);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.2s;
}

.btn-submit:hover {
  background: var(--amber);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ══ FOOTER — navy bg ══ */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-dark);
  padding: 56px 60px 36px;
  position: relative;
  overflow: hidden;
}

.footer-watermark {
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(60px, 10vw, 120px);
  color: var(--cream);
  opacity: 0.03;
  letter-spacing: -2px;
  pointer-events: none;
  white-space: nowrap;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
}

.footer-tagline {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted-dark);
  line-height: 1.6;
  max-width: 220px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social:hover {
  border-color: var(--amber);
  background: rgba(212, 146, 42, 0.12);
}

.footer-social svg {
  width: 14px;
  height: 14px;
  fill: var(--muted-dark);
}

.footer-social:hover svg {
  fill: var(--amber);
}

.footer-nav-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

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

.footer-nav-links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-links a:hover {
  color: var(--amber-light);
}

.footer-newsletter-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.footer-newsletter-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted-dark);
  margin-bottom: 18px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  background: var(--navy);
  border: 1px solid var(--border-dark);
  color: var(--cream);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding: 12px 16px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder {
  color: rgba(245, 240, 232, 0.2);
}

.newsletter-input:focus {
  border-color: var(--amber);
}

.newsletter-btn {
  background: var(--amber);
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.newsletter-btn:hover {
  background: var(--amber-light);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.22);
  letter-spacing: 0.5px;
}

.footer-policy a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.22);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-policy a:hover {
  color: var(--muted-dark);
}

/* ══ REVEAL ANIMATIONS ══ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* Hero load animations */
.hero-anim {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-anim-1 {
  animation-delay: 0.1s;
}

.hero-anim-2 {
  animation-delay: 0.3s;
}

.hero-anim-3 {
  animation-delay: 0.5s;
}

.hero-anim-4 {
  animation-delay: 0.7s;
}

.hero-anim-5 {
  animation-delay: 0.9s;
}

.hero-anim-r {
  animation-delay: 0.4s;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  nav {
    padding: 0 32px;
  }

  .hero,
  .problem,
  .services,
  .speaking,
  .testimonials,
  .blog,
  .contact {
    padding: 80px 32px;
  }

  .follow-banner {
    padding: 56px 32px;
  }

  footer {
    padding: 48px 32px 28px;
  }

  .stats-bar {
    padding: 0 32px;
  }

  .stat-item {
    padding: 36px 32px;
  }

  .credibility {
    padding: 56px 32px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 56px;
    gap: 40px;
  }

  .hero-right {
    order: -1;
  }

  .hero-img {
    height: 360px;
  }

  .hero-badge {
    left: 12px;
    bottom: 16px;
  }

  .stats-bar {
    padding: 0 24px;
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 50%;
    padding: 28px 24px;
    border-bottom: 1px solid var(--cream-dark);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--cream-dark);
  }

  .stat-item:nth-child(even) {
    border-right: none;
  }

  .problem {
    grid-template-columns: 1fr;
    padding: 64px 24px;
    gap: 40px;
  }

  .services {
    padding: 64px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .speaking {
    padding: 64px 24px;
  }

  .speaking-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials {
    padding: 64px 24px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog {
    padding: 64px 24px;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .follow-banner {
    grid-template-columns: 1fr;
    padding: 56px 24px;
    gap: 28px;
    text-align: center;
  }

  .follow-photo-wrap {
    margin: 0 auto;
  }

  .contact {
    grid-template-columns: 1fr;
    padding: 64px 24px;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 48px 24px 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero-mini-stats {
    gap: 16px;
    flex-wrap: wrap;
  }

  .cred-logos {
    flex-direction: column;
  }

  .cred-item {
    border-right: none;
    border-bottom: 1px solid var(--cream-dark);
    width: 100%;
    padding: 16px;
  }

  .cred-item:last-child {
    border-bottom: none;
  }
}
