/* =====================================================
   JTransue Consultants LLC — Stylesheet
   ===================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1a3a6b;
  --navy-mid:    #22518a;
  --navy-light:  #2e6aad;
  --gold:        #c8960e;
  --gold-light:  #ddb030;
  --white:       #ffffff;
  --off-white:   #f8f9fa;
  --gray-100:    #e9ecef;
  --gray-200:    #ced4da;
  --gray-500:    #6c757d;
  --gray-700:    #343a40;
  --text:        #0f1e3d;

  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;

  --space-xs:    0.5rem;
  --space-sm:    1rem;
  --space-md:    1.5rem;
  --space-lg:    2.5rem;
  --space-xl:    4rem;
  --space-2xl:   6rem;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.18);

  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section { padding: var(--space-2xl) 0; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.section-intro {
  max-width: 620px;
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-top: var(--space-sm);
}

.section-header { text-align: left; }
.section-header.centered,
.section-header .centered { text-align: center; }

.gold-divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: var(--space-sm) 0 var(--space-md);
}
.gold-divider.centered { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,149,42,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-full { width: 100%; text-align: center; }

/* ---- Reveal Animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 30, 61, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background var(--transition), box-shadow var(--transition),
              backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: rgba(26, 58, 107, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  user-select: none;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  background: transparent;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav-link {
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { background: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, #122d58 60%, #0f2248 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-pattern {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  transition-delay: 0.05s;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  transition-delay: 0.1s;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  font-weight: 300;
  transition-delay: 0.15s;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  transition-delay: 0.2s;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* =====================================================
   STATS BAND
   ===================================================== */
.stats-band {
  background: var(--navy);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(201,149,42,0.2);
  border-bottom: 1px solid rgba(201,149,42,0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.stat-item {
  text-align: center;
  padding: var(--space-sm);
  border-right: 1px solid rgba(255,255,255,0.08);
  transition-delay: calc(var(--i, 0) * 0.08s);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* =====================================================
   ABOUT
   ===================================================== */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: start;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}

.about-body {
  color: var(--gray-500);
  margin-bottom: var(--space-sm);
}

.about-locations {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  flex-wrap: wrap;
}

.location-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--gold);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.location-icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.location-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-left: 0.25rem;
}

/* Portrait */
.about-visual { display: flex; flex-direction: column; gap: var(--space-md); }

.portrait-frame {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.portrait-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.portrait-caption {
  padding: 1rem 1.25rem;
  background: var(--navy);
  display: flex;
  flex-direction: column;
}
.portrait-caption strong {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-head);
}
.portrait-caption span {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 2px;
}

