/* ============================================================
   DK DYNAMICS LLC -- assets/styles.css
   Bold tone | Manrope headings + Lora body
   Navy #1a2f5a | Gold #c9aa52 | Light blue #5f8fc0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ----------------------------------------------------------
   TOKENS
   ---------------------------------------------------------- */
:root {
  /* Colors */
  --navy:        #1a2f5a;
  --navy-dark:   #121f3e;
  --navy-light:  #243d73;
  --gold:        #c9aa52;
  --gold-light:  #d9bf7a;
  --gold-dark:   #a88c3a;
  --blue:        #5f8fc0;
  --blue-light:  #88afd4;
  --blue-pale:   #e8f0f8;
  --white:       #ffffff;
  --off-white:   #f7f8fa;
  --gray-100:    #f0f2f5;
  --gray-300:    #cdd2da;
  --gray-500:    #7a8494;
  --gray-700:    #3f4655;
  --text:        #1e2535;

  /* Typography -- Lora on headings, Manrope on body/UI */
  --font-head:   'Lora', serif;
  --font-body:   'Manrope', sans-serif;

  /* Scale */
  --text-xs:     0.75rem;
  --text-sm:     0.875rem;
  --text-base:   1rem;
  --text-lg:     1.125rem;
  --text-xl:     1.25rem;
  --text-2xl:    1.5rem;
  --text-3xl:    1.875rem;
  --text-4xl:    2.25rem;
  --text-5xl:    3rem;
  --text-6xl:    3.75rem;
  --text-7xl:    4.5rem;

  /* Spacing */
  --space-1:     0.25rem;
  --space-2:     0.5rem;
  --space-3:     0.75rem;
  --space-4:     1rem;
  --space-6:     1.5rem;
  --space-8:     2rem;
  --space-10:    2.5rem;
  --space-12:    3rem;
  --space-16:    4rem;
  --space-20:    5rem;
  --space-24:    6rem;
  --space-32:    8rem;

  /* Layout */
  --container:   1200px;
  --container-sm: 800px;
  --radius:      4px;
  --radius-md:   8px;
  --radius-lg:   12px;

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --dur:         200ms;
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ----------------------------------------------------------
   TYPOGRAPHY
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p {
  margin-bottom: var(--space-4);
  max-width: 68ch;
}

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

strong {
  font-weight: 600;
  font-family: var(--font-head);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}

.section-title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.section-intro {
  font-size: var(--text-lg);
  color: var(--gray-700);
  max-width: 60ch;
  margin-bottom: var(--space-10);
}

/* ----------------------------------------------------------
   LAYOUT PRIMITIVES
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-sm {
  width: 100%;
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

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

.section-sm {
  padding: var(--space-16) 0;
}

/* Gold rule divider -- signature element */
.gold-rule {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: var(--space-6);
}

.gold-rule-center {
  margin-left: auto;
  margin-right: auto;
}

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 170, 82, 0.35);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding-left: 0;
  padding-right: 0;
  letter-spacing: 0.04em;
}

.btn-ghost:hover { color: var(--gold-dark); }

.btn-ghost::after {
  content: ' \2192';
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 31, 62, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: var(--space-8);
}

/* Logo -- transparent PNG, no container needed */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 58px;
  width: auto;
  display: block;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-link.has-dropdown::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
  transition: transform var(--dur) var(--ease);
}

.nav-item:hover .nav-link.has-dropdown::after {
  transform: rotate(180deg);
}

/* Dropdowns */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: var(--space-3) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur) var(--ease);
  z-index: 200;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding: var(--space-3) var(--space-6);
  transition: color var(--dur), background var(--dur);
}

.nav-dropdown a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.05);
}

.dropdown-group-label {
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  padding: var(--space-4) var(--space-6) var(--space-1);
  pointer-events: none;
}

.dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: var(--space-2) 0;
}

/* Wide dropdown for services */
.nav-dropdown-wide {
  min-width: 320px;
}

/* Locations dropdown -- 2 col */
.nav-dropdown-locations {
  min-width: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: var(--space-3) 0;
}

.nav-dropdown-locations .dropdown-group-label {
  grid-column: 1 / -1;
}

