@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #101713;
  --muted: #667069;
  --paper: #f2f1eb;
  --paper-deep: #e9e8e0;
  --night: #07100d;
  --night-soft: #0d1915;
  --lime: #b6f43d;
  --mint: #67e8b0;
  --line: rgba(16, 23, 19, 0.14);
  --radius: 28px;
  --mono: 'DM Mono', monospace;
  --sans: 'Manrope', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: '';
  background: linear-gradient(90deg, var(--lime), var(--mint));
  transform: scaleX(var(--scroll, 0));
  transform-origin: left;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--night);
  background: var(--lime);
  border-radius: 999px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.section-shell,
.site-header {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 38rem;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.17;
  filter: blur(120px);
  pointer-events: none;
}

.ambient-one {
  top: -20rem;
  right: -12rem;
  background: var(--lime);
}

.ambient-two {
  bottom: -28rem;
  left: -18rem;
  background: #66d4bb;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  margin-top: 18px;
  padding: 0 16px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(242, 241, 235, 0.76);
  box-shadow: 0 16px 50px rgba(10, 24, 18, 0.08);
  backdrop-filter: blur(18px);
  transition: min-height 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(242, 241, 235, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand strong {
  color: var(--muted);
  font-weight: 600;
}

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #4e5952;
  font-size: 0.82rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: '';
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  color: white;
  background: var(--night);
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.nav-cta:hover {
  background: #182720;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
  min-height: calc(100svh - 110px);
  padding-block: 90px 70px;
}

.eyebrow,
.section-index {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #536057;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(182, 244, 61, 0.16);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.4rem, 6.6vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.gradient-text {
  display: block;
  padding-bottom: 0.1em;
  color: transparent;
  background: linear-gradient(100deg, #3f7965 3%, #79a632 55%, #adc82f);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 0.25s ease;
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: white;
  background: var(--night);
  box-shadow: 0 16px 30px rgba(7, 16, 13, 0.14);
}

.button-primary:hover {
  box-shadow: 0 20px 40px rgba(7, 16, 13, 0.22);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 38px;
  color: #657169;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-proof span::before {
  margin-right: 8px;
  color: #79a632;
  content: '✓';
}

.forge-scene {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 42%, #1f392d 0, var(--night-soft) 36%, var(--night) 70%);
  box-shadow: 0 40px 90px rgba(7, 16, 13, 0.2);
  transform: perspective(1200px) rotateY(var(--rx, 0deg)) rotateX(var(--ry, 0deg));
  transition: transform 0.2s ease-out;
}

.scene-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(rgba(182, 244, 61, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182, 244, 61, 0.12) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle, black 20%, transparent 72%);
}

.core-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  aspect-ratio: 1;
  background: rgba(182, 244, 61, 0.28);
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(-50%, -50%);
  animation: breathe 4s ease-in-out infinite;
}

.forge-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 250px;
  aspect-ratio: 1;
  place-items: center;
  transform: translate(-50%, -50%);
}

.forge-core svg {
  width: 100%;
  overflow: visible;
  fill: rgba(182, 244, 61, 0.025);
}

.core-line {
  fill: none;
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.1;
  filter: drop-shadow(0 0 8px rgba(182, 244, 61, 0.5));
}

.core-line.outer {
  stroke-dasharray: 440;
  animation: draw 3.5s ease-out both, core-spin 20s linear infinite 3.5s;
  transform-origin: center;
}

.core-line.inner {
  stroke: var(--mint);
  stroke-dasharray: 260;
  animation: draw 3s 0.4s ease-out both, core-spin-reverse 15s linear infinite 3.4s;
  transform-origin: center;
}

.core-line.detail {
  opacity: 0.45;
}

.forge-core > span {
  position: absolute;
  color: white;
  font-family: var(--mono);
  font-size: 1rem;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(182, 244, 61, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 390px;
  height: 390px;
  animation: orbit 13s linear infinite;
}

.orbit-two {
  width: 500px;
  height: 220px;
  animation: orbit-tilted 17s linear infinite reverse;
}

.orbit i {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--lime);
}

