:root {
  --navy: #0B2545;
  --navy-soft: #13315C;
  --gold: #C9A14A;
  --gold-soft: #E8DFC4;
  --cream: #FAF8F2;
  --cream-deep: #F4ECD8;
  --white: #FFFFFF;
  --grey-50: #FAFAFA;
  --grey-100: #F5F5F5;
  --grey-200: #E5E7EB;
  --grey-400: #9CA3AF;
  --grey-600: #4B5563;
  --grey-800: #1F2937;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  transition: all 0.3s ease;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-decoration: none;
}
.logo .accent { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  color: var(--grey-600);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 9px 22px;
  background: var(--navy);
  color: var(--white) !important;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}
.nav-cta:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(201, 161, 74, 0.25);
}
.nav-cta::after { display: none !important; }

/* Services dropdown */
.has-dropdown { position: relative; }
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.dropdown-trigger .chev {
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--grey-600);
  border-bottom: 1.5px solid var(--grey-600);
  transform: rotate(45deg);
  transition: all 0.25s ease;
  margin-top: -2px;
}
.has-dropdown:hover .dropdown-trigger .chev {
  transform: rotate(-135deg);
  margin-top: 2px;
  border-color: var(--navy);
}
.dropdown {
  position: absolute;
  top: 100%; left: -20px;
  background: var(--white);
  min-width: 320px;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 24px 50px rgba(11, 37, 69, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: 14px;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.dropdown a::after { display: none !important; }
.dropdown a:hover {
  background: var(--cream);
  color: var(--navy);
}
.dropdown a .dd-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.dropdown a .dd-icon svg {
  width: 16px; height: 16px;
  stroke: var(--navy);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dropdown a:hover .dd-icon {
  background: var(--navy);
  border-color: var(--navy);
}
.dropdown a:hover .dd-icon svg { stroke: var(--gold); }
.dropdown a .dd-text {
  display: flex; flex-direction: column; gap: 1px;
}
.dropdown a .dd-text .dd-name {
  font-size: 13.5px;
  font-weight: 600;
}
.dropdown a .dd-text .dd-desc {
  font-size: 11px;
  color: var(--grey-600);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ============ HERO — Distinctive cream/gradient backdrop ============ */
.hero {
  padding: 130px 40px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(201, 161, 74, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 0% 100%, rgba(11, 37, 69, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(244, 236, 216, 0.4) 0%, transparent 70%),
    var(--cream);
  border-bottom: 1px solid var(--grey-200);
}
/* Subtle dot grid pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(11, 37, 69, 0.07) 1px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
/* Decorative serif letterform watermark */
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 161, 74, 0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(201, 161, 74, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.hero-eyebrow .pulse {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(201, 161, 74, 0.5);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6.2vw, 76px);
  line-height: 1.0;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.hero-tagline {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey-600);
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(11, 37, 69, 0.18);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201, 161, 74, 0.35);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.5);
  color: var(--navy);
  border: 1.5px solid rgba(11, 37, 69, 0.15);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.hero-3d-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
}
.hero-3d-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 161, 74, 0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
#three-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.hero-3d-wrap::after {
  content: '';
  position: absolute;
  bottom: 8%;
  left: 15%; right: 15%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(11, 37, 69, 0.22) 0%, transparent 70%);
  filter: blur(10px);
  z-index: 0;
}

/* Hero stats — full-width strip at bottom of hero, no absolute positioning */
.hero-stats-wrap {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(11, 37, 69, 0.08);
  margin-top: 90px;
  padding-top: 36px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat .stat-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat .stat-num .plus { color: var(--gold); font-style: italic; font-weight: 500; }
.hero-stat .stat-label {
  font-size: 11px;
  color: var(--grey-600);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 600;
}

/* ============ SECTION BASE ============ */
section {
  padding: 130px 40px;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 80px;
  max-width: 760px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.section-title .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.section-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey-600);
}

/* ============ WHO WE ARE — Editorial layout, no boxes ============ */
.who { background: var(--white); }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.who-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--grey-600);
  margin-bottom: 18px;
}
.who-text p strong {
  color: var(--navy);
  font-weight: 600;
}
.who-stats-line {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.who-stat-item {
  padding: 36px 8px 36px 0;
  border-right: 1px solid var(--grey-200);
}
.who-stat-item:last-child { border-right: none; }
.who-stat-item:nth-child(n+2) { padding-left: 36px; }
.who-stat-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.who-stat-num .plus { color: var(--gold); font-style: italic; font-weight: 500; }
.who-stat-label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-600);
  font-weight: 600;
}

