:root {
  --bg: #f3f5f7;
  --bg-soft: #e8edf1;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-dark: #111519;
  --text: #0f1720;
  --muted: #60707e;
  --line: rgba(15, 23, 32, 0.09);
  --accent: #132316;
  --accent-2: #233c27;
  --shadow: 0 24px 60px rgba(7, 21, 31, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(35, 60, 39, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fbfc 0%, var(--bg) 58%, #edf2f5 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100%, 780px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(243, 245, 247, 0.72);
  border-bottom: 1px solid rgba(15, 23, 32, 0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.brand strong,
.site-nav a,
.eyebrow,
h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
}

.brand strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.08;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.site-nav a,
.nav-dropdown > a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: #24303b;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.site-nav a:hover,
.site-nav a.active,
.nav-dropdown > a:hover,
.nav-dropdown > a.active {
  background: rgba(13, 92, 99, 0.1);
  color: var(--accent);
}

.nav-dropdown {
  position: relative;
  z-index: 25;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-dropdown > a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.15rem);
  left: 0;
  min-width: 220px;
  display: grid;
  gap: 0.3rem;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 32, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 30;
}

.dropdown-menu a {
  border-radius: 16px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  background: var(--surface-strong);
  border-radius: 16px;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  transition: transform 220ms ease, opacity 220ms ease;
}

.hero,
.page-hero {
  position: relative;
  overflow: clip;
}

.hero {
  padding: 5.5rem 0 3rem;
}

.hero-featured {
  padding-top: 0;
  padding-bottom: 0;
}

.page-hero {
  padding: 5rem 0 1rem;
}

.about-page .page-hero {
  position: relative;
}

.about-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(35, 60, 39, 0.2), transparent 32%),
    radial-gradient(circle at right center, rgba(19, 35, 22, 0.12), transparent 24%);
  pointer-events: none;
}

.hero-grid,
.feature-layout,
.split-band,
.contact-layout {
  display: grid;
  gap: 2rem;
}


.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.hero-stage {
  position: relative;
  min-height: calc(100vh - 95px);
  overflow: hidden;
  isolation: isolate;
}

.hero-stage-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 14, 11, 0.82) 0%, rgba(9, 14, 11, 0.68) 42%, rgba(9, 14, 11, 0.34) 72%, rgba(9, 14, 11, 0.18) 100%),
    linear-gradient(180deg, rgba(19, 35, 22, 0.18), rgba(19, 35, 22, 0.32));
}

.hero-stage-content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 95px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4rem);
  color: #f3f7f4;
}

.hero-stage .hero-copy {
  max-width: 760px;
}

.hero-stage .eyebrow,
.hero-stage .text-rotator,
.hero-stage .hero-copy h1,
.hero-stage .hero-copy p,
.hero-stage .hero-metrics strong,
.hero-stage .hero-metrics span {
  color: #f3f7f4;
}

.hero-stage .eyebrow::before {
  background: rgba(243, 247, 244, 0.8);
}

.hero-stage .text-rotator {
  color: #dcebdd;
}

.hero-stage .hero-text {
  max-width: 760px;
  color: rgba(243, 247, 244, 0.86);
}

.hero-stage .hero-metrics {
  margin-top: 2rem;
  max-width: 760px;
}

.hero-stage .hero-metrics article {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.text-rotator {
  display: inline-block;
  position: relative;
  color: var(--accent);
}

.hero-text,
.section-heading p,
.feature-copy p,
.service-card p,
.about-card p,
.timeline-row p,
.contact-panel p,
.split-band p,
.cta-banner p,
.page-hero p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), #1f4c2a);
  box-shadow: 0 18px 35px rgba(19, 35, 22, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(15, 23, 32, 0.1);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-metrics article,
.summary-card,
.feature-panel,
.service-card,
.about-card,
.contact-panel,
.contact-form,
.timeline-row,
.cta-banner,
.signal-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-metrics article {
  padding: 1.2rem;
  border-radius: var(--radius-md);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}

.orb-one {
  inset: 8% auto auto 6%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(35, 60, 39, 0.35), transparent 68%);
}

