/* ================================================
   LANDEN CONSULTING — Single Page
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1f3c;
  --blue-mid:   #1a3a6b;
  --blue:       #2560a8;
  --blue-light: #4a85c8;
  --blue-pale:  #d6e5f5;
  --gray-dark:  #2e3a47;
  --gray-mid:   #5c6a7a;
  --gray-light: #9aaabb;
  --silver:     #e8edf2;
  --white:      #f7f9fc;
  --accent:     #c8a84b;

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(13, 31, 60, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99;
}

/* ─── NAV ──────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(13, 31, 60, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}

nav.scrolled {
  background: rgba(13, 31, 60, 0.98);
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  line-height: 1;
}

.nav-logo-mark {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.nav-logo-words {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-logo-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #fff;
  display: block;
  text-align: center;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
  display: block;
  text-align: center;
  margin-top: 0.1rem;
}

.nav-links {
  display: flex; gap: 2.5rem; list-style: none; align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.nav-active {
  color: #fff;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.2rem;
}
.nav-links a:active {
  color: var(--accent);
  transition: color 0s;
}

.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-light) !important; color: #fff !important; }

.nav-close { display: none; }
.nav-mobile-logo { display: none; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── HERO ─────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
}

#hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(37,96,168,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(26,58,107,0.4) 0%, transparent 60%);
}

.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-accent-bar {
  position: absolute;
  right: -80px; top: -40px;
  width: 480px; height: 600px;
  background: linear-gradient(135deg, rgba(37,96,168,0.18), rgba(200,168,75,0.08));
  transform: rotate(15deg);
  border-radius: 8px;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--accent);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--blue-pale);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
  max-width: 580px;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}

.btn-primary {
  padding: 0.85rem 2rem;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); }

.btn-ghost {
  padding: 0.85rem 2rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: #fff; color: #fff; transform: translateY(-2px); }

.hero-credentials {
  position: absolute;
  top: 50%; right: 5%;
  transform: translateY(-50%);
  display: flex; flex-direction: column;
  text-align: right;
  opacity: 0;
  animation: fadeUp 0.9s 1s forwards;
}

.credential {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(200,168,75,0.18);
}
.credential:last-child { border-bottom: none; }
.credential:first-child { padding-top: 0; }

.credential-text {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  line-height: 1.35;
  letter-spacing: 0.01em;
  transition: color 0.3s;
}
.credential:hover .credential-text {
  color: rgba(255,255,255,0.85);
}

/* ─── SECTION COMMONS ──────────────────────────────────── */
section { padding: 100px 5%; }

.section-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--blue);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 620px;
  line-height: 1.85;
}

/* ─── SERVICES ─────────────────────────────────────────── */
#services { background: var(--white); }

.services-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--silver);
  border: 1px solid var(--silver);
  border-radius: 6px;
  overflow: hidden;
}

.service-card {
  background: #fff;
  padding: 2.75rem 2.5rem;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--blue);
  transition: width 0.35s ease;
}
.service-card:hover { background: #f0f5fb; }
.service-card:hover::after { width: 100%; }

.service-icon {
  width: 48px; height: 48px;
  background: var(--blue-pale);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.25s;
}
.service-card:hover .service-icon { background: var(--blue); }
.service-icon svg { transition: stroke 0.25s; }
.service-card:hover .service-icon svg { stroke: #fff; }

.service-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.75;
}

.service-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-top: 1.25rem;
}
.tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  background: var(--silver);
  color: var(--gray-mid);
  border-radius: 2px;
}

/* ─── INDUSTRIES ───────────────────────────────────────── */
#industries {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#industries::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 90% at 90% 10%, rgba(37,96,168,0.25), transparent 60%);
}

.industries-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}

.industries-left .section-eyebrow { color: var(--accent); }
.industries-left .section-eyebrow::before { background: var(--accent); }
.industries-left .section-title { color: #fff; }
.industries-left .section-lead { color: rgba(255,255,255,0.55); }

.industries-list {
  list-style: none;
  margin-top: 2rem;
}
.industries-list li {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  cursor: default;
}
.industries-list li:hover { color: #fff; }
.industries-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
}

.clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.client-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  transition: background 0.2s, border-color 0.2s;
}
.client-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
}

.client-type {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 0.5rem;
}
.client-desc {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.35;
}

/* ─── RESULTS ──────────────────────────────────────────── */
#results {
  background: var(--silver);
}

.results-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 5rem;
}

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

.result-card {
  background: #fff;
  border: 1px solid var(--silver);
  border-radius: 6px;
  padding: 2rem 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.result-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--blue-pale);
}

.result-desc {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.75;
}

.result-desc strong {
  color: var(--navy);
  font-weight: 600;
}

/* ─── APPROACH ─────────────────────────────────────────── */
#approach {
  background: var(--white);
}

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

.approach-steps {
  display: flex; flex-direction: column; gap: 0;
}

.approach-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.approach-step:first-child { padding-top: 0; }
.approach-step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--blue-pale);
  line-height: 1;
  padding-top: 0.1rem;
  transition: color 0.2s;
}
.approach-step:hover .step-num { color: var(--blue); }

.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--gray-mid);
  line-height: 1.7;
}

.approach-highlights {
  background: var(--navy);
  border-radius: 8px;
  padding: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.approach-highlights::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(37,96,168,0.25);
}

.highlight-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
}

.highlight-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.85rem;
}
.highlight-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.highlight-list li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.highlight-prose {
  display: flex; flex-direction: column; gap: 0.85rem;
}
.highlight-prose p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.approach-quote {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  position: relative;
}

