/* ─── Custom Properties ─────────────────────────────────── */
:root {
  /* Customer theme update */
  --bg-primary:  #05070B;
  --bg-secondary: #0A1220;
  --card-bg:     #111827;
  --gold:        #D4A24C;
  --gold-bright: #F0C36A;
  --white:       #F8FAFC;
  --text-muted:  #B6BDC9;
  --border-gold: #7A5A24;
  --hover-bg:    #132238;
  --button-gold: #C9973E;
  --button-hover: #E6B85C;

  /* Mapped legacy aliases */
  --navy:        var(--bg-primary);
  --navy-mid:    var(--card-bg);
  --navy-light:  var(--hover-bg);
  --navy-darker: #030508;
  --gold-light:  var(--gold-bright);
  --gold-pale:   rgba(212,162,76,.15);
  --off-white:   var(--bg-secondary);
  --gray-100:    rgba(248,250,252,.06);
  --gray-300:    rgba(248,250,252,.18);
  --gray-500:    var(--text-muted);
  --gray-700:    #C7CDD9;
  --text:        var(--white);

  --radius:      6px;
  --radius-lg:   12px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.35);
  --shadow-md:   0 6px 24px rgba(0,0,0,.45);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.55);

  --max-w:       1160px;
  --nav-h:       68px;
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ────────────────────────────────────────── */
.display {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: var(--white);
}
p { line-height: 1.75; color: var(--gray-700); }

/* ─── Layout helpers ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 2rem;
}
section { position: relative; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .22s, color .22s, border-color .22s, transform .15s, box-shadow .22s;
}
.btn:hover { 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);
  box-shadow: 0 8px 24px rgba(192,148,76,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-navy:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ─────────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(10,15,26,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192,148,76,.20);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.nav__logo-mark {
  width: 34px;
  height: 34px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav__logo-mark svg { width: 18px; height: 18px; }
.nav__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.nav__logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: .65rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: color .2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .2s;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  padding: .55rem 1.25rem;
  font-size: .82rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__mobile {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(192,148,76,.15);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.25rem;
}
.nav__mobile a {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  font-weight: 500;
}
.nav__mobile.open { display: flex; }

/* ─────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background-image: url('../assets/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  /* darker on the left where text sits, brighter on the right to show the skyline */
  background: linear-gradient(95deg, rgba(5,7,11,0.78) 0%, rgba(5,7,11,0.55) 45%, rgba(5,7,11,0.25) 100%);
}
@media (max-width: 768px) {
  /* on narrow viewports text spans the full width — keep a uniform mid overlay */
  .hero__bg::before {
    background: linear-gradient(180deg, rgba(5,7,11,0.65) 0%, rgba(5,7,11,0.55) 100%);
  }
}
.hero__bg::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(192,148,76,.10) 0%, transparent 70%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 6rem;
  max-width: 760px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.75rem;
}
.hero__eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.hero__eyebrow-text {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero::after {
  /* removed: section below is now also dark, no transition needed */
  display: none;
}

/* ─────────────────────────────────────────────────────────
   WHO WE ARE
───────────────────────────────────────────────────────── */
.about {
  background: var(--navy);
  padding: 7rem 0 6rem;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__left .section-label { margin-bottom: .75rem; display: block; }
.about__left .section-title { margin-bottom: 1.5rem; }
.about__left p { font-size: 1.05rem; }
.about__divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 1.75rem 0;
  border-radius: 2px;
}
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-card {
  background: var(--navy-mid);
  border: 1px solid rgba(192,148,76,.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.stat-card:hover { border-color: rgba(192,148,76,.45); }
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stat-card__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.stat-card__icon svg { width: 22px; height: 22px; color: var(--gold); }
.stat-card__value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-card__label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: .04em;
}

/* ─────────────────────────────────────────────────────────
   WHAT WE DO
───────────────────────────────────────────────────────── */
.services {
  background: var(--navy-darker);
  padding: 6rem 0;
}
.services__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services__header .section-label { display: block; margin-bottom: .75rem; }
.services__header .section-title { margin-bottom: 1rem; }
.services__header p { max-width: 520px; margin-inline: auto; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--navy-mid);
  border: 1px solid rgba(192,148,76,.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.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 .3s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(192,148,76,.45);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 50px;
  height: 50px;
  background: var(--gold-pale);
  border: 1px solid rgba(192,148,76,.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card__icon svg { width: 24px; height: 24px; color: var(--gold); }
.service-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .6rem;
}
.service-card p { font-size: .9rem; line-height: 1.65; }
.services__row2 {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.services__row2 .service-card { width: calc(33.333% - .5rem); }

/* ─────────────────────────────────────────────────────────
   HOW WE WORK
───────────────────────────────────────────────────────── */
.process {
  background: var(--navy);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.process__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/global.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.process__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5,7,11,0.60);
}
@media (max-width: 768px) {
  .process__bg::before {
    background: rgba(5,7,11,0.72);
  }
}
.process__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.process__header .section-label { margin-bottom: .75rem; display: block; }
.process__header .section-title { color: var(--white); }
.process__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(192,148,76,.3));
}
.process-step {
  text-align: center;
  padding: 0 1.5rem;
}
.process-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}
.process-step__num svg { width: 28px; height: 28px; color: var(--gold); }
.process-step__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.process-step__title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