.orb-two {
  inset: auto 3% 10% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(19, 35, 22, 0.28), transparent 70%);
}

.grid-panel {
  position: absolute;
  inset: 8% 4% 6% 10%;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.18)),
    linear-gradient(180deg, rgba(19, 35, 22, 0.08), transparent);
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.grid-line {
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: rgba(19, 35, 22, 0.12);
}

.grid-line:nth-child(1) {
  top: 20%;
}

.grid-line:nth-child(2) {
  top: 40%;
}

.grid-line:nth-child(3) {
  top: 60%;
}

.grid-line:nth-child(4) {
  top: 80%;
}

.signal-card {
  position: absolute;
  border-radius: 26px;
  padding: 1.4rem;
}

.signal-card span,
.card-tag,
.panel-number {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-family: "Space Grotesk", sans-serif;
}

.signal-main {
  inset: 16% 18% auto auto;
  width: min(340px, 76%);
}

.signal-main strong,
.signal-small strong,
.summary-card h3,
.feature-panel h3,
.service-card h2,
.about-card h2,
.contact-panel h2,
.section-heading h2,
.cta-banner h2 {
  display: block;
  margin-top: 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.2;
}

.signal-small {
  inset: auto auto 12% 0;
  width: 240px;
}

.signal-small strong {
  font-size: 1rem;
  margin-top: 0.7rem;
}

.floating-card {
  animation: drift 6s ease-in-out infinite;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.section {
  padding: 2.5rem 0 5rem;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 1rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.1));
  border-top: 1px solid rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(15, 23, 32, 0.04);
  z-index: -1;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.selected-reach-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.reach-logo-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 32, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 249, 0.92)),
    radial-gradient(circle at top left, rgba(35, 60, 39, 0.12), transparent 58%);
  box-shadow: 0 18px 42px rgba(7, 21, 31, 0.08);
  overflow: hidden;
}

.reach-logo-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(35, 60, 39, 0.3));
}

.reach-logo-card img {
  width: 100%;
  max-width: 144px;
  max-height: 58px;
  object-fit: contain;
  filter: saturate(0.96) contrast(1.02);
}

.reach-logo-card-text {
  padding-inline: 1rem;
}

.reach-logo-card-text span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--accent);
}

.section-heading h2 {
  margin: 0.6rem 0 0.8rem;
}

.process-band {
  display: grid;
  gap: 1.8rem;
}

.process-visual {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  position: relative;
  padding: 1.4rem 1.2rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 32, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 247, 248, 0.92)),
    radial-gradient(circle at top left, rgba(35, 60, 39, 0.12), transparent 62%);
  box-shadow: 0 18px 38px rgba(7, 21, 31, 0.08);
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 1.7rem;
  left: calc(100% - 0.2rem);
  width: 1.4rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(19, 35, 22, 0.4), rgba(19, 35, 22, 0.1));
}

.process-step:last-child::before {
  display: none;
}

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--accent);
  color: #f7faf8;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.process-step h3 {
  margin: 1rem 0 0.65rem;
  font-size: 1.1rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.summary-grid,
.feature-stack,
.cards-2x2,
.about-layout,
.stats-grid {
  display: grid;
  gap: 1.25rem;
}

.accomplishment-columns,
.client-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.accomplishment-list,
.client-list-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}

.accomplishment-list h2,
.client-list-card h2 {
  margin: 0 0 0.9rem;
}

.accomplishment-list ul,
.client-list-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.75;
}

.accomplishment-list li,
.client-list-card li {
  margin-top: 0.35rem;
}

.summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.summary-card,
.feature-panel,
.service-card,
.about-card,
.contact-panel,
.contact-form,
.timeline-row,
.stat-card {
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}

.summary-card {
  position: relative;
  overflow: hidden;
}

.summary-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(35, 60, 39, 0.18), transparent 70%);
  transition: transform 260ms ease;
}

.summary-card:hover::after {
  transform: scale(1.15);
}

.summary-card p,
.feature-panel p,
.stat-card span {
  color: var(--muted);
  line-height: 1.65;
}

