:root {
  --navy: #1B2A4A;
  --navy-deep: #0F1B33;
  --navy-light: #2A3F6B;
  --slate: #3D4F6F;
  --gold: #C4963C;
  --gold-light: #D4AD5C;
  --gold-pale: #F5ECD7;
  --gold-glow: rgba(196,150,60,0.12);
  --warm-white: #FAF8F4;
  --warm-gray: #F2EFE9;
  --text-primary: #1B2A4A;
  --text-secondary: #5A6A82;
  --text-light: #8A96A8;
  --border: rgba(27,42,74,0.1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--warm-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ========== GRAIN OVERLAY ========== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.animate-fade {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.25s; }
.d3 { animation-delay: 0.4s; }
.d4 { animation-delay: 0.55s; }
.d5 { animation-delay: 0.7s; }
.d6 { animation-delay: 0.85s; }

/* ========== NAV ========== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 clamp(24px, 5vw, 80px);
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,248,244,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(250,248,244,0.96);
  box-shadow: 0 1px 24px rgba(27,42,74,0.06);
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--navy);
}
.nav-mark {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.nav-brand-text {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 600;
  letter-spacing: -0.3px;
}
.nav-brand-text span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13.5px; font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: 9px 22px;
  background: var(--navy);
  color: var(--gold-pale) !important;
  border-radius: 4px;
  font-size: 13px !important;
  letter-spacing: 0.6px !important;
  transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--navy-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27,42,74,0.2);
}

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); margin: 5px 0;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) {
  .nav-links.show {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(250,248,244,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 20px;
    box-shadow: 0 8px 32px rgba(27,42,74,0.08);
  }
  .nav-links.show li { width: 100%; }
  .nav-links.show a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.show .nav-cta {
    margin-top: 12px;
    display: inline-block;
    padding: 10px 22px !important;
  }
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px clamp(24px, 5vw, 80px) 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.hero-content {
  max-width: 760px;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1.5px;
  background: var(--gold);
  animation: lineGrow 0.8s cubic-bezier(0.22,1,0.36,1) 0.3s both;
  transform-origin: left;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-sub strong {
  color: var(--text-primary);
  font-weight: 500;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.btn-linkedin {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 24px;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.3s;
}
.btn-linkedin:hover { color: var(--gold); }
.btn-linkedin::before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 0 1-2.063-2.065 2.064 2.064 0 1 1 2.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 0 1-2.063-2.065 2.064 2.064 0 1 1 2.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px;
  background: var(--navy);
  color: var(--gold-pale);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  border: none; border-radius: 4px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(27,42,74,0.18);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.35s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex; gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 600;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1;
}
.hero-stat-label {
  font-size: 12.5px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* Side accent */
.hero-accent {
  position: absolute;
  right: clamp(40px, 8vw, 120px);
  top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0.12;
}
.hero-accent span {
  display: block;
  width: 3px;
  background: var(--navy);
  border-radius: 2px;
}

/* ========== SECTION COMMON ========== */
section {
  padding: 100px clamp(24px, 5vw, 80px);
  position: relative;
}
.section-eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  font-weight: 300;
}

/* ========== ABOUT ========== */
#about {
  background: var(--warm-gray);
}
.about-intro {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
}
.about-photo {
  flex-shrink: 0;
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 32px rgba(27,42,74,0.12);
  background: var(--warm-white);
  display: flex; align-items: center; justify-content: center;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 48px; font-weight: 500;
  letter-spacing: -1px;
}
.about-intro-name {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
}
.about-intro-title {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.about-intro-creds {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.about-text p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  float: left;
  line-height: 1;
  margin-right: 8px;
  margin-top: 4px;
  color: var(--navy);
}
.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cred-card {
  padding: 24px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.4s;
}
.cred-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px var(--gold-glow);
  transform: translateY(-2px);
}
.cred-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.cred-value {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}
.cred-detail {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

/* ========== SERVICES ========== */
#services {
  background: var(--warm-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  padding: 36px 32px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.45s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.service-card:hover {
  border-color: rgba(196,150,60,0.25);
  box-shadow: 0 12px 48px rgba(27,42,74,0.06);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 20px;
}
.service-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.service-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.service-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  background: var(--warm-gray);
  color: var(--text-secondary);
  border-radius: 3px;
}
.service-ideal {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-light);
}
.service-ideal strong {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1px;
}

