:root {
  --black: #070907;
  --charcoal: #111611;
  --charcoal-2: #182019;
  --white: #f7faf5;
  --muted: #b9c4b8;
  --line: rgba(247, 250, 245, 0.16);
  --orange: #f0ad45;
  --orange-soft: #ffd28a;
  --green: #086334;
  --green-bright: #85c657;
  --green-soft: #b8ea7a;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --scroll-progress: 0;
  --ambient-strength: 0.22;
  --cursor-dx: 0px;
  --cursor-dy: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #030403 0%, #071008 34%, #0d170f 66%, #142015 100%);
  color: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  isolation: isolate;
  letter-spacing: 0;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  inset: -18vmax;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

body::before {
  animation: atmosphereShift 24s ease-in-out infinite alternate;
  background:
    linear-gradient(118deg, transparent 8%, rgba(133, 198, 87, 0.08) 34%, transparent 52%),
    linear-gradient(64deg, transparent 10%, rgba(240, 173, 69, 0.07) 58%, transparent 82%),
    linear-gradient(180deg, rgba(3, 4, 3, 0.88), rgba(12, 23, 13, 0.64));
  opacity: var(--ambient-strength);
  transform: translate3d(var(--cursor-dx), var(--cursor-dy), 0);
}

body::after {
  animation: fieldDrift 32s linear infinite;
  background:
    repeating-linear-gradient(112deg, rgba(133, 198, 87, 0.045) 0 1px, transparent 1px 108px),
    repeating-linear-gradient(178deg, rgba(247, 250, 245, 0.025) 0 1px, transparent 1px 82px);
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 84%, transparent);
  opacity: calc(0.06 + var(--scroll-progress) * 0.15);
  transform: translate3d(var(--cursor-dx), var(--cursor-dy), 0);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--green-bright);
  color: var(--black);
}