/* ─── ABOUT ────────────────────────────────────────────── */
#about { background: #fff; }

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

.about-photo-text {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 0.5rem;
}

.about-photo {
  width: 175px;
  min-width: 175px;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(13, 31, 60, 0.3), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-body {
  font-size: 1rem;
  color: var(--gray-mid);
  line-height: 1.9;
}
.about-body p + p { margin-top: 1.25rem; }

.about-credentials {
  margin-top: 2.5rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.cred-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--blue-pale);
  color: var(--blue);
  border-radius: 2px;
}

.about-aside {
  background: var(--navy);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  color: #fff;
}

.aside-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 2rem;
}

.differentiator {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.differentiator:last-child { border-bottom: none; }

.diff-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--blue-light);
  margin-bottom: 0.35rem;
}
.diff-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.6;
}

/* ─── MEDIA ────────────────────────────────────────────── */
#media {
  background: var(--silver);
}

.media-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 5rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.media-card {
  background: #fff;
  border: 1px solid var(--silver);
  border-radius: 6px;
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.media-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.media-source {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--blue-pale);
}

.media-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.media-date {
  font-size: 0.78rem;
  color: var(--gray-light);
}

.media-card a {
  text-decoration: none;
  color: inherit;
}

.media-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--blue) !important;
  transition: color 0.2s;
}
.media-link:hover {
  color: var(--blue-light) !important;
}

.media-player {
  margin-top: 1rem;
}

.media-player audio {
  width: 100%;
  height: 40px;
  border-radius: 9999px;
}

/* ─── CONTACT ──────────────────────────────────────────── */
#contact {
  background: var(--blue-mid);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 10% 50%, rgba(13,31,60,0.6), transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 80%, rgba(37,96,168,0.4), transparent 60%);
}

.contact-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact-left .section-eyebrow { color: var(--accent); }
.contact-left .section-eyebrow::before { background: var(--accent); }
.contact-left .section-title { color: #fff; }
.contact-left .section-lead { color: rgba(255,255,255,0.55); }

.contact-info {
  margin-top: 2.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.contact-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item a:hover { color: #fff; }
.contact-item svg { flex-shrink: 0; }

form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 2.75rem;
}

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

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

label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

input, select, textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.25); }
input:focus, select:focus, textarea:focus {
  border-color: var(--blue-light);
  background: rgba(255,255,255,0.1);
}
select option { background: var(--navy); color: #fff; }
textarea { resize: vertical; min-height: 110px; }

.form-submit {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.95rem;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--blue-light); transform: translateY(-1px); }

/* ─── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 3rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  line-height: 1;
}

.footer-mark {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-center {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

.footer-links {
  display: flex; gap: 1.75rem; list-style: none;
}
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }

.grecaptcha-badge { visibility: hidden; }

.recaptcha-notice {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  margin-top: 1rem;
  line-height: 1.6;
}
.recaptcha-notice a {
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
}

/* ─── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .services-header,
  .results-header,
  .media-header,
  .industries-inner,
  .approach-inner,
  .about-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }

  .about-photo-text {
    display: block;
  }
  .about-photo {
    float: left;
    width: 125px;
    min-width: 125px;
    height: 155px;
    margin: 0.25rem 1.25rem 0.75rem 0;
    box-shadow: 0 4px 12px rgba(13, 31, 60, 0.15);
  }

  .clients-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-credentials { display: none; }

  .nav-links {
    position: fixed;
    top: calc(env(safe-area-inset-top) + 0.75rem);
    right: 0.75rem;
    left: 0.75rem;
    bottom: auto;
    width: auto;
    max-height: calc(100dvh - env(safe-area-inset-top) - 1.5rem);
    background: linear-gradient(180deg, rgba(13, 31, 60, 0.985) 0%, rgba(7, 12, 21, 0.995) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1.5rem;
    box-shadow: 0 24px 80px rgba(0,0,0,0.45);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.75rem 2rem;
    gap: 0.15rem;
    z-index: 199;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(calc(100% + 1.5rem));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease,
                visibility 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0.35rem 0;
  }
  .nav-links li:first-child { border-bottom: none; padding: 0; }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links li:nth-last-child(2) { border-bottom: none; }
  .nav-links li:nth-child(2) { padding-top: 0.5rem; }

  .nav-links a {
    font-size: 1.1rem;
    padding: 1.25rem 0.75rem;
    border-bottom: none;
  }

  .nav-links .nav-cta {
    display: block;
    border-bottom: none;
    margin-top: 0.75rem;
    text-align: center;
    width: 100%;
    padding: 0.65rem 1.5rem;
    font-size: 0.75rem;
    border-radius: 6px;
  }

  .nav-mobile-logo {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    padding-top: 1.75rem;
    border-top: none;
    border-bottom: none !important;
  }
  .nav-mobile-logo-img {
    height: 44px;
    opacity: 0.2;
    filter: brightness(0) invert(1);
  }

  .nav-toggle { display: flex; }

  .nav-close {
    display: flex;
    align-self: flex-end;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    padding: 0;
    margin-bottom: 0.5rem;
    position: relative;
  }
  .nav-close span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
  }
  .nav-close span:first-child { transform: rotate(45deg); }
  .nav-close span:last-child  { transform: rotate(-45deg); }

  #hero { min-height: auto; padding: calc(72px + 3rem) 5% 4rem; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { text-align: center; }

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