/* ========== PROCESS ========== */
#process {
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
}
#process .section-eyebrow { color: var(--gold-light); }
#process .section-eyebrow::before { background: var(--gold-light); }
#process .section-title { color: #fff; }
#process .section-desc { color: rgba(255,255,255,0.8); }

.process-timeline {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.process-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  transition: all 0.4s;
}
.process-step:hover .process-dot {
  background: rgba(196,150,60,0.1);
  box-shadow: 0 0 32px rgba(196,150,60,0.15);
}
.process-dot-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
}
.process-label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.process-detail {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 200px;
  margin: 0 auto;
}

/* ========== WHY / DIFFERENTIATORS ========== */
#why {
  background: var(--warm-gray);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.why-item {
  position: relative;
  padding-left: 20px;
}
.why-item::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 3px; height: 40px;
  background: var(--gold);
  border-radius: 2px;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-item p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ========== TESTIMONIALS ========== */
#testimonials {
  background: var(--warm-white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  padding: 36px 32px;
  background: var(--warm-gray);
  border: 1px solid var(--border);
  border-radius: 6px;
  position: relative;
  transition: all 0.4s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(27,42,74,0.07);
  transform: translateY(-3px);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--gold);
  opacity: 0.4;
  line-height: 0.8;
  margin-bottom: 16px;
  display: block;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.testimonial-attribution {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.testimonial-role {
  font-size: 12.5px;
  color: var(--text-light);
  margin-top: 3px;
}

/* ========== PUBLICATIONS ========== */
#publications {
  background: var(--warm-gray);
}
.pub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}
.pub-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pub-col-title::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--gold);
}
.pub-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.pub-item:first-child { padding-top: 0; }
.pub-item:last-child { border-bottom: none; }
.pub-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 6px;
}
.pub-meta {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}
.pub-journal {
  font-style: italic;
  color: var(--text-secondary);
}

/* ========== ENGAGEMENT MODELS ========== */
#models {
  background: var(--warm-white);
}
.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.model-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.4s;
  position: relative;
}
.model-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(196,150,60,0.03) 0%, var(--warm-white) 100%);
}
.model-badge {
  position: absolute;
  top: -11px; right: 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 3px;
}
.model-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.model-sub {
  font-size: 13.5px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.model-features {
  list-style: none;
  margin-bottom: 24px;
}
.model-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: baseline; gap: 8px;
}
.model-features li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}
.model-ideal {
  font-size: 12.5px;
  color: var(--text-light);
  font-style: italic;
}

/* ========== CTA / CONTACT ========== */
#contact {
  background: var(--navy-deep);
  text-align: center;
  padding: 100px clamp(24px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(196,150,60,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.contact-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
#contact .section-eyebrow {
  justify-content: center;
  color: var(--gold-light);
}
#contact .section-eyebrow::before { background: var(--gold-light); }
#contact .section-title {
  color: #fff;
  margin-bottom: 20px;
}
#contact .section-desc {
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin: 0 auto 40px;
}
.contact-email {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 32px;
  position: relative;
  transition: all 0.3s;
}
.contact-email::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
  transition: opacity 0.3s;
}
.contact-email:hover::after { opacity: 1; }
.contact-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}
.contact-detail {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
}

/* ========== FOOTER ========== */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px clamp(24px, 5vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
}
footer a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover { color: var(--gold); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .models-grid { grid-template-columns: 1fr 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-timeline::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .pub-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .services-grid, .why-grid, .models-grid, .process-timeline { grid-template-columns: 1fr; }
  .about-credentials { grid-template-columns: 1fr; }
  .about-intro { flex-direction: column; text-align: center; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-stats > div { display: flex; align-items: baseline; gap: 12px; }
  .hero-stat-label { margin-top: 0; }
  .hero-accent { display: none; }
  .contact-details { flex-direction: column; gap: 12px; }
  .pub-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}