/* ─────────────────────────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────────────────────────── */
.why {
  background: var(--navy);
  padding: 6rem 0;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.why__left .section-label { display: block; margin-bottom: .75rem; }
.why__left .section-title { margin-bottom: 1rem; }
.why__left p { font-size: 1rem; margin-bottom: 2rem; }
.why__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: var(--navy-mid);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(192,148,76,.15);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.why-item:hover { border-color: rgba(192,148,76,.45); }
.why-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-item__icon {
  width: 28px;
  height: 28px;
  background: var(--gold-pale);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.why-item__icon svg { width: 14px; height: 14px; color: var(--gold); }
.why-item__text {
  font-size: .88rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.45;
}

/* ─────────────────────────────────────────────────────────
   INDUSTRIES
───────────────────────────────────────────────────────── */
.industries {
  background: var(--navy-darker);
  padding: 4rem 0;
  border-top: 1px solid rgba(192,148,76,.12);
  border-bottom: 1px solid rgba(192,148,76,.12);
}
.industries__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
}
.industries__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-right: .5rem;
}
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.25rem;
  border: 1.5px solid rgba(192,148,76,.35);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--white);
  background: var(--navy-mid);
  transition: border-color .2s, background .2s, color .2s;
  cursor: default;
}
.industry-pill:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--gold-light);
}

/* ─────────────────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────────────────── */
.cta-band {
  background: url('../assets/cta-blackboard.jpg') center center / cover no-repeat;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.78) 0%, rgba(22,44,68,.72) 100%);
  pointer-events: none;
}
.cta-band__inner { position: relative; z-index: 1; }
.cta-band__title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-band p {
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* ─────────────────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────────────────── */
.contact {
  background: var(--navy);
  padding: 6rem 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact__info .section-label { display: block; margin-bottom: .75rem; }
.contact__info .section-title { margin-bottom: 1rem; }
.contact__info > p { font-size: 1rem; margin-bottom: 2rem; }
.contact__details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail__icon {
  width: 42px;
  height: 42px;
  background: var(--gold-pale);
  border: 1px solid rgba(192,148,76,.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail__icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-detail__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: .2rem;
}
.contact-detail__value { font-size: .95rem; font-weight: 500; color: var(--white); }

/* Form */
.contact-form {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212,162,76,.18);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.1rem;
}
.form-group:last-of-type { margin-bottom: 0; }
label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
}
input, textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(248,250,252,.12);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  color: var(--white);
  background: var(--bg-secondary);
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
input:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,162,76,.18);
  background: var(--bg-primary);
}
textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 1.5rem; width: 100%; justify-content: center; }
.form-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.form-feedback {
  font-size: .88rem;
  font-weight: 500;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  display: none;
}
.form-feedback.success {
  display: block;
  background: rgba(52,211,153,.12);
  border: 1px solid rgba(52,211,153,.35);
  color: #6ee7b7;
}
.form-feedback.error {
  display: block;
  background: rgba(248,113,113,.10);
  border: 1px solid rgba(248,113,113,.30);
  color: #fca5a5;
}

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-darker);
  padding: 3rem 0 2rem;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.5rem;
}
.footer__links {
  display: flex;
  gap: 2rem;
}
.footer__links a {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: color .2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__copy {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* ─────────────────────────────────────────────────────────
   SCROLL TO TOP
───────────────────────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(192,148,76,.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s, box-shadow .2s;
  pointer-events: none;
}
#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#scrollTop:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 24px rgba(192,148,76,.55);
  transform: translateY(-3px);
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__row2 { flex-direction: row; }
  .services__row2 .service-card { width: calc(50% - .75rem); }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .process__steps::before { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__content { padding-block: 4rem; }
  .hero::after { height: 48px; }

  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }

  .services__grid { grid-template-columns: 1fr; }
  .services__row2 { flex-direction: column; }
  .services__row2 .service-card { width: 100%; }

  .process__steps { grid-template-columns: 1fr; gap: 2rem; }

  .why__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why__items { grid-template-columns: 1fr; }

  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }

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

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; flex-wrap: wrap; gap: 1.25rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.9rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .about__stats { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────
   ANIMATIONS
   1) Reveal-on-scroll (fade-up) with staggered children
   2) Sticky / condensed nav state after scroll