/* ============ WHAT WE DO — Editorial numbered list, NO card boxes ============ */
.what {
  background: var(--white);
  border-top: 1px solid var(--grey-200);
}
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.service-row {
  padding: 38px 36px 38px 0;
  border-bottom: 1px solid var(--grey-200);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: flex-start;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
}
.service-row:nth-child(2n) { padding-left: 36px; padding-right: 0; }
.service-row:nth-child(odd) { border-right: 1px solid var(--grey-200); }
.service-row:nth-last-child(-n+2) { border-bottom: none; }
.service-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(201, 161, 74, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.service-row:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.35s ease;
  flex-shrink: 0;
}
.service-icon svg {
  width: 26px; height: 26px;
  stroke: var(--navy);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.35s ease;
}
.service-row:hover .service-icon {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 12px 28px rgba(11, 37, 69, 0.18);
}
.service-row:hover .service-icon svg { stroke: var(--gold); }

.service-content { flex: 1; min-width: 0; }
.service-num {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}
.service-content h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.service-content p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--grey-600);
  margin-bottom: 0;
}

/* ============ INDUSTRIES — Minimal icon grid, no card boxes ============ */
.industries {
  background: var(--white);
  border-top: 1px solid var(--grey-200);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  border-top: 1px solid var(--grey-200);
  border-left: 1px solid var(--grey-200);
}
.industry {
  padding: 36px 24px 32px;
  text-align: center;
  background: var(--white);
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  margin-right: -1px;
  margin-bottom: -1px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.industry:hover {
  background: var(--cream);
}
.industry::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.industry:hover::before { opacity: 1; }
.industry-icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.industry-icon svg {
  width: 38px; height: 38px;
  stroke: var(--gold);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.industry:hover .industry-icon { transform: scale(1.1); }
.industry-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.industry-desc {
  font-size: 11px;
  color: var(--grey-600);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============ FEATURED WORK — Minimal cards, image-led ============ */
.work {
  background: var(--white);
  border-top: 1px solid var(--grey-200);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.work-card {
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}
.work-card:hover { transform: translateY(-6px); }
.work-visual {
  height: 280px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 24px;
  transition: box-shadow 0.4s ease;
  padding: 30px;
}
.work-card:hover .work-visual {
  box-shadow: 0 28px 56px rgba(11, 37, 69, 0.22);
}
.work-visual::before {
  content: '';
  position: absolute;
  top: -40%; right: -40%;
  width: 180%; height: 180%;
  background: radial-gradient(circle at 30% 30%, rgba(201, 161, 74, 0.28) 0%, transparent 55%);
  pointer-events: none;
}
.work-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, transparent 0%, black 50%, transparent 100%);
  pointer-events: none;
}
/* Mockup container */
.work-mockup {
  position: relative;
  z-index: 2;
  width: 100%; max-width: 380px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform: translateY(8px) rotateX(2deg);
  transition: transform 0.5s ease;
}
.work-card:hover .work-mockup { transform: translateY(0) rotateX(0deg); }
.work-mockup-header {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: var(--grey-100);
  border-bottom: 1px solid var(--grey-200);
}
.work-mockup-header span {
  width: 8px; height: 8px; border-radius: 50%;
  background: #d0d0d0;
}
.work-mockup-header span:first-child { background: #ff5f57; }
.work-mockup-header span:nth-child(2) { background: #febc2e; }
.work-mockup-header span:nth-child(3) { background: #28c840; }
.work-mockup-body {
  padding: 14px 16px;
}
.work-mockup-title {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-600);
  font-weight: 700;
  margin-bottom: 8px;
}
.work-mockup-num {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.work-mockup-num .accent { color: var(--gold); font-style: italic; }
.work-mockup-meta {
  font-size: 10px;
  color: #15803D;
  font-weight: 600;
  margin-bottom: 12px;
}
.work-mockup-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 38px;
}
.work-mockup-bars .b {
  flex: 1;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: 2px;
  opacity: 0.85;
}
.work-mockup-bars .b.gold { background: linear-gradient(180deg, var(--gold) 0%, #d9b56a 100%); }
.work-mockup-rows {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 10px;
}
.work-mockup-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 9.5px; color: var(--grey-600);
  padding: 5px 0;
  border-bottom: 1px dotted var(--grey-200);
}
.work-mockup-row:last-child { border-bottom: none; }
.work-mockup-row .label { font-weight: 600; color: var(--navy); }
.work-mockup-row .val { color: var(--gold); font-weight: 700; }
.work-mockup-tabs {
  display: flex; gap: 6px; margin-bottom: 10px;
}
.work-mockup-tabs .tab {
  font-size: 9px; padding: 3px 8px;
  background: var(--grey-100);
  border-radius: 4px;
  color: var(--grey-600);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.work-mockup-tabs .tab.active {
  background: var(--navy); color: white;
}

.work-card:nth-child(2) .work-visual { background: linear-gradient(135deg, #13315C 0%, #1B3A6B 100%); }
.work-card:nth-child(3) .work-visual { background: linear-gradient(135deg, #0B2545 0%, #1B3A6B 100%); }
.work-card:nth-child(4) .work-visual { background: linear-gradient(135deg, #13315C 0%, #0B2545 100%); }

.work-tag {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.work-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  transition: color 0.25s ease;
}
.work-card:hover h3 { color: var(--gold); }
.work-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--grey-600);
}

/* ============ CTA ============ */
.cta {
  background: var(--navy);
  color: var(--white);
  padding: 110px 40px;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 161, 74, 0.18) 0%, transparent 60%);
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 161, 74, 0.08) 0%, transparent 60%);
}
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
}
.cta h2 .accent { color: var(--gold); font-style: italic; }
.cta p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 18px;
  max-width: 560px;
}
.cta-btn {
  background: var(--gold);
  color: var(--navy);
  padding: 18px 40px;
  font-size: 15.5px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  justify-self: end;
  box-shadow: 0 12px 30px rgba(201, 161, 74, 0.25);
}
.cta-btn:hover {
  background: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 44px rgba(201, 161, 74, 0.35);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  padding: 60px 40px 36px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--grey-200);
}
.footer-brand .logo { font-size: 24px; }
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.7;
  max-width: 340px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: var(--grey-600);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-col ul a:hover { color: var(--navy); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--grey-400);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner, .who-grid, .cta-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-3d-wrap { margin: 0 auto; max-width: 380px; }
  .services-list { grid-template-columns: 1fr; }
  .service-row, .service-row:nth-child(2n) { padding: 32px 0; }
  .service-row:nth-child(odd) { border-right: none; }
  .service-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--grey-200); }
  .service-row:last-child { border-bottom: none; }
  .work-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .who-stats-line { grid-template-columns: repeat(2, 1fr); }
  .who-stat-item:nth-child(2) { border-right: none; }
  .who-stat-item:nth-child(n+3) { border-top: 1px solid var(--grey-200); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .cta-btn { justify-self: start; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { padding: 8px 16px; font-size: 12.5px; }
  .nav-inner { padding: 14px 24px; }
  .hero { padding: 100px 24px 60px; min-height: auto; }
  section { padding: 80px 24px; }
  .work-grid { grid-template-columns: 1fr; }
  .who-stats-line { grid-template-columns: 1fr; }
  .who-stat-item { border-right: none !important; border-bottom: 1px solid var(--grey-200); padding-left: 0 !important; }
  .who-stat-item:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================================
   SERVICE PAGE STYLES
   ============================================================ */

/* SERVICE HERO */
.svc-hero {
  padding: 130px 40px 90px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(201, 161, 74, 0.16) 0%, transparent 55%), radial-gradient(ellipse 70% 60% at 0% 100%, rgba(11, 37, 69, 0.07) 0%, transparent 55%), radial-gradient(ellipse 60% 50% at 50% 50%, rgba(244, 236, 216, 0.4) 0%, transparent 70%), var(--cream);
  border-bottom: 1px solid var(--grey-200);
}
.svc-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(11, 37, 69, 0.07) 1px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.svc-hero-inner {
  max-width: 1100px; margin: 0 auto; position: relative; z-index: 1;
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--grey-600); margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--grey-600); text-decoration: none; transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb .sep { color: var(--gold); }
.breadcrumb .current { color: var(--navy); font-weight: 600; }

.svc-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(201, 161, 74, 0.3); border-radius: 999px;
  font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--navy); font-weight: 600; margin-bottom: 26px;
  backdrop-filter: blur(10px);
}
.svc-tag .tag-icon { width: 18px; height: 18px; }
.svc-tag .tag-icon svg { width: 18px; height: 18px; stroke: var(--gold); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.svc-hero h1 {
  font-family: var(--serif); font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.05; font-weight: 600; color: var(--navy);
  letter-spacing: -0.025em; margin-bottom: 24px;
}
.svc-hero h1 .accent { color: var(--gold); font-style: italic; font-weight: 500; }
.svc-hero .lead {
  font-size: 19px; line-height: 1.6; color: var(--grey-600);
  margin-bottom: 36px; max-width: 720px;
}
.svc-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; border-radius: 999px; font-size: 14.5px; font-weight: 600; text-decoration: none; letter-spacing: 0.02em; transition: all 0.25s ease; cursor: pointer; border: none; font-family: var(--sans); }
.btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 8px 24px rgba(11, 37, 69, 0.18); }
.btn-primary:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(201, 161, 74, 0.35); }
.btn-ghost { background: rgba(255, 255, 255, 0.5); color: var(--navy); border: 1.5px solid rgba(11, 37, 69, 0.15); backdrop-filter: blur(10px); }
.btn-ghost:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* SECTIONS */
section { padding: 110px 40px; }
.s-inner { max-width: 1100px; margin: 0 auto; }
.s-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 22px; }
.s-eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--gold); }
.s-title { font-family: var(--serif); font-size: clamp(30px, 3.6vw, 44px); font-weight: 600; color: var(--navy); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 20px; }
.s-title .accent { color: var(--gold); font-style: italic; font-weight: 500; }
.s-lead { font-size: 17px; line-height: 1.6; color: var(--grey-600); max-width: 680px; }
.s-header { margin-bottom: 60px; }