.code-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  background: rgba(8, 20, 15, 0.62);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
  animation: float 4s ease-in-out infinite;
}

.code-chip span {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}

.chip-one {
  top: 24%;
  left: 8%;
}

.chip-two {
  right: 7%;
  bottom: 25%;
  animation-delay: -1.8s;
}

.scene-label {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr;
  padding-block: 72px;
  border-top: 1px solid var(--line);
}

.manifesto-text {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.055em;
}

.manifesto-text em,
.contact h2 em {
  color: #6e8b37;
  font-family: Georgia, serif;
  font-weight: 400;
}

.manifesto-note {
  max-width: 550px;
  margin: 30px 0 0 auto;
  color: var(--muted);
  line-height: 1.75;
}

.services,
.projects,
.process {
  padding-block: 76px;
}

.process {
  min-height: 0;
  padding-block: clamp(44px, 6vh, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process .section-heading {
  margin-bottom: clamp(26px, 4vh, 40px);
}

.process .section-heading h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.6rem);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.065em;
}

.section-heading > p {
  max-width: 390px;
  margin: 0 0 5px;
  color: var(--muted);
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 390px;
  padding: 28px;
  border-right: 1px solid var(--line);
  transition: color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.service-card:first-child {
  border-left: 1px solid var(--line);
}

.service-card:hover {
  z-index: 2;
  color: white;
  background: var(--night);
  transform: translateY(-10px);
}

.service-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 26px 0 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  place-items: center;
  transition: border 0.35s ease, background 0.35s ease;
}

.service-card:hover .service-icon {
  border-color: rgba(182, 244, 61, 0.34);
  background: rgba(182, 244, 61, 0.08);
}

.service-icon svg {
  width: 31px;
  fill: none;
  stroke: #668336;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  transition: color 0.35s ease;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.62);
}

.service-tag {
  position: absolute;
  bottom: 26px;
  left: 28px;
  color: #7c877f;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.projects {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1240px) / 2));
  color: white;
  background: var(--night);
}

.projects .eyebrow,
.projects .section-heading > p {
  color: rgba(255, 255, 255, 0.54);
}

.project-list {
  display: grid;
  gap: 24px;
}

.project-card {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: #0c1814;
}

.project-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.project-visual > p {
  position: absolute;
  bottom: 24px;
  left: 26px;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
}

.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 84px);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-copy h3 {
  margin: 0 0 24px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.project-copy h3 sup {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0;
  vertical-align: top;
}

.project-copy > p {
  max-width: 470px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
}

.project-status,
.project-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-status i {
  width: 7px;
  height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--lime);
  animation: blink 1.8s ease infinite;
}

.project-link {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(182, 244, 61, 0.4);
}

.project-link span {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.project-link:hover span {
  transform: translate(3px, -3px);
}

.project-prono .project-visual {
  background: radial-gradient(circle at 52% 48%, rgba(176, 221, 61, 0.2), transparent 30%), #09130f;
}

.track-lines {
  position: absolute;
  inset: -25%;
  opacity: 0.32;
  background: repeating-radial-gradient(ellipse at center, transparent 0 35px, rgba(182, 244, 61, 0.3) 36px 37px);
  transform: rotate(-18deg) scaleY(0.58);
}

.project-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(182, 244, 61, 0.5);
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(182, 244, 61, 0.08), 0 0 50px rgba(182, 244, 61, 0.09);
  transform: translate(-50%, -50%);
  animation: breathe 4s ease-in-out infinite;
}

.project-orb::before,
.project-orb::after {
  position: absolute;
  content: '';
  border: 1px dashed rgba(182, 244, 61, 0.3);
  border-radius: 50%;
}

