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

:root {
  --navy:        #0d1b2a;
  --navy-mid:    #132030;
  --navy-light:  #1e3a5a;
  --gold:        #c9a84c;
  --gold-light:  #e8c46a;
  --gold-pale:   rgba(201,168,76,.12);
  --cream:       #f7f4ef;
  --cream-light: #faf8f5;
  --white:       #ffffff;
  --gray:        #64748b;
  --gray-light:  #94a3b8;
  --border:      #e8e3db;
  --border-dark: rgba(255,255,255,.1);
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow-sm:   0 2px 12px rgba(13,27,42,.07);
  --shadow:      0 6px 28px rgba(13,27,42,.1);
  --shadow-lg:   0 16px 56px rgba(13,27,42,.16);
  --shadow-gold: 0 8px 24px rgba(201,168,76,.28);
  --ease:        cubic-bezier(.4,0,.2,1);
  --t:           0.22s;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -.01em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 7rem 0; }

/* ─── Focus ────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.1rem;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.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: var(--shadow-gold);
}
.btn-primary:active { transform: translateY(0); }

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

.btn-full { width: 100%; justify-content: center; }

/* ─── Section Labels ───────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-heading {
  font-size: clamp(2.1rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 580px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }
.section-header .section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}
.section-header .section-sub { margin: 0 auto; }

.section-header.light .section-heading { color: var(--white); }
.section-header.light .section-sub    { color: rgba(255,255,255,.6); }
.section-header.light .section-label  { color: var(--gold-light); }
.section-header.light .section-label::before,
.section-header.light .section-label::after { background: var(--gold-light); }

/* ─── Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease), backdrop-filter var(--t);
}
.nav.scrolled {
  background: rgba(13,27,42,.9);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 4px 24px rgba(0,0,0,.22);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.375rem;
  padding-bottom: 1.375rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background var(--t);
}
.logo:hover .logo-mark { background: var(--gold-light); }
.logo-name {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.01em;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta.btn {
  padding: .55rem 1.375rem;
  font-size: .825rem;
}
.nav-cta.btn::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: all var(--t) var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  padding: 1.25rem 2rem 2rem;
  gap: .25rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-menu a {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  font-weight: 500;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color var(--t);
}
.mobile-menu a:last-child { border-bottom: none; color: var(--gold); font-weight: 600; }
.mobile-menu a:hover { color: var(--white); }
.mobile-menu.open { display: flex; }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 65% 40%, rgba(30,58,90,.9) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(201,168,76,.06) 0%, transparent 50%),
    linear-gradient(160deg, #0a1621 0%, #0f2236 35%, #091929 100%);
}
/* Fine grid overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
/* Diagonal accent line */
.hero-bg::after {
  content: '';
  position: absolute;
  right: -60px; top: -100px;
  width: 480px; height: 480px;
  border: 1px solid rgba(201,168,76,.1);
  border-radius: 50%;
  transform: rotate(-15deg);
}

/* Decorative circles */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero-deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.07);
}
.hero-deco-ring:nth-child(1) {
  width: 600px; height: 600px;
  right: -150px; top: -150px;
}
.hero-deco-ring:nth-child(2) {
  width: 900px; height: 900px;
  right: -300px; top: -300px;
}
.hero-deco-bar {
  position: absolute;
  bottom: 0; right: 0;
  width: 42%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .35;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--gold);
}

.hero-headline {
  font-size: clamp(3.25rem, 8vw, 6rem);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.75rem;
  letter-spacing: -.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.175rem);
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.2);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .02em;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: .875rem;
  z-index: 2;
  opacity: .45;
  transition: opacity var(--t);
}
.hero-scroll:hover { opacity: .7; }
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: lineDown 2.2s ease-in-out infinite;
}
.hero-scroll-text {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
}
@keyframes lineDown {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  80%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ─── Marquee Strip ────────────────────────────────────────── */
.strip {
  background: var(--navy-mid);
  overflow: hidden;
  padding: .875rem 0;
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.strip-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 36s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 0 1.75rem;
  white-space: nowrap;
}
.strip-item span {
  font-size: .725rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  flex-shrink: 0;
}
.strip-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .6;
  flex-shrink: 0;
}

/* ─── About ────────────────────────────────────────────────── */
.about {
  background: var(--white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 1.375rem;
  font-size: 1.025rem;
  line-height: 1.85;
}
.about-text p:last-of-type { margin-bottom: 0; }

.about-text .btn { margin-top: 2rem; }

/* Stat cards */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-card {
  background: var(--cream-light);
  padding: 2rem 1.75rem;
  transition: background var(--t);
  position: relative;
}
.stat-card:hover { background: var(--white); }
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.75rem; right: 1.75rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.stat-card:hover::after { transform: scaleX(1); }

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-label {
  font-size: .825rem;
  color: var(--gray);
  line-height: 1.55;
  font-weight: 400;
}

/* ─── Services ─────────────────────────────────────────────── */
.services { background: var(--cream); }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 1.375rem;
  color: var(--gold);
  transition: background var(--t);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card:hover .service-icon { background: rgba(201,168,76,.2); }

.service-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .75rem;
}

.service-card > p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 1.375rem;
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  border-top: 1px solid var(--border);
  padding-top: 1.125rem;
}
.service-bullets li {
  font-size: .8rem;
  color: var(--gray);
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  line-height: 1.5;
}
.service-bullets li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: .35rem;
}

/* ─── Results ──────────────────────────────────────────────── */
.results {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.results::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 80px 80px;
}
.results::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.3), transparent);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
}