/* WHATS INCLUDED — editorial 2-col list */
.included { background: var(--white); border-top: 1px solid var(--grey-200); }
.included-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.included-row {
  padding: 28px 32px 28px 0;
  border-bottom: 1px solid var(--grey-200);
  display: grid; grid-template-columns: 44px 1fr; gap: 18px;
  align-items: flex-start;
}
.included-row:nth-child(2n) { padding: 28px 0 28px 32px; }
.included-row:nth-child(odd) { border-right: 1px solid var(--grey-200); }
.included-row:nth-last-child(-n+2) { border-bottom: none; }
.included-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--cream); border: 1px solid var(--gold-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.included-icon svg { width: 22px; height: 22px; stroke: var(--navy); stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.included-content h3 { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.01em; }
.included-content p { font-size: 13.5px; line-height: 1.6; color: var(--grey-600); margin: 0; }

/* PROCESS — numbered horizontal flow */
.process { background: var(--cream); border-top: 1px solid var(--grey-200); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 50px;
}
.process-step { position: relative; }
.process-step .num {
  font-family: var(--serif); font-size: 48px; color: var(--gold);
  font-weight: 700; font-style: italic; line-height: 1;
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.process-step h3 {
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em;
}
.process-step p { font-size: 13px; line-height: 1.6; color: var(--grey-600); margin: 0; }

/* OUTCOMES — KPI band */
.outcomes { background: var(--white); border-top: 1px solid var(--grey-200); }
.outcomes-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--grey-200); border-bottom: 1px solid var(--grey-200);
  margin-top: 30px;
}
.outcome { padding: 36px 8px 36px 0; border-right: 1px solid var(--grey-200); }
.outcome:nth-child(n+2) { padding-left: 28px; }
.outcome:last-child { border-right: none; }
.outcome .num { font-family: var(--serif); font-size: 44px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 8px; letter-spacing: -0.02em; }
.outcome .num .accent { color: var(--gold); font-style: italic; font-weight: 500; }
.outcome .label { font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey-600); font-weight: 600; }