.project-orb::before {
  inset: -35px;
  animation: orbit 16s linear infinite;
}

.project-orb::after {
  inset: 28px;
  background: radial-gradient(circle, rgba(182, 244, 61, 0.28), transparent 65%);
}

.data-panel {
  position: absolute;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(7, 16, 13, 0.64);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.data-panel-main {
  top: 17%;
  left: 12%;
  width: 155px;
  animation: float 5s ease-in-out infinite;
}

.data-panel-main span,
.data-panel-small span {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 0.52rem;
}

.data-panel-main strong {
  display: block;
  margin: 8px 0;
  font-size: 2.2rem;
}

.data-panel-main strong span {
  display: inline;
  color: var(--lime);
  font-size: 0.7rem;
}

.data-panel-main i {
  display: block;
  width: 85%;
  height: 3px;
  background: linear-gradient(90deg, var(--lime) 72%, rgba(255, 255, 255, 0.1) 72%);
  border-radius: 5px;
}

.data-panel-small {
  right: 10%;
  bottom: 21%;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4.5s -1s ease-in-out infinite;
}

.data-panel-small b {
  display: grid;
  width: 32px;
  height: 32px;
  color: var(--night);
  background: var(--lime);
  border-radius: 8px;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.65rem;
}

.project-miam .project-visual {
  background: #d9edcd;
}

.miam-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 390px;
  height: 390px;
  background: #f3ffde;
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(255, 255, 255, 0.7);
  transform: translate(-50%, -50%);
}

.meal-card,
.basket-badge {
  position: absolute;
  display: grid;
  color: var(--ink);
  border: 1px solid rgba(16, 23, 19, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 22px 45px rgba(35, 75, 51, 0.14);
  backdrop-filter: blur(14px);
}

.meal-card {
  width: 235px;
  padding: 20px;
}

.meal-card span {
  margin-bottom: 24px;
  color: #6b8f48;
  font-family: var(--mono);
  font-size: 0.58rem;
}

.meal-card b {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.meal-card i {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  font-style: normal;
}

.meal-one {
  top: 15%;
  left: 11%;
  transform: rotate(-5deg);
  animation: float 5s ease-in-out infinite;
}

.meal-two {
  right: 10%;
  bottom: 15%;
  transform: rotate(4deg);
  animation: float 5.4s -2s ease-in-out infinite;
}

.basket-badge {
  top: 28%;
  right: 10%;
  padding: 17px 20px;
  text-align: center;
  animation: float 4.8s -1s ease-in-out infinite;
}

.basket-badge b {
  color: #5b802f;
  font-size: 2rem;
}

.basket-badge span {
  color: var(--muted);
  font-size: 0.62rem;
}

.project-miam .project-visual > p {
  color: rgba(16, 23, 19, 0.46);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-width: 0;
}

.process-visual {
  position: relative;
  aspect-ratio: 16 / 8.5;
  max-height: 155px;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 18px;
  background: #e8e4d8;
}

.process-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(16, 23, 19, 0.08);
  border-radius: inherit;
  content: '';
  pointer-events: none;
}

.process-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
}

.process-list li:hover .process-visual img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.045);
}

.process-copy {
  padding: 14px 12px 8px 2px;
  border-top: 1px solid var(--line);
}

.process-list h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.contact {
  position: relative;
  width: min(1240px, calc(100% - 48px));
  margin-block: 48px 24px;
  overflow: hidden;
  padding: clamp(56px, 8vw, 110px);
  color: white;
  border-radius: var(--radius);
  background: var(--night);
  text-align: center;
}

.contact .eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
}

.contact h2 {
  position: relative;
  margin: 0 auto 42px;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: 1.03;
  letter-spacing: -0.065em;
}

.contact h2 em {
  color: var(--lime);
}

.contact-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  width: 600px;
  height: 420px;
  background: rgba(182, 244, 61, 0.15);
  border-radius: 50%;
  filter: blur(100px);
  transform: translateX(-50%);
}