.stat-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.stat-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  margin-bottom: 0.7rem;
  color: var(--accent);
}

.card-link {
  display: inline-block;
  margin-top: 1.1rem;
  color: var(--accent);
  font-weight: 600;
}

.card-button {
  margin-top: 1.2rem;
  width: fit-content;
  min-height: 46px;
  padding: 0.8rem 1.25rem;
}

.feature-layout,
.split-band,
.contact-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.contact-side-stack {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.feature-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-top: 0.8rem;
  color: var(--text);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.feature-stack {
  grid-template-columns: 1fr;
}

.feature-panel:nth-child(2) {
  transform: translateX(2.2rem);
}

.cards-2x2,
.about-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card h2,
.about-card h2,
.contact-panel h2 {
  margin-bottom: 0.8rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  align-items: center;
}

.timeline-row span,
.contact-items span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.contact-items {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-items a {
  color: var(--accent);
  font-weight: 400;
}

.contact-items p {
  margin: 0.4rem 0 0;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.form-success-banner {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(19, 35, 22, 0.14);
  background:
    linear-gradient(180deg, rgba(235, 245, 237, 0.96), rgba(246, 250, 247, 0.96)),
    radial-gradient(circle at top left, rgba(35, 60, 39, 0.14), transparent 62%);
  color: var(--accent);
  box-shadow: 0 16px 34px rgba(7, 21, 31, 0.08);
}

.form-success-banner strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.form-success-banner span {
  color: #36503b;
  line-height: 1.65;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(15, 23, 32, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(19, 35, 22, 0.45);
  box-shadow: 0 0 0 4px rgba(19, 35, 22, 0.1);
}

.contact-form-embed {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  min-height: 760px;
}

.contact-form-embed iframe {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
  background: transparent;
}

.map-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15, 23, 32, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.map-card-compact iframe {
  height: 260px;
}

.leadership-band,
.executive-layout,
.service-visual-band,
.team-gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
}

.service-visual-band-stacked {
  grid-template-columns: 1fr;
  align-items: start;
}

.leadership-photo,
.executive-photo,
.photo-mosaic figure,
.service-visual-grid figure,
.team-gallery-main,
.team-gallery-side figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.leadership-photo img,
.executive-photo img,
.photo-mosaic img,
.service-visual-grid img,
.team-gallery img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 1.1rem;
}

.mosaic-large {
  grid-row: span 2;
  min-height: 620px;
}

.mosaic-small {
  min-height: 300px;
}

.service-visual-copy h2 {
  margin: 0.6rem 0 0.9rem;
}

.service-visual-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.service-visual-grid,
.team-gallery-side {
  display: grid;
  gap: 1rem;
}

.service-visual-band-stacked .service-visual-copy {
  max-width: 720px;
}

.service-visual-band-stacked .service-visual-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-visual-grid figure:first-child {
  min-height: 280px;
}

.service-visual-grid figure:last-child {
  min-height: 280px;
}

.team-gallery-main {
  min-height: auto;
  align-self: start;
}

.team-gallery-side figure {
  min-height: 252px;
}

.leadership-copy,
.executive-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
}

.leadership-copy {
  padding: 1.8rem;
}

.leadership-copy h2 {
  margin: 0.6rem 0 0.9rem;
}

.leadership-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.mini-profile-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.mini-profile-list article {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 32, 0.06);
}

.mini-profile-list strong,
.executive-card h3 {
  display: block;
  font-family: "Space Grotesk", sans-serif;
}

.mini-profile-list span {
  color: var(--muted);
}

.executive-cards,
.contact-executives {
  display: grid;
  gap: 1.25rem;
}

.executive-card {
  padding: 1.6rem;
}

.executive-card h3 {
  margin: 0.75rem 0;
  font-size: 1.45rem;
}

.executive-card p {
  color: var(--muted);
  line-height: 1.65;
}

.executive-card a {
  display: block;
  margin-top: 0.55rem;
  color: var(--accent);
  font-weight: 600;
}