.about-accent-box {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-md);
}
.about-accent-box blockquote {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.about-accent-box cite {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-style: normal;
}

/* =====================================================
   SERVICES
   ===================================================== */
.services { background: var(--white); }

.section-header { margin-bottom: var(--space-xl); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.service-learn-more {
  margin-top: auto;
  padding-top: var(--space-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.service-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* =====================================================
   HOW WE WORK (PROCESS)
   ===================================================== */
.process { background: var(--off-white); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: var(--space-xl);
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.process-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.process-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(200,150,14,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.process-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.process-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.process-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
}

.process-connector {
  display: flex;
  align-items: center;
  padding: 0 var(--space-xs);
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  margin-top: 4rem;
  width: 56px;
}
.process-connector svg { width: 100%; }

@media (max-width: 900px) {
  .process-steps { flex-direction: column; gap: var(--space-sm); }
  .process-connector { display: none; }
  .process-step { width: 100%; }
}

/* =====================================================
   WHY US
   ===================================================== */
.why { background: var(--navy); }

.why .section-eyebrow { color: var(--gold); }
.why .section-title { color: var(--white); }
.why .gold-divider.centered { margin-bottom: var(--space-xl); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.why-item {
  padding: var(--space-lg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  transition: background var(--transition), border-color var(--transition);
}
.why-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,149,42,0.3);
}

.why-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,149,42,0.25);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.why-item h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.why-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact .section-title { margin-bottom: var(--space-xs); }

.contact-intro {
  color: var(--gray-500);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-details { display: flex; flex-direction: column; gap: var(--space-sm); }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
}
.detail-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.contact-detail span {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.contact-detail-link {
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-detail-link:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-group {
  margin-bottom: var(--space-sm);
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.required { color: var(--gold); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,149,42,0.12);
}
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
}

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

.form-error {
  font-size: 0.78rem;
  color: #dc3545;
  margin-top: 0.3rem;
  display: none;
}
.form-error.visible { display: block; }

.form-success {
  margin-top: var(--space-sm);
  padding: 0.875rem 1rem;
  background: #d4edda;
  color: #155724;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,149,42,0.2);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  letter-spacing: 0.08em;
}

.footer-nav {
  display: flex;
  gap: var(--space-md);
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.footer-linkedin {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-linkedin:hover { color: var(--gold); }

.footer-locations {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-sep { color: rgba(201,149,42,0.5); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1rem 0;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* =====================================================
   CONTACT MODAL
   ===================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 20, 40, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.modal-overlay:not([hidden]) { opacity: 1; }
.modal-overlay[hidden] { display: none; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
  transform: translateY(20px);
  transition: transform 0.25s ease;
}
.modal-overlay:not([hidden]) .modal-box { transform: none; }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--gray-500);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.modal-close:hover { color: var(--navy); background: var(--gray-100); }

.modal-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.modal-sub {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: var(--space-md);
}

/* =====================================================
   FLOATING CONTACT CTA
   ===================================================== */
.float-cta {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(200,150,14,0.45);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.float-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,150,14,0.55);
}
.float-cta-text { display: none; }

/* =====================================================
   SERVICE PAGES
   ===================================================== */
.sp-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #122d58 60%, #0f2248 100%);
  padding: 140px 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.sp-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-md);
  transition: color var(--transition);
}
.sp-back:hover { color: var(--gold); }

.sp-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.sp-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}
.sp-title em { color: var(--gold); font-style: italic; }

.sp-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: var(--space-lg);
}

.sp-hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Detail layout */
.sp-detail { background: var(--white); }

.sp-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-xl);
  align-items: start;
}

.sp-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.sp-body {
  color: var(--gray-500);
  line-height: 1.85;
  margin-bottom: var(--space-sm);
}

/* Sticky sidebar */
.sp-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: sticky;
  top: 96px;
}

.sp-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-left: 3px solid var(--gold);
}

.sp-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.sp-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sp-list li {
  font-size: 0.875rem;
  color: var(--gray-700);
  padding: 0.45rem 0 0.45rem 1.2rem;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
  line-height: 1.5;
}
.sp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.sp-list li:last-child { border-bottom: none; }

.sp-card-who p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
}

.sp-card-cta {
  background: var(--navy);
  border-left-color: var(--gold);
  text-align: center;
}
.sp-card-cta p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-sm);
}
.sp-card-cta .btn { width: 100%; }

/* Related services */
.sp-related { background: var(--off-white); }

.sp-related-heading {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.sp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.sp-related-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}
.sp-related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.sp-related-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.sp-related-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.sp-related-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
}

@media (max-width: 900px) {
  .sp-grid { grid-template-columns: 1fr; }
  .sp-sidebar { position: static; }
  .sp-related-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-hero-actions { flex-direction: column; }
  .sp-hero-actions .btn { text-align: center; }
}
@media (max-width: 600px) {
  .sp-related-grid { grid-template-columns: 1fr; }
  .sp-hero { padding: 120px 0 var(--space-xl); }
}

/* =====================================================
   SCROLL TO TOP
   ===================================================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
.scroll-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--gold);
  color: var(--navy);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { flex-direction: row; align-items: stretch; }
  .portrait-frame { flex: 0 0 260px; }
  .about-accent-box { flex: 1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    padding: var(--space-md) 0 var(--space-lg);
    gap: var(--space-md);
    border-top: 1px solid rgba(201,149,42,0.2);
    transform: translateY(-110%);
    transition: transform 0.35s ease;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: none; }
  .nav-toggle { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }

  .about-visual { flex-direction: column; }
  .portrait-frame { flex: auto; }

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

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

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

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: var(--space-md); }
}