.skip-link {
  background: var(--orange);
  color: var(--black);
  font-weight: 800;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.loader {
  align-items: center;
  background: var(--black);
  display: grid;
  inset: 0;
  justify-items: center;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  visibility: visible;
  z-index: 999;
}

.loader img {
  filter: drop-shadow(0 0 18px rgba(133, 198, 87, 0.32)) drop-shadow(0 0 32px rgba(240, 173, 69, 0.18));
  height: auto;
  width: 240px;
  z-index: 2;
}

.loader-ring {
  animation: charge 1.2s linear infinite;
  border: 2px solid rgba(133, 198, 87, 0.16);
  border-top-color: var(--orange);
  border-right-color: var(--green-bright);
  border-radius: 999px;
  height: 142px;
  position: absolute;
  width: 278px;
}

body.loaded .loader {
  opacity: 0;
  visibility: hidden;
}

.site-header {
  left: 0;
  padding: 1rem 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
  z-index: 100;
}

.site-header.scrolled {
  background: rgba(7, 9, 7, 0.83);
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 0;
  backdrop-filter: blur(18px);
}

.nav-shell,
.section-inner {
  margin: 0 auto;
  max-width: 1180px;
  width: min(calc(100% - 2rem), 1180px);
}

.nav-shell {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.brand,
.footer-logo {
  align-items: center;
  display: flex;
  filter: drop-shadow(0 0 16px rgba(133, 198, 87, 0.2));
  height: 64px;
  justify-content: center;
  overflow: visible;
  padding: 0;
  width: 176px;
}

.brand img,
.footer-logo img {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

.nav-links {
  align-items: center;
  background: rgba(17, 22, 17, 0.68);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  gap: 0.2rem;
  padding: 0.35rem;
  backdrop-filter: blur(18px);
}

.nav-links a {
  border-radius: 999px;
  color: rgba(247, 250, 245, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.72rem 1rem;
  position: relative;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(133, 198, 87, 0.15);
  color: var(--white);
  outline: none;
}

.nav-toggle {
  background: rgba(17, 22, 17, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: none;
  height: 46px;
  padding: 0;
  position: relative;
  width: 46px;
}

.nav-toggle span {
  background: var(--white);
  border-radius: 999px;
  display: block;
  height: 2px;
  left: 13px;
  position: absolute;
  transition: transform 0.25s ease, opacity 0.25s ease;
  width: 18px;
}

.nav-toggle span:nth-child(1) {
  top: 15px;
}

.nav-toggle span:nth-child(2) {
  top: 22px;
}

.nav-toggle span:nth-child(3) {
  top: 29px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  align-items: end;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  padding: 9rem 0 2.2rem;
  position: relative;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(7, 9, 7, 0.94), rgba(7, 9, 7, 0.52), rgba(7, 9, 7, 0.2)),
    linear-gradient(0deg, var(--black), rgba(7, 9, 7, 0.02) 42%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media {
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--depth-x, 0), var(--depth-y, 0), 0) scale(1.08);
  transition: transform 0.18s ease-out, filter 0.45s ease;
  will-change: transform;
  width: 100%;
}

.grid-overlay {
  background-image:
    linear-gradient(rgba(133, 198, 87, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 198, 87, 0.1) 1px, transparent 1px);
  background-size: 78px 78px;
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.22;
  position: absolute;
}

.energy-orbit {
  border: 1px solid rgba(240, 173, 69, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 0 42px rgba(133, 198, 87, 0.18);
  height: 620px;
  position: absolute;
  right: -160px;
  top: 12%;
  width: 620px;
}

.orbit-one {
  animation: orbitPulse 6s ease-in-out infinite;
}

.orbit-two {
  animation: orbitPulse 7.5s ease-in-out infinite reverse;
  border-color: rgba(133, 198, 87, 0.24);
  height: 410px;
  right: 40px;
  top: 23%;
  width: 410px;
}

.energy-beam {
  background: linear-gradient(90deg, transparent, var(--green-bright), var(--orange), transparent);
  filter: blur(0.5px);
  height: 2px;
  left: -20%;
  opacity: 0.9;
  position: absolute;
  top: calc(45% + var(--beam-shift, 0px));
  transform: rotate(-12deg);
  width: 72%;
}

.energy-beam::before,
.energy-beam::after {
  background: inherit;
  content: "";
  filter: blur(9px);
  inset: -8px 0;
  opacity: 0.7;
  position: absolute;
}

.hero-content {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  width: min(calc(100% - 2rem), 1180px);
  z-index: 2;
}

.eyebrow {
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: 4.6rem;
  line-height: 0.96;
  margin-bottom: 1.35rem;
  max-width: 760px;
}

h2 {
  font-size: 2.8rem;
  line-height: 1.05;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

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

.hero-copy {
  color: rgba(247, 250, 245, 0.82);
  font-size: 1.22rem;
  max-width: 650px;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  overflow: hidden;
  padding: 0.9rem 1.35rem;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.btn::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transform: skewX(-22deg);
  transition: left 0.5s ease;
  width: 70%;
}

.btn:hover::before,
.btn:focus-visible::before {
  left: 120%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--green-bright));
  color: var(--black);
  box-shadow: 0 16px 50px rgba(133, 198, 87, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(247, 250, 245, 0.28);
  color: var(--white);
}

.btn:hover,
.btn:focus-visible {
  box-shadow: 0 18px 58px rgba(240, 173, 69, 0.2);
  outline: none;
  transform: translateY(-2px);
}

.hero-signal {
  align-items: center;
  bottom: 2rem;
  display: flex;
  gap: 0.45rem;
  justify-content: flex-end;
  margin: 0 auto;
  position: relative;
  width: min(calc(100% - 2rem), 1180px);
  z-index: 2;
}

.hero-signal span {
  background: rgba(247, 250, 245, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(247, 250, 245, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.55rem 0.8rem;
  backdrop-filter: blur(14px);
}

.section {
  overflow: hidden;
  padding: 7rem 0;
  position: relative;
}

.section::before {
  background:
    linear-gradient(90deg, transparent, rgba(133, 198, 87, 0.24), rgba(240, 173, 69, 0.18), transparent),
    linear-gradient(180deg, rgba(247, 250, 245, 0.04), transparent);
  content: "";
  height: 1px;
  left: 0;
  opacity: calc(0.3 + var(--scroll-progress) * 0.42);
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.section > .section-inner {
  position: relative;
  z-index: 1;
}

.intro-band {
  background:
    radial-gradient(circle at 20% 0%, rgba(133, 198, 87, 0.22), transparent 34%),
    linear-gradient(135deg, var(--charcoal), var(--black));
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.image-story {
  align-items: center;
  display: grid;
  min-height: 880px;
  padding: 9rem 0;
}

.story-bleed {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.story-bleed img {
  filter: saturate(1.08) contrast(1.04);
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--depth-x, 0), var(--depth-y, 0), 0) scale(1.08);
  transition: transform 0.22s ease-out, filter 0.45s ease;
  width: 100%;
}

.story-bleed::after {
  background:
    linear-gradient(90deg, rgba(3, 4, 3, 0.9), rgba(3, 4, 3, 0.52), rgba(3, 4, 3, 0.82)),
    linear-gradient(180deg, rgba(3, 4, 3, 0.92), transparent 28%, rgba(3, 4, 3, 0.92));
  content: "";
  inset: 0;
  position: absolute;
}

.story-grid {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: 0.82fr 1.18fr;
}

.story-copy {
  max-width: 560px;
}

.story-copy h2 {
  max-width: 640px;
}

.story-stack {
  min-height: 590px;
  position: relative;
}

.story-image {
  border: 1px solid rgba(247, 250, 245, 0.18);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  object-fit: cover;
  position: absolute;
  transition: filter 0.45s ease, transform 0.22s ease-out;
  will-change: transform;
}

.story-image-main {
  aspect-ratio: 0.86;
  right: 0;
  top: 0;
  transform: translate3d(var(--depth-x, 0), var(--depth-y, 0), 0);
  width: 72%;
}

.story-image-secondary {
  aspect-ratio: 1.24;
  bottom: 0;
  left: 0;
  transform: translate3d(var(--depth-x, 0), var(--depth-y, 0), 0);
  width: 52%;
  z-index: 2;
}

.story-image:hover,
.cinematic-image:hover {
  filter: brightness(1.1) saturate(1.12);
}

.split-layout {
  display: grid;
  gap: 4rem;
  grid-template-columns: 0.9fr 1.1fr;
}

.intro-copy {
  columns: 2 270px;
  column-gap: 2rem;
}

.section-heading {
  margin-bottom: 3rem;
  max-width: 760px;
}

.section-heading.wide {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 0.7fr;
  max-width: none;
}

.section-heading.compact {
  margin-bottom: 0;
}

.journey {
  background:
    linear-gradient(180deg, var(--black), rgba(8, 99, 52, 0.17), var(--black)),
    url("assets/profile-p1-image2.webp") center / cover fixed;
}

.journey::before {
  background: rgba(7, 9, 7, 0.82);
  content: "";
  inset: 0;
  position: absolute;
}

.journey .section-inner {
  position: relative;
  z-index: 1;
}

.timeline {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 3rem;
  position: relative;
}

.timeline-line {
  background: rgba(247, 250, 245, 0.12);
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.timeline-line span {
  background: linear-gradient(90deg, var(--green-bright), var(--orange));
  box-shadow: 0 0 22px rgba(240, 173, 69, 0.58);
  display: block;
  height: 100%;
  transform-origin: left;
  transform: scaleX(var(--timeline-progress, 0.18));
}

.timeline-step {
  background: rgba(17, 22, 17, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 260px;
  padding: 1.5rem;
  position: relative;
  backdrop-filter: blur(14px);
}

.timeline-step::before {
  background: var(--orange);
  border: 5px solid var(--black);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(240, 173, 69, 0.12);
  content: "";
  height: 18px;
  left: 1.5rem;
  position: absolute;
  top: -3.6rem;
  width: 18px;
}

.timeline-year {
  color: var(--green-soft);
  display: block;
  font-size: 2.2rem;
  font-weight: 950;
  margin-bottom: 1rem;
}

.services {
  background:
    radial-gradient(circle at 82% 22%, rgba(240, 173, 69, 0.13), transparent 30%),
    radial-gradient(circle at 15% 85%, rgba(133, 198, 87, 0.16), transparent 34%),
    var(--black);
}

.service-experience {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1.15fr 0.85fr;
}

.energy-hub {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  isolation: isolate;
  max-width: 600px;
  place-items: center;
  position: relative;
}

.energy-hub::before,
.energy-hub::after {
  border: 1px solid rgba(133, 198, 87, 0.22);
  border-radius: 50%;
  content: "";
  inset: 12%;
  position: absolute;
}

.energy-hub::after {
  animation: spin 18s linear infinite;
  border-color: rgba(240, 173, 69, 0.2);
  border-style: dashed;
  inset: 24%;
}

.hub-core {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(7, 9, 7, 0.42), rgba(24, 32, 25, 0.18)),
    linear-gradient(135deg, rgba(133, 198, 87, 0.18), rgba(240, 173, 69, 0.12));
  border: 1px solid rgba(247, 250, 245, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 42px rgba(133, 198, 87, 0.2), var(--shadow);
  color: var(--green);
  display: grid;
  font-weight: 950;
  height: 158px;
  justify-items: center;
  padding: 1.05rem;
  position: relative;
  width: 158px;
  z-index: 3;
}

.hub-core img {
  filter: drop-shadow(0 0 14px rgba(133, 198, 87, 0.28));
  height: auto;
  width: 130px;
}

.hub-lines {
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hub-lines path {
  animation: dashFlow 2.8s linear infinite;
  fill: none;
  stroke: rgba(133, 198, 87, 0.4);
  stroke-dasharray: 9 13;
  stroke-linecap: round;
  stroke-width: 2;
}

.service-node {
  background: rgba(17, 22, 17, 0.92);
  border: 1px solid rgba(247, 250, 245, 0.18);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  left: var(--x);
  max-width: 145px;
  min-height: 48px;
  padding: 0.75rem 1rem;
  position: absolute;
  top: var(--y);
  transform: translate(-50%, -50%);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  z-index: 4;
}

.service-node.active,
.service-node:hover,
.service-node:focus-visible {
  background: linear-gradient(135deg, var(--orange), var(--green-bright));
  box-shadow: 0 0 36px rgba(133, 198, 87, 0.26);
  color: var(--black);
  outline: none;
}

.service-panel {
  background:
    linear-gradient(160deg, rgba(17, 22, 17, 0.9), rgba(24, 32, 25, 0.72)),
    linear-gradient(135deg, rgba(240, 173, 69, 0.1), transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 430px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.service-panel::before {
  background: linear-gradient(90deg, transparent, rgba(133, 198, 87, 0.3), transparent);
  content: "";
  height: 2px;
  left: -30%;
  position: absolute;
  top: 0;
  width: 60%;
}

.service-panel.is-switching::before {
  animation: sweep 0.7s ease;
}

.panel-kicker {
  color: var(--orange-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-panel ul {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}

.service-panel li {
  color: rgba(247, 250, 245, 0.82);
  padding-left: 1.6rem;
  position: relative;
}

.service-panel li::before {
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(133, 198, 87, 0.5);
  content: "";
  height: 0.55rem;
  left: 0;
  position: absolute;
  top: 0.45rem;
  width: 0.55rem;
}

.completed-projects {
  background:
    linear-gradient(180deg, rgba(7, 9, 7, 0.98), rgba(9, 18, 10, 0.94)),
    var(--black);
}

.completed-project-stack {
  display: grid;
  gap: 1.5rem;
}

.completed-project {
  background:
    linear-gradient(160deg, rgba(17, 22, 17, 0.9), rgba(24, 32, 25, 0.7)),
    linear-gradient(135deg, rgba(133, 198, 87, 0.08), rgba(240, 173, 69, 0.08));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.project-card-header {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
  max-width: 980px;
}

.project-card-header h3 {
  color: var(--white);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.05;
  margin: 0;
}

.project-card-header p {
  color: rgba(247, 250, 245, 0.78);
  margin: 0;
}

.hidden {
  display: none !important;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

#riverwalk-gallery-toggle,
#mv-gallery-toggle {
  align-self: start;
  background: #1a1a1a;
  border: 1px solid rgba(247, 250, 245, 0.18);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  justify-self: start;
  padding: 0.8rem 1.45rem;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

#riverwalk-gallery-toggle:hover,
#riverwalk-gallery-toggle:focus-visible,
#mv-gallery-toggle:hover,
#mv-gallery-toggle:focus-visible {
  background: #222;
  border-color: rgba(133, 198, 87, 0.45);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

#riverwalk-gallery-wrapper,
#mv-gallery-wrapper {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.project-card-header .flex.flex-wrap.gap-3 span {
  background: rgba(38, 104, 48, 0.2);
  border: 1px solid rgba(133, 198, 87, 0.58);
  border-radius: 999px;
  color: var(--green-soft);
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 1.2;
  padding: 0.45rem 1rem;
}

.project-kicker {
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.project-badges span {
  background: rgba(133, 198, 87, 0.12);
  border: 1px solid rgba(133, 198, 87, 0.32);
  border-radius: 999px;
  color: var(--green-soft);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 0.55rem 0.8rem;
}

.project-gallery {
  display: grid;
  gap: 1rem;
}

.project-gallery.three-column {
  grid-template-columns: repeat(3, 1fr);
}

.project-gallery.two-column {
  grid-template-columns: repeat(2, 1fr);
}

.project-figure {
  margin: 0;
}

.project-figure img {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.3);
  display: block;
  height: auto;
  object-fit: cover;
  transition: filter 0.25s ease, transform 0.25s ease;
  width: 100%;
}

.project-figure:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: translateY(-2px);
}

.project-figure figcaption {
  color: rgba(247, 250, 245, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.85rem 0 0;
}

.comparison-stack {
  display: grid;
  gap: 1.25rem;
}

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

.comparison-card {
  background: rgba(7, 9, 7, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  margin: 0;
  overflow: hidden;
}

.comparison-card img {
  aspect-ratio: 4 / 3;
  display: block;
  filter: saturate(1.04) contrast(1.02);
  height: auto;
  object-fit: cover;
  transition: filter 0.25s ease, transform 0.25s ease;
  width: 100%;
}

.comparison-card:hover img {
  filter: saturate(1.12) contrast(1.06);
  transform: scale(1.018);
}

.comparison-card figcaption {
  background: linear-gradient(135deg, rgba(7, 9, 7, 0.92), rgba(17, 22, 17, 0.8));
  border-top: 1px solid rgba(247, 250, 245, 0.14);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1.25;
  min-height: 3.4rem;
  padding: 0.95rem 1rem;
}

.comparison-card-after figcaption {
  border-top-color: rgba(133, 198, 87, 0.32);
  color: var(--green-soft);
}

.impact {
  background:
    linear-gradient(180deg, rgba(7, 9, 7, 0.56), rgba(9, 20, 10, 0.78)),
    url("assets/profile-p7-image1.webp") center / cover fixed;
}

.impact-wrap {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: 0.78fr 1.22fr;
}

.impact-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  background: rgba(17, 22, 17, 0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 200px;
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.stat::before {
  background: linear-gradient(180deg, var(--orange), transparent);
  content: "";
  height: 56%;
  left: 0;
  opacity: 0.85;
  position: absolute;
  top: 0;
  width: 3px;
}

.stat strong {
  color: var(--white);
  display: block;
  font-size: 2.7rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.why {
  background: var(--black);
}

.value-system {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, 1fr);
}

.value-item {
  background:
    linear-gradient(180deg, rgba(247, 250, 245, 0.08), rgba(247, 250, 245, 0.035)),
    var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 292px;
  padding: 1.15rem;
  position: relative;
  overflow: hidden;
}

.value-item::after {
  background: radial-gradient(circle, rgba(133, 198, 87, 0.18), transparent 66%);
  content: "";
  height: 170px;
  position: absolute;
  right: -70px;
  top: -70px;
  width: 170px;
}

.value-icon {
  background: linear-gradient(135deg, var(--orange), var(--green-bright));
  border-radius: 50%;
  display: block;
  height: 50px;
  margin-bottom: 1.4rem;
  position: relative;
  width: 50px;
}

.value-icon::before,
.value-icon::after {
  content: "";
  position: absolute;
}

.value-icon.reliability::before {
  border: 3px solid var(--black);
  border-left: 0;
  border-top: 0;
  height: 20px;
  left: 18px;
  top: 11px;
  transform: rotate(45deg);
  width: 10px;
}

.value-icon.sustainability::before {
  border: 3px solid var(--black);
  border-radius: 50% 0 50% 50%;
  height: 22px;
  left: 13px;
  top: 12px;
  transform: rotate(-35deg);
  width: 22px;
}

.value-icon.innovation::before {
  background: var(--black);
  clip-path: polygon(50% 0, 66% 35%, 100% 35%, 61% 100%, 66% 55%, 30% 55%);
  height: 29px;
  left: 13px;
  top: 10px;
  width: 25px;
}

.value-icon.expertise::before {
  border: 3px solid var(--black);
  height: 18px;
  left: 14px;
  top: 14px;
  transform: rotate(45deg);
  width: 18px;
}

.value-icon.youth::before,
.value-icon.youth::after {
  background: var(--black);
  border-radius: 50%;
}

.value-icon.youth::before {
  height: 13px;
  left: 18px;
  top: 10px;
  width: 13px;
}

.value-icon.youth::after {
  height: 19px;
  left: 13px;
  top: 25px;
  width: 24px;
}

.visual-break {
  display: grid;
  grid-template-columns: 1.18fr 0.96fr 1.08fr;
  min-height: 78vh;
  overflow: hidden;
  position: relative;
}

.visual-break img {
  height: 100%;
  min-height: 78vh;
  object-fit: cover;
  transform: translate3d(var(--depth-x, 0), var(--depth-y, 0), 0) scale(1.035);
  transition: filter 0.45s ease, transform 0.22s ease-out;
  width: 100%;
  will-change: transform;
}

.visual-break img:nth-child(2) {
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.42);
  z-index: 2;
}

.industries {
  background:
    radial-gradient(circle at 20% 40%, rgba(133, 198, 87, 0.16), transparent 32%),
    var(--charcoal);
}

.industry-carousel {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: 52px 1fr 52px;
}

.industry-track {
  display: grid;
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.industry-slide {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(8, 99, 52, 0.68), rgba(17, 22, 17, 0.86)),
    url("assets/profile-p3-image1.webp") center / cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-area: 1 / 1;
  min-height: 260px;
  opacity: 0;
  padding: 2.2rem;
  transform: translateX(4%);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.industry-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.industry-slide h3 {
  font-size: 3rem;
}

.industry-slide p {
  color: rgba(247, 250, 245, 0.88);
  font-size: 1.15rem;
  max-width: 520px;
}

.carousel-btn {
  background: rgba(247, 250, 245, 0.08);
  border: 1px solid var(--line);
  border-radius: 50%;
  height: 52px;
  position: relative;
  transition: background 0.25s ease, transform 0.25s ease;
  width: 52px;
}

.carousel-btn::before {
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  content: "";
  height: 12px;
  left: 20px;
  position: absolute;
  top: 18px;
  width: 12px;
}

.carousel-btn.prev::before {
  transform: rotate(135deg);
}

.carousel-btn.next::before {
  left: 17px;
  transform: rotate(-45deg);
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: rgba(133, 198, 87, 0.18);
  outline: none;
  transform: translateY(-2px);
}

.proof {
  background:
    linear-gradient(110deg, rgba(7, 9, 7, 0.9), rgba(9, 24, 12, 0.78)),
    url("assets/profile-p2-image1.webp") center / cover fixed;
}

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

.proof-card {
  background: rgba(247, 250, 245, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 292px;
  padding: 1.5rem;
  backdrop-filter: blur(16px);
}

.rating {
  color: var(--orange-soft);
  display: block;
  font-size: 1rem;
  margin-bottom: 1.1rem;
}

.proof-card strong {
  color: var(--green-soft);
  display: block;
  line-height: 1.5;
  margin-top: 1.1rem;
}

.contact {
  background:
    linear-gradient(125deg, rgba(8, 99, 52, 0.24), transparent 42%),
    linear-gradient(180deg, rgba(18, 32, 19, 0.96), rgba(7, 9, 7, 0.9));
}

.contact-grid {
  align-items: start;
  display: grid;
  gap: 3rem;
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-visual,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-visual {
  background: rgba(17, 22, 17, 0.7);
  overflow: hidden;
}

.circuit-board {
  aspect-ratio: 1.25;
  background:
    linear-gradient(rgba(7, 9, 7, 0.42), rgba(7, 9, 7, 0.8)),
    url("assets/profile-p4-image1.webp") center / cover;
  display: grid;
  place-items: center;
  position: relative;
}

.circuit-board::before {
  background-image:
    linear-gradient(90deg, transparent 0 22%, rgba(133, 198, 87, 0.55) 22% 23%, transparent 23%),
    linear-gradient(0deg, transparent 0 46%, rgba(240, 173, 69, 0.55) 46% 47%, transparent 47%);
  background-size: 130px 100px;
  content: "";
  inset: 0;
  opacity: 0.55;
  position: absolute;
}

.circuit-board span {
  animation: circuitPulse 2.5s ease-in-out infinite;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 28px var(--green-bright);
  height: 12px;
  position: absolute;
  width: 12px;
}

.circuit-board span:nth-child(1) {
  left: 20%;
  top: 35%;
}

.circuit-board span:nth-child(2) {
  animation-delay: 0.35s;
  right: 26%;
  top: 25%;
}

.circuit-board span:nth-child(3) {
  animation-delay: 0.7s;
  bottom: 30%;
  left: 36%;
}

.circuit-board span:nth-child(4) {
  animation-delay: 1.05s;
  bottom: 24%;
  right: 18%;
}

.circuit-board img {
  filter: drop-shadow(0 0 20px rgba(133, 198, 87, 0.28)) drop-shadow(0 0 34px rgba(240, 173, 69, 0.2));
  height: auto;
  position: relative;
  width: min(68%, 260px);
  z-index: 2;
}

.contact-details {
  padding: 1.5rem;
}

.contact-details a,
.contact-details span {
  color: rgba(247, 250, 245, 0.86);
  display: block;
  line-height: 1.6;
  margin-top: 0.7rem;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--orange-soft);
  outline: none;
}

.contact-form {
  background: rgba(17, 22, 17, 0.82);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

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

.contact-form span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(7, 9, 7, 0.55);
  border: 1px solid rgba(247, 250, 245, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  min-height: 52px;
  padding: 0.9rem 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(133, 198, 87, 0.12);
  outline: none;
}

.transmission {
  align-items: center;
  background: rgba(7, 9, 7, 0.94);
  display: grid;
  inset: 0;
  justify-items: center;
  opacity: 0;
  padding: 2rem;
  pointer-events: none;
  position: absolute;
  text-align: center;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  visibility: hidden;
}

.transmission.is-active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.transmission-line {
  background: linear-gradient(90deg, transparent, var(--green-bright), var(--orange), transparent);
  height: 3px;
  position: absolute;
  top: 38%;
  transform-origin: left;
  width: 80%;
}

.transmission.is-active .transmission-line {
  animation: transmit 1.2s ease forwards;
}

.transmission img {
  box-shadow: 0 0 0 0 rgba(133, 198, 87, 0.5);
  filter: drop-shadow(0 0 20px rgba(133, 198, 87, 0.26));
  height: auto;
  width: min(72%, 260px);
}

.transmission.is-active img {
  animation: logoGlow 1.3s ease 0.5s forwards;
}

.transmission p {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
  margin: 1rem 0 0.35rem;
}

.transmission small {
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}

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

.site-footer p {
  margin: 0;
}

.footer-links a {
  color: var(--muted);
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--orange-soft);
  outline: none;
}

.reveal {
  filter: blur(8px);
  opacity: 0;
  transform: translate3d(0, 38px, 0) scale(0.985);
  transition:
    clip-path 1s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.85s ease,
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.in-view {
  filter: blur(0);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.image-reveal {
  clip-path: inset(0 0 100% 0);
}

.image-reveal.in-view {
  clip-path: inset(0);
}

.story-image.in-view {
  transform: translate3d(var(--depth-x, 0), var(--depth-y, 0), 0);
}

.visual-break img.in-view {
  transform: translate3d(var(--depth-x, 0), var(--depth-y, 0), 0) scale(1.035);
}

@keyframes charge {
  to {
    transform: rotate(360deg);
  }
}

@keyframes atmosphereShift {
  0% {
    background-position: 0% 45%, 100% 35%, 50% 50%;
  }
  100% {
    background-position: 100% 55%, 0% 65%, 50% 50%;
  }
}

@keyframes fieldDrift {
  to {
    background-position: 220px 120px, -160px 180px;
  }
}

@keyframes orbitPulse {
  50% {
    transform: scale(1.04);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -44;
  }
}

@keyframes sweep {
  from {
    left: -70%;
  }
  to {
    left: 110%;
  }
}

@keyframes circuitPulse {
  50% {
    opacity: 0.45;
    transform: scale(0.75);
  }
}

@keyframes transmit {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes logoGlow {
  50% {
    box-shadow: 0 0 0 18px rgba(133, 198, 87, 0.08), 0 0 38px rgba(240, 173, 69, 0.42);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(133, 198, 87, 0.12), 0 0 28px rgba(133, 198, 87, 0.35);
  }
}

@media (max-width: 1020px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .section-heading.wide,
  .service-experience,
  .project-gallery.three-column,
  .story-grid,
  .impact-wrap,
  .contact-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .image-story {
    min-height: 980px;
  }

  .story-stack {
    min-height: 560px;
  }

  .impact-stats,
  .value-system {
    grid-template-columns: repeat(2, 1fr);
  }

  .visual-break {
    grid-template-columns: 1fr;
  }

  .visual-break img {
    min-height: 310px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0.75rem 0;
  }

  .brand,
  .footer-logo {
    height: 48px;
    width: 138px;
  }

  .nav-toggle {
    display: block;
    z-index: 102;
  }

  .nav-links {
    align-content: center;
    background: rgba(7, 9, 7, 0.96);
    border-radius: 0;
    display: grid;
    gap: 0.6rem;
    inset: 0;
    justify-content: stretch;
    opacity: 0;
    padding: 6rem 1rem 2rem;
    position: fixed;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    visibility: hidden;
    z-index: 101;
  }

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

  .nav-links a {
    background: rgba(247, 250, 245, 0.07);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 1.1rem;
    padding: 1rem;
  }

  .hero {
    min-height: 92vh;
    padding-top: 7rem;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(7, 9, 7, 0.92), rgba(7, 9, 7, 0.58)),
      linear-gradient(0deg, var(--black), transparent 54%);
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero-signal {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 2rem;
  }

  .hero-signal span {
    text-align: center;
  }

  .timeline,
  .impact-stats,
  .comparison-row,
  .project-gallery.two-column,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .completed-project {
    padding: 1rem;
  }

  .project-badges {
    display: grid;
  }

  .project-figure figcaption {
    min-height: 0;
  }

  .timeline-line {
    bottom: 0;
    height: auto;
    left: 12px;
    right: auto;
    top: 0;
    width: 2px;
  }

  .timeline-line span {
    height: 100%;
    transform: scaleY(var(--timeline-progress, 0.18));
    transform-origin: top;
  }

  .timeline-step {
    margin-left: 2rem;
    min-height: 0;
  }

  .timeline-step::before {
    left: -2.55rem;
    top: 1.25rem;
  }

  .energy-hub {
    border-radius: var(--radius);
    max-width: none;
    min-height: 600px;
  }

  .service-node {
    font-size: 0.82rem;
    max-width: 122px;
    padding: 0.65rem 0.75rem;
  }

  .value-system {
    grid-template-columns: 1fr;
  }

  .industry-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .industry-slide h3 {
    font-size: 2.2rem;
  }

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

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

@media (max-width: 460px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-signal {
    grid-template-columns: 1fr;
  }

  .energy-hub {
    min-height: 540px;
  }

  .hub-core {
    height: 112px;
    width: 112px;
  }

  .hub-core img {
    width: 98px;
  }

  .image-story {
    min-height: 900px;
    padding: 6rem 0;
  }

  .story-stack {
    min-height: 440px;
  }

  .story-image-main {
    width: 82%;
  }

  .story-image-secondary {
    width: 62%;
  }

  .service-panel {
    min-height: 0;
    padding: 1.25rem;
  }
}

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