.nav-dropdown-locations .dropdown-divider {
  grid-column: 1 / -1;
}

/* Header CTA */
.header-cta {
  flex-shrink: 0;
}

/* Mobile menu toggle */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav panel */
.mobile-nav {
  display: none;
  background: var(--navy-dark);
  border-top: 2px solid var(--gold);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}

.mobile-nav.open {
  max-height: 100vh;
  overflow-y: auto;
}

.mobile-nav-inner {
  padding: var(--space-4) var(--space-6) var(--space-8);
}

.mobile-nav-section {
  margin-bottom: var(--space-6);
}

.mobile-nav-section-label {
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-section a {
  display: block;
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: var(--space-2) 0;
  transition: color var(--dur);
}

.mobile-nav-section a:hover { color: var(--white); }

.mobile-nav-main-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-6);
}

.mobile-nav-main-links a {
  font-family: var(--font-head);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  padding: var(--space-2) 0;
}

/* ============================================================
   HERO -- full-bleed photo with navy/wave overlay
   ============================================================ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background photo layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* Dark gradient overlay so text pops */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(18,31,62,0.88) 0%, rgba(18,31,62,0.65) 55%, rgba(18,31,62,0.30) 100%);
}

/* Wave SVG -- sits at bottom, echoes logo wave motif */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.hero-waves svg {
  width: 100%;
  height: 120px;
  display: block;
}

/* Gold accent wavy line near top of wave stack */
.hero-gold-rule {
  position: absolute;
  bottom: 96px;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
  opacity: 0.6;
}

.hero-gold-rule svg {
  width: 100%;
  height: 6px;
  display: block;
}

/* Content sits above all layers */
.hero-container {
  position: relative;
  z-index: 3;
  padding-top: var(--space-20);
  padding-bottom: var(--space-32);
}

.hero-content {
  max-width: 680px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-6);
}

.hero h1 .text-gold {
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-8);
  max-width: 54ch;
  line-height: 1.65;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.hero-phone {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--dur);
}

.hero-phone:hover { color: var(--gold); }

/* ============================================================
   PHOTO STRIP
   ============================================================ */
.photo-strip {
  background: var(--navy-dark);
  overflow: hidden;
}

.photo-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.photo-strip-item {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}

.photo-strip-item:hover img {
  transform: scale(1.05);
}

.photo-strip-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(18,31,62,0.85) 0%, transparent 100%);
  padding: var(--space-6) var(--space-4) var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.photo-strip-item:hover .photo-strip-label {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------
   TRUST STRIP
   ---------------------------------------------------------- */
.trust-strip {
  background: var(--off-white);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--gray-300);
  padding: var(--space-6) 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-8) var(--space-12);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.trust-label {
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  display: block;
  line-height: 1.3;
}

.trust-value {
  font-family: var(--font-head);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1.3;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.service-card:hover {
  border-color: var(--blue-light);
  box-shadow: 0 8px 32px rgba(26, 47, 90, 0.1);
  transform: translateY(-3px);
}

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

.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--navy);
}

.service-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: var(--navy);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--gray-700);
  margin-bottom: var(--space-4);
  max-width: 100%;
}

.service-card-link {
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  transition: color var(--dur);
}

.service-card-link::after {
  content: '\2192';
}

.service-card:hover .service-card-link {
  color: var(--gold-dark);
}

/* ----------------------------------------------------------
   CASE STUDY PREVIEW
   ---------------------------------------------------------- */
.case-study-section {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.case-study-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 100% 50%, rgba(95, 143, 192, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.case-study-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
}

.case-study-content .eyebrow {
  color: var(--gold);
}

.case-study-content h2 {
  color: var(--white);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
}

.case-study-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
}

.case-study-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.case-stat {
  padding: var(--space-4);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.case-stat-value {
  font-family: var(--font-head);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.case-stat-label {
  font-family: var(--font-head);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-study-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy-light);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.case-study-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-head);
  font-size: var(--text-sm);
  text-align: center;
  padding: var(--space-6);
}

/* ----------------------------------------------------------
   TESTIMONIALS
   ---------------------------------------------------------- */