.result-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.result-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.25);
  transform: translateY(-3px);
}
.result-card.featured {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.25);
  display: flex;
  flex-direction: column;
}
.result-card.featured .result-metric { font-size: clamp(1.5rem, 2.5vw, 2rem); }

.result-metric {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: .625rem;
  letter-spacing: -.01em;
}

.result-industry {
  font-size: .675rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.125rem;
}

.result-card > p {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  flex: 1;
}

.result-card .btn { margin-top: 1.5rem; align-self: flex-start; }

/* ─── Approach ─────────────────────────────────────────────── */
.approach { background: var(--white); }

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* Connecting line between steps */
.approach-steps::before {
  content: '';
  position: absolute;
  top: 1.875rem;
  left: 1.5rem; right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,.3) 100%);
  z-index: 0;
}

.step {
  padding: 0 1.5rem;
  border-left: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.step:first-child { padding-left: 0; border-left: none; }

.step-num-wrap {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1.5rem;
}
.step-number {
  display: grid;
  place-items: center;
  width: 3.75rem; height: 3.75rem;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-light);
  flex-shrink: 0;
  transition: all .35s var(--ease);
}
.step:hover .step-number {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--navy);
}

.step-content h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .6rem;
}
.step-content p {
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.75;
}

/* ─── Why ──────────────────────────────────────────────────── */
.why {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(201,168,76,.05), transparent 60%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
}

.why-text .section-label  { color: var(--gold); }
.why-text .section-heading { color: var(--white); }
.why-text p {
  color: rgba(255,255,255,.6);
  margin-bottom: 1.375rem;
  font-size: 1.025rem;
  line-height: 1.85;
}
.why-text p:last-of-type { margin-bottom: 0; }

.why-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.pillar {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.875rem 1.625rem;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.pillar:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.2);
  transform: translateY(-3px);
}

.pillar-icon {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--gold);
}
.pillar-icon svg { width: 18px; height: 18px; }

.pillar h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.pillar p {
  font-size: .825rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* ─── Contact ──────────────────────────────────────────────── */
.contact {
  background: var(--cream);
  position: relative;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.contact-text .section-heading { color: var(--navy); }

.contact-text > p {
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-size: 1.025rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1.125rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: .875rem;
  color: var(--gray);
  font-size: .9rem;
}
.contact-item svg { color: var(--gold); flex-shrink: 0; }
.contact-item a { color: var(--navy); font-weight: 500; transition: color var(--t); }
.contact-item a:hover { color: var(--gold); }

/* Form card */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 2.75rem; right: 2.75rem;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 0 0 4px 4px;
  top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.25rem;
}
.form-group:last-of-type { margin-bottom: 0; }

label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
}

input, select, textarea {
  padding: .8rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--navy);
  background: var(--cream-light);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--gray-light); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
  background: var(--white);
}

/* Custom select arrow */
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

textarea { resize: vertical; min-height: 130px; }

.contact-form .btn-primary { margin-top: 1.375rem; }

.form-note {
  text-align: center;
  font-size: .75rem;
  color: var(--gray-light);
  margin-top: .875rem;
  letter-spacing: .01em;
}

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 1.125rem;
  color: #166534;
  font-size: .875rem;
  font-weight: 600;
  margin-top: 1.125rem;
}
.form-success.show { display: flex; }
/* Formspree ajax error states */
[data-fs-success] { display: none; }
[data-fs-success]:not(:empty) { display: flex; }
.fs-form-error:not(:empty) {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  padding: .875rem 1rem;
  color: #991b1b;
  font-size: .825rem;
  margin-bottom: 1.25rem;
}
.fs-field-error:not(:empty) {
  display: block;
  font-size: .75rem;
  color: #dc2626;
  margin-top: .25rem;
}
input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 4rem 0 3rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.35), transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .03em;
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: .75rem;
  color: rgba(255,255,255,.25);
  letter-spacing: .02em;
  text-align: right;
}

/* ─── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .strip-track { animation: none; }
  .hero-scroll-line { animation: none; }
  @keyframes lineDown { from { opacity: 1; } to { opacity: 1; } }
}

/* ─── Responsive ───────────────────────────────────────────── */

/* Large tablet */
@media (max-width: 1100px) {
  .container { padding: 0 1.75rem; }
  .approach-steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .approach-steps::before { display: none; }
  .step { border-left: none; padding-left: 0; }
}

/* Tablet */
@media (max-width: 900px) {
  .section { padding: 5.5rem 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid  { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { gap: 3.5rem; }
  .why-grid      { gap: 3.5rem; }
  .contact-inner { gap: 3.5rem; }
}

/* Mobile */
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4.5rem 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding-top: 1.125rem; padding-bottom: 1.125rem; }

  .hero-content { padding-top: 6rem; padding-bottom: 4rem; }
  .hero-headline { font-size: clamp(2.75rem, 10vw, 4rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: .875rem; }
  .hero-divider, .hero-trust { display: none; }
  .hero-deco-ring { display: none; }

  .about-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats    { grid-template-columns: 1fr 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .results-grid   { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr; gap: 2rem; }
  .why-grid       { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-pillars    { grid-template-columns: 1fr 1fr; }
  .contact-inner  { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row       { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  .footer-copy { text-align: center; }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .about-stats  { grid-template-columns: 1fr; gap: 0; }
  .why-pillars  { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem 1.5rem; }
  .contact-form::before { left: 1.5rem; right: 1.5rem; }
  .services-grid { gap: 1rem; }
}