.about-page .about-card,
.about-page .timeline-row,
.about-page .executive-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(19, 35, 22, 0.08);
}

.about-page .about-card::before,
.about-page .timeline-row::before,
.about-page .executive-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(35, 60, 39, 0.24));
}

.about-page .about-card::after,
.about-page .executive-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(35, 60, 39, 0.12), transparent 72%);
  pointer-events: none;
}

.about-page .section-heading .eyebrow,
.about-page .timeline-row span,
.about-page .executive-card .card-tag {
  color: var(--accent);
}

.about-page .executive-photo {
  border: 1px solid rgba(19, 35, 22, 0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
  align-items: start;
  grid-auto-flow: dense;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 32, 0.07);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(7, 21, 31, 0.08);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery-card-wide {
  grid-column: span 2;
}

.gallery-card-wide img {
  aspect-ratio: 16 / 10;
}

.gallery-card-tall img {
  aspect-ratio: 3 / 4;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: var(--radius-xl);
  padding: 1.8rem;
}

.accomplishment-cta {
  margin-top: 2rem;
}

.cta-banner h2 {
  margin: 0.5rem 0 0;
}

.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 1.4rem;
  background:
    linear-gradient(180deg, rgba(19, 35, 22, 0.96), rgba(11, 18, 13, 0.98)),
    radial-gradient(circle at top right, rgba(35, 60, 39, 0.28), transparent 28%);
  color: #eef3ef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.85fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.footer-brand img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(19, 35, 22, 0.35);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-column h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
}

.footer-column p,
.footer-contact p {
  margin: 0;
  color: rgba(238, 243, 239, 0.78);
  line-height: 1.75;
  font-size: 0.94rem;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(238, 243, 239, 0.84);
  font-size: 0.94rem;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-legal-link:hover {
  color: #ffffff;
}

.footer-contact {
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(238, 243, 239, 0.72);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(238, 243, 239, 0.72);
  cursor: pointer;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(8, 12, 9, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-window {
  position: relative;
  width: min(760px, 100%);
  max-height: min(82vh, 900px);
  overflow: auto;
  padding: 1.8rem;
  border-radius: 28px;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 30px 80px rgba(7, 21, 31, 0.28);
}

.modal-window h2 {
  margin: 0 0 1rem;
}

.modal-body {
  display: grid;
  gap: 1rem;
}

.modal-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(19, 35, 22, 0.08);
  color: var(--accent);
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 3;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 240ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .feature-layout,
  .summary-grid,
  .cards-2x2,
  .about-layout,
  .accomplishment-columns,
  .client-columns,
  .split-band,
  .contact-layout,
  .leadership-band,
  .executive-layout,
  .service-visual-band,
  .team-gallery,
  .photo-mosaic {
    grid-template-columns: 1fr;
  }

  .feature-panel:nth-child(2) {
    transform: none;
  }

  .feature-copy {
    padding: 1.5rem;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-stage,
  .hero-stage-content {
    min-height: 720px;
  }

  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card-wide {
    grid-column: span 2;
  }

  .process-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step:nth-child(2)::before,
  .process-step:nth-child(4)::before {
    display: none;
  }

  .selected-reach-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .mosaic-large,
  .mosaic-small,
  .team-gallery-main,
  .team-gallery-side figure,
  .service-visual-grid figure {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.4rem;
    padding: 0.8rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-featured {
    padding-top: 0;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .hero-metrics,
  .summary-grid,
  .selected-reach-grid,
  .process-visual,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card-wide {
    grid-column: span 1;
  }

  .process-step::before {
    display: none;
  }

  .hero-stage,
  .hero-stage-content {
    min-height: 640px;
  }

  .signal-main {
    inset: 12% 8% auto auto;
    width: min(300px, 80%);
  }

  .signal-small {
    left: 4%;
    bottom: 10%;
  }

  .timeline-row,
  .cta-banner,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand span {
    font-size: 0.76rem;
  }

  .nav-dropdown {
    display: grid;
    gap: 0.3rem;
  }

  .nav-dropdown > a::after {
    margin-left: auto;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 0.9rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
