/* ─────────────────────────────────────────
   OnPoint Advisors — Style Sheet
   Palette: Navy · Gold · White · Slate · Ice
   Type: Cormorant Garamond + Inter
──────────────────────────────────────────── */

:root {
  --navy:       #0B1F3A;
  --navy-mid:   #122948;
  --navy-light: #1E3A5F;
  --gold:       #C9A84C;
  --gold-light: #DEC06E;
  --gold-pale:  #F5EDD6;
  --white:      #FFFFFF;
  --ice:        #F7F8FA;
  --slate:      #4A5568;
  --slate-mid:  #718096;
  --border:     #E2E8F0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
  --radius: 4px;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Container ───────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

/* ── Typography helpers ───────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .eyebrow { justify-content: center; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-header p {
  font-size: 1.0625rem;
  color: var(--slate);
  max-width: 540px;
  margin: 0 auto;
}

/* ── Top Bar ─────────────────────────────── */
.topbar {
  background: var(--navy);
  padding: 9px 0;
  font-size: .8rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-contact {
  display: flex;
  gap: 24px;
}
.topbar-contact a,
.topbar-social a {
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.topbar-contact a:hover,
.topbar-social a:hover { color: var(--gold); }
.topbar-social {
  display: flex;
  gap: 14px;
}

/* ── Navbar ──────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo .site-logo-img {
  height: 48px;
  filter: brightness(0) invert(1);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 20px !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(201,168,76,.35); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Geometric grid signature element */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.08) 0%, transparent 70%);
  transform: rotate(-15deg);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(11,31,58,.6), transparent);
}

/* Precision lines — signature decorative element */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.25rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.7);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 40px;
  gap: 32px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll span {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  writing-mode: vertical-rl;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── About Strip ─────────────────────────── */
.about-strip {
  padding: 96px 0;
  background: var(--white);
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-strip-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-strip-text p {
  font-size: 1.0625rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 32px;
}
.about-strip-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.value-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all var(--transition);
}
.value-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.value-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.value-card p {
  font-size: .9375rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ── Services Section ────────────────────── */
.services {
  padding: 96px 0;
  background: var(--ice);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}
.service-card p {
  font-size: .9rem;
  color: var(--slate);
  line-height: 1.65;
  flex: 1;
}
.service-arrow {
  display: inline-block;
  color: var(--gold);
  font-size: 1.125rem;
  font-weight: 600;
  transition: transform var(--transition);
  margin-top: auto;
}
.service-card:hover .service-arrow { transform: translateX(6px); }
.services-cta { text-align: center; }

/* ── Industries ──────────────────────────── */
.industries {
  padding: 80px 0;
  background: var(--white);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.industry-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  background: var(--gold-pale);
}
.industry-icon {
  width: 60px;
  height: 60px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.industry-item:hover .industry-icon {
  background: var(--gold);
  color: var(--navy);
}
.industry-item span {
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
}

/* ── Quote Section ───────────────────────── */
.quote-section {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.quote-inner {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--gold);
  opacity: .15;
  line-height: 0.5;
  margin-bottom: 24px;
  display: block;
}
blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 28px;
}
.quote-attr {
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Contact CTA ─────────────────────────── */
.contact-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-text p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.65);
  max-width: 440px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── Footer ──────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo .logo-name,
.footer-logo .logo-tagline { color: var(--white); }
.footer-logo .logo-tagline { color: var(--gold); }
.footer-brand p {
  font-size: .9375rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 340px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.6);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.55);
}
.footer-contact-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: .7;
  color: var(--gold);
}
.footer-contact-list li a {
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-contact-list li a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: .8125rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a {
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

/* ── Reveal animations ───────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-child { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal-child.visible { opacity: 1; transform: none; }
.reveal-child:nth-child(2) { transition-delay: .1s; }
.reveal-child:nth-child(3) { transition-delay: .2s; }
.reveal-child:nth-child(4) { transition-delay: .3s; }
.reveal-child:nth-child(5) { transition-delay: .05s; }
.reveal-child:nth-child(6) { transition-delay: .1s; }
.reveal-child:nth-child(7) { transition-delay: .15s; }
.reveal-child:nth-child(8) { transition-delay: .2s; }
.reveal-child:nth-child(9) { transition-delay: .25s; }

/* ── Page Hero (inner pages) ─────────────── */
.page-hero {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,.65);
  max-width: 520px;
}

/* ── Services Page ───────────────────────── */
.services-page { padding: 80px 0; background: var(--white); }
.service-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.service-section:last-child { border-bottom: none; }
.service-section-header { position: sticky; top: 90px; }
.service-section-icon {
  width: 72px;
  height: 72px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-section-header h2 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-section-header p {
  font-size: .9375rem;
  color: var(--slate);
  line-height: 1.7;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: var(--ice);
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all var(--transition);
}
.service-list-item:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.service-list-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: .875rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-list-item span {
  font-size: .9375rem;
  color: var(--slate);
  line-height: 1.5;
}

/* ── About Page ──────────────────────────── */
.about-page { padding: 80px 0; }
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-content p {
  font-size: 1.0625rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.highlight-card {
  padding: 28px;
  background: var(--ice);
  border-radius: 6px;
  border-left: 4px solid var(--gold);
}
.highlight-card h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.highlight-card p {
  font-size: .9375rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ── Contact Page ────────────────────────── */
.contact-page { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 1.0625rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-text h5 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: 4px;
}
.contact-item-text a, .contact-item-text p {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}
.contact-item-text a:hover { color: var(--gold); }

.contact-form {
  background: var(--ice);
  border-radius: 8px;
  padding: 40px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--slate);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 16px;
  border-radius: var(--radius);
  font-size: .9375rem;
  margin-top: 16px;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .about-strip-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .service-section { grid-template-columns: 1fr; }
  .service-section-header { position: static; }
  .about-content { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar-contact { gap: 12px; }
  .topbar-contact a:first-child { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 200;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; width: 100%; }
  .nav-cta { width: 100%; text-align: center; justify-content: center; margin-left: 0; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .service-list { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { justify-content: center; }
  .topbar-contact a:last-child { font-size: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-child { transition: none; opacity: 1; transform: none; }
  .scroll-line { animation: none; }
}