.testimonials-section {
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  box-shadow: 0 2px 12px rgba(26, 47, 90, 0.06);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  font-family: var(--font-head);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  font-weight: 800;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
}

.testimonial-stars span {
  color: var(--gold);
  font-size: var(--text-sm);
}

.testimonial-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--gray-700);
  margin-bottom: var(--space-6);
  max-width: 100%;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
}

.testimonial-author-name {
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.testimonial-author-context {
  font-family: var(--font-head);
  font-size: var(--text-xs);
  color: var(--gray-500);
  display: block;
}

/* ----------------------------------------------------------
   PROCESS SECTION
   ---------------------------------------------------------- */
.process-section {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--blue-light) 100%);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto var(--space-4);
}

.process-step h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--navy);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--gray-700);
  max-width: 20ch;
  margin: 0 auto;
}

/* ----------------------------------------------------------
   FAQ (homepage) SECTION
   ---------------------------------------------------------- */
.faq-section {
  background: var(--gray-100);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto var(--space-10);
}

.faq-item {
  border-bottom: 1px solid var(--gray-300);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-300);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  cursor: pointer;
  padding: var(--space-6) 0;
  font-family: var(--font-head);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  list-style: none;
  user-select: none;
  transition: color var(--dur);
}

.faq-item summary:hover { color: var(--blue); }

.faq-item summary::-webkit-details-marker { display: none; }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--gold);
  transition: transform var(--dur) var(--ease);
}

.faq-item[open] summary .faq-chevron {
  transform: rotate(180deg);
}

.faq-item[open] summary {
  color: var(--navy);
}

.faq-answer {
  padding: 0 0 var(--space-6);
  color: var(--gray-700);
  font-size: var(--text-base);
  max-width: 68ch;
}

/* ----------------------------------------------------------
   CTA SECTION
   ---------------------------------------------------------- */
.cta-section {
  background: var(--navy);
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(201, 170, 82, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--white);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-lg);
  margin: 0 auto var(--space-8);
  max-width: 52ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: var(--space-20) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer-brand { }

.footer-logo {
  display: inline-flex;
  margin-bottom: var(--space-4);
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-6);
  max-width: 30ch;
}

.footer-nap {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-nap-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.72);
}

.footer-nap-item svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-nap-item a {
  color: rgba(255,255,255,0.72);
  transition: color var(--dur);
}

.footer-nap-item a:hover { color: var(--gold); }

.footer-col-title {
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.68);
  transition: color var(--dur);
  line-height: 1.5;
}

.footer-links a:hover { color: var(--white); }

.footer-map-section {
  padding: var(--space-12) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-map-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.footer-hours-title {
  font-family: var(--font-head);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.68);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-map iframe {
  border-radius: var(--radius-md);
  width: 100%;
  height: 280px;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-6) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
}

.footer-legal-links {
  display: flex;
  gap: var(--space-6);
}

.footer-legal-links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  transition: color var(--dur);
}

.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }

/* ----------------------------------------------------------
   CONTACT FORM PLACEHOLDER
   ---------------------------------------------------------- */
.form-placeholder {
  background: var(--gray-100);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  padding: var(--space-12);
  text-align: center;
  color: var(--gray-500);
  font-family: var(--font-head);
  font-size: var(--text-sm);
}

/* ----------------------------------------------------------
   UTILITY CLASSES
   ---------------------------------------------------------- */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.bg-navy { background: var(--navy); }
.bg-off-white { background: var(--off-white); }
.bg-white { background: var(--white); }
.mt-0 { margin-top: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .hero-inner {
    gap: var(--space-10);
  }
}

@media (max-width: 768px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-xl); }

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

  /* Header */
  .site-nav,
  .header-cta {
    display: none;
  }

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

  .mobile-nav {
    display: block;
  }

  /* Hero */
  .hero {
    min-height: auto;
  }

  .hero-container {
    padding-top: var(--space-16);
    padding-bottom: var(--space-24);
  }

  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }

  /* Photo strip */
  .photo-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Trust strip */
  .trust-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  /* Case study */
  .case-study-inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .case-study-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* Process */
  .process-steps::before { display: none; }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-map-section .container {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .container { padding: 0 var(--space-4); }

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

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .case-study-stats {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .photo-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

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