───────────────────────────────────────────────────────── */
html.js .stat-card,
html.js .service-card,
html.js .process-step,
html.js .why-item,
html.js .industry-pill,
html.js .contact-detail,
html.js .contact-form,
html.js .hero__eyebrow,
html.js .hero__title,
html.js .hero__sub,
html.js .hero__actions,
html.js .section-label,
html.js .section-title,
html.js .about__divider {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1),
              transform .8s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
html.js .is-visible {
  opacity: 1;
  transform: none;
}

/* Staggered children inside grouped containers */
html.js .about__stats .stat-card:nth-child(2) { transition-delay: 80ms; }
html.js .about__stats .stat-card:nth-child(3) { transition-delay: 160ms; }
html.js .about__stats .stat-card:nth-child(4) { transition-delay: 240ms; }
html.js .services__grid .service-card:nth-child(2) { transition-delay: 100ms; }
html.js .services__grid .service-card:nth-child(3) { transition-delay: 200ms; }
html.js .services__row2 .service-card:nth-child(2) { transition-delay: 100ms; }
html.js .process__steps .process-step:nth-child(2) { transition-delay: 120ms; }
html.js .process__steps .process-step:nth-child(3) { transition-delay: 240ms; }
html.js .process__steps .process-step:nth-child(4) { transition-delay: 360ms; }
html.js .why__items .why-item:nth-child(2) { transition-delay: 80ms; }
html.js .why__items .why-item:nth-child(3) { transition-delay: 160ms; }
html.js .why__items .why-item:nth-child(4) { transition-delay: 240ms; }
html.js .why__items .why-item:nth-child(5) { transition-delay: 320ms; }
html.js .why__items .why-item:nth-child(6) { transition-delay: 400ms; }
html.js .industries__inner .industry-pill:nth-child(2) { transition-delay: 60ms; }
html.js .industries__inner .industry-pill:nth-child(3) { transition-delay: 120ms; }
html.js .industries__inner .industry-pill:nth-child(4) { transition-delay: 180ms; }
html.js .industries__inner .industry-pill:nth-child(5) { transition-delay: 240ms; }
html.js .industries__inner .industry-pill:nth-child(6) { transition-delay: 300ms; }

/* Hero stagger so headline-eyebrow-sub-CTAs cascade in on load */
html.js .hero__eyebrow { transition-delay: 100ms; }
html.js .hero__title   { transition-delay: 200ms; }
html.js .hero__sub     { transition-delay: 320ms; }
html.js .hero__actions { transition-delay: 460ms; }

/* Respect users who prefer no motion (iOS/Android setting) */
@media (prefers-reduced-motion: reduce) {
  html.js .stat-card,
  html.js .service-card,
  html.js .process-step,
  html.js .why-item,
  html.js .industry-pill,
  html.js .contact-detail,
  html.js .contact-form,
  html.js .hero__eyebrow,
  html.js .hero__title,
  html.js .hero__sub,
  html.js .hero__actions,
  html.js .section-label,
  html.js .section-title,
  html.js .about__divider {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Sticky / condensed nav after a short scroll */
.nav {
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  background: rgba(5, 7, 11, 0.95);
  border-bottom-color: rgba(192,148,76,.42);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* Skip to main content – visible on focus only */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: #C9A84C;
  color: #0D1B2A;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #0D1B2A;
  outline-offset: 2px;
}

/* Ensure industries list renders identically to original spans */
.industries__inner ul[role="list"] {
  list-style: none;
  margin: 0;
  padding: 0;
  display: contents;
}
.industries__inner li.industry-pill {
  display: inline-block;
}