/* RELATED CASE STUDIES */
.related { background: var(--cream); border-top: 1px solid var(--grey-200); }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 40px; }
.related-card {
  background: var(--white); border-radius: 10px;
  padding: 30px; border: 1px solid var(--grey-200);
  transition: all 0.4s ease;
}
.related-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 22px 44px rgba(11, 37, 69, 0.1); }
.related-tag { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.related-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em; line-height: 1.2; }
.related-card p { font-size: 14px; line-height: 1.6; color: var(--grey-600); margin: 0; }

/* TECH PILLS */
.tech-row {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}
.tech-pill {
  font-size: 12.5px; padding: 6px 14px; background: var(--cream);
  border: 1px solid var(--gold-soft); color: var(--navy); border-radius: 999px;
  font-weight: 500;
}

/* CTA */
.cta { background: var(--navy); color: var(--white); padding: 110px 40px; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(201, 161, 74, 0.18) 0%, transparent 60%); }
.cta::after { content: ''; position: absolute; bottom: -200px; left: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201, 161, 74, 0.08) 0%, transparent 60%); }
.cta-inner { margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.cta h2 { font-family: var(--serif); font-size: clamp(34px, 4vw, 50px); font-weight: 600; line-height: 1.1; color: var(--white); letter-spacing: -0.02em; }
.cta h2 .accent { color: var(--gold); font-style: italic; }
.cta p { font-size: 17px; line-height: 1.6; color: rgba(255, 255, 255, 0.75); margin-top: 18px; max-width: 560px; }
.cta-btn { background: var(--gold); color: var(--navy); padding: 18px 40px; font-size: 15.5px; font-weight: 700; border-radius: 999px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s ease; justify-self: end; box-shadow: 0 12px 30px rgba(201, 161, 74, 0.25); }
.cta-btn:hover { background: var(--white); transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 44px rgba(201, 161, 74, 0.35); }

/* FOOTER */
.footer { background: var(--white); border-top: 1px solid var(--grey-200); padding: 60px 40px 36px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 50px; border-bottom: 1px solid var(--grey-200); }
.footer-brand .logo { font-size: 24px; }
.footer-brand p { margin-top: 16px; font-size: 14px; color: var(--grey-600); line-height: 1.7; max-width: 340px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--grey-600); text-decoration: none; font-size: 14px; transition: color 0.2s ease; }
.footer-col ul a:hover { color: var(--navy); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--grey-400); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .included-list { grid-template-columns: 1fr; }
  .included-row, .included-row:nth-child(2n) { padding: 24px 0; }
  .included-row:nth-child(odd) { border-right: none; }
  .included-row:nth-last-child(2) { border-bottom: 1px solid var(--grey-200); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
  .outcomes-row { grid-template-columns: repeat(2, 1fr); }
  .outcome:nth-child(2) { border-right: none; }
  .outcome:nth-child(n+3) { border-top: 1px solid var(--grey-200); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-btn { justify-self: start; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta { padding: 8px 16px; font-size: 12.5px; }
  .nav-inner { padding: 14px 24px; }
  .svc-hero { padding: 100px 24px 60px; }
  section { padding: 70px 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .outcomes-row { grid-template-columns: 1fr; }
  .outcome { border-right: none !important; padding-left: 0 !important; border-bottom: 1px solid var(--grey-200); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================================
   WORDPRESS-SPECIFIC OVERRIDES
   ============================================================ */
.wp-block-image img { max-width: 100%; height: auto; }
.alignwide { max-width: 1280px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100%; }
.screen-reader-text { position: absolute; left: -9999px; }
.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .nav { top: 46px; } }

/* ============================================================
   CUSTOM LOGO SIZING — fixes oversized uploaded logos
   ============================================================ */
.site-branding {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.site-branding .custom-logo-link,
.site-branding a {
  display: inline-flex !important;
  align-items: center;
  text-decoration: none !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}
.site-branding .custom-logo-link::after,
.site-branding a::after { display: none !important; content: none !important; }
.site-branding img,
.site-branding .custom-logo {
  max-height: 40px !important;
  width: auto !important;
  height: auto !important;
  max-width: 200px !important;
  display: block;
  object-fit: contain;
}
.footer-brand .site-branding.footer-logo img,
.footer-brand .site-branding.footer-logo .custom-logo {
  max-height: 48px !important;
  max-width: 240px !important;
  margin-bottom: 4px;
}

/* Social icons in footer */
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid var(--grey-200);
  background: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: all 0.25s ease;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.footer-social a svg { width: 18px; height: 18px; fill: currentColor; }
.footer-social a::after { display: none !important; }