.button-light {
  position: relative;
  color: var(--night);
  background: var(--lime);
  box-shadow: 0 15px 40px rgba(182, 244, 61, 0.14);
}

.button-light:hover {
  background: #c5ff51;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-block: 34px 45px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer .brand {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: -0.03em;
  text-transform: none;
}

.site-footer .brand-mark {
  width: 28px;
  height: 28px;
}

.site-footer p:last-child {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.service-card:nth-child(2),
.process-list li:nth-child(2) {
  transition-delay: 0.08s;
}

.service-card:nth-child(3),
.process-list li:nth-child(3) {
  transition-delay: 0.16s;
}

.service-card:nth-child(4),
.process-list li:nth-child(4) {
  transition-delay: 0.24s;
}

@keyframes draw {
  from { stroke-dashoffset: 440; }
  to { stroke-dashoffset: 0; }
}

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

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

@keyframes orbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbit-tilted {
  from { transform: translate(-50%, -50%) rotate(-18deg); }
  to { transform: translate(-50%, -50%) rotate(342deg); }
}

@keyframes breathe {
  50% { opacity: 0.62; transform: translate(-50%, -50%) scale(1.12); }
}

@keyframes float {
  50% { translate: 0 -10px; }
}

@keyframes blink {
  50% { opacity: 0.35; }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }

  .hero-copy {
    max-width: 790px;
  }

  .forge-scene {
    min-height: 540px;
  }

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

  .service-card:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .service-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .project-visual {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }
}

@media (max-width: 760px) {
  .section-shell,
  .site-header,
  .contact {
    width: min(100% - 28px, 1240px);
  }

  .site-header {
    top: 10px;
    margin-top: 10px;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--night);
    place-content: center;
    gap: 6px;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 17px;
    height: 1px;
    background: white;
    transition: transform 0.25s ease;
  }

  .menu-toggle[aria-expanded='true'] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded='true'] > span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    background: rgba(242, 241, 235, 0.96);
    box-shadow: 0 18px 50px rgba(7, 16, 13, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .main-nav a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    min-height: 0;
    padding-block: 80px 56px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .forge-scene {
    min-height: 460px;
  }

  .forge-core {
    width: 205px;
  }

  .orbit-one {
    width: 310px;
    height: 310px;
  }

  .orbit-two {
    width: 390px;
  }

  .manifesto {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 56px;
  }

  .manifesto-note {
    margin-left: 0;
  }

  .section-heading {
    display: grid;
    margin-bottom: 32px;
  }

  .services,
  .projects {
    padding-block: 56px;
  }

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

  .process {
    min-height: 0;
    padding-block: 48px;
  }

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

  .service-card,
  .service-card:nth-child(3) {
    min-height: 340px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .service-icon {
    margin-top: 26px;
  }

  .project-visual {
    min-height: 430px;
  }

  .meal-card {
    width: 205px;
  }

  .meal-two {
    right: 4%;
  }

  .basket-badge {
    top: 36%;
    right: 3%;
  }

  .process-list li {
    padding: 0 0 26px;
    border-bottom: 1px solid var(--line);
  }

  .process-visual {
    max-height: none;
    margin-bottom: 20px;
    border-radius: 16px;
  }

  .process-copy {
    padding: 0;
    border-top: 0;
  }

  .process-list h3 {
    margin: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer .brand {
    justify-content: center;
  }

  .site-footer p {
    margin: 0;
  }

  .site-footer p:last-child {
    text-align: center;
  }
}

@media (max-width: 470px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

  .forge-scene {
    min-height: 410px;
  }

  .chip-one {
    top: 12%;
  }

  .chip-two {
    bottom: 13%;
  }

  .project-copy {
    padding: 34px 26px 44px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .meal-one {
    left: 2%;
  }
}

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

  .process-list li:hover .process-visual img {
    transform: none;
  }
}
