/* =========================================================
   LUJAYN INFOWAYS — PORTFOLIO
   Design tokens: near-black stage, copper + teal duotone,
   Fraunces display / Manrope body / Space Mono utility.
   ========================================================= */

:root {
  /* Surfaces */
  --bg: #0a0b0d;
  --bg-elevated: #111318;
  --bg-card: #15171c;
  --bg-card-hover: #1b1e24;

  /* Ink */
  --ink: #f4f2ec;
  --ink-dim: #a4a6ac;
  --ink-faint: #6c6e75;

  /* Accents */
  --copper: #ff6a39;
  --copper-soft: #ffb08a;
  --teal: #3fd8c7;

  /* Lines */
  --line: rgba(244, 242, 236, 0.09);
  --line-strong: rgba(244, 242, 236, 0.18);

  /* Type */
  --font-display: "Fraunces", serif;
  --font-body: "Manrope", sans-serif;
  --font-mono: "Space Mono", monospace;

  /* Easing */
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);

  /* Layout */
  --container-w: 1360px;
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }

html, body {
  margin: 0;
  padding: 0;
  color: var(--ink);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
svg { display: block; }

::selection { background: var(--copper); color: #12100e; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* Noise / grain texture for premium feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  outline-offset: 3px;
  border-radius: 4px;
}

@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;
  }
}

/* =========================================================
   TYPE SCALE
   ========================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 22px;
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 4px rgba(255, 106, 57, 0.15);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-desc {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: var(--ink-dim);
  max-width: 46ch;
  margin-top: 22px;
  line-height: 1.65;
}

.section-head { margin-bottom: 64px; }

/* =========================================================
   CURSOR
   ========================================================= */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 0; height: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor__dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cursor__ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: width 0.25s var(--ease-out-quart), height 0.25s var(--ease-out-quart), opacity 0.3s ease;
}
.cursor__ring.is-active { width: 64px; height: 64px; }
.cursor.is-visible .cursor__dot,
.cursor.is-visible .cursor__ring { opacity: 1; }

@media (hover: none) and (pointer: coarse) {
  .cursor { display: none; }
}

/* =========================================================
   SCROLL PROGRESS
   ========================================================= */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  z-index: 998;
  background: transparent;
}
.progress-bar__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--copper), var(--teal));
  transform-origin: left;
}

/* =========================================================
   LOADER
   ========================================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.loader__mark { width: 96px; height: 96px; }
.loader__svg { width: 100%; height: 100%; }
.loader__ring {
  fill: none;
  stroke: var(--copper);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transform-origin: center;
}
.loader__ring--inner { stroke: var(--teal); stroke-dasharray: 290; stroke-dashoffset: 290; }
.loader__count {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
}
.loader__label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-faint);
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding-top: 18px;
  transition: transform 0.4s var(--ease-out-quart), background 0.4s, padding 0.4s;
}
.site-header.is-scrolled {
  background: rgba(10, 11, 13, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding-top: 10px;
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 14px;
}

.brand__logo { height: 60px; width: auto; }

.main-nav ul { display: flex; gap: 36px; }
.main-nav a {
  position: relative;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-dim);
  padding: 4px 0;
  transition: color 0.25s ease;
}
.main-nav a span { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: #f66835;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out-quart);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
}
.menu-toggle span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease-out-quart), opacity 0.3s;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 85px 20px 48px;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease-in-out-cubic);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: block;
}
.mobile-nav__footer { font-family: var(--font-mono); font-size: 13px; color: var(--ink-faint); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  isolation: isolate;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn__icon { font-size: 15px; transition: transform 0.3s var(--ease-out-quart); }
.btn:hover .btn__icon { transform: translate(2px, -2px); }

.btn--primary {
  background: #f66835;
  color: #fff;
}
.btn--primary:hover { background: #ff7d51; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: #f66835; color: #f66835; }

.btn--small { padding: 10px 20px; font-size: 13.5px; }
.btn--block { width: 100%; justify-content: center; margin-top: 6px; }

.header-cta { display: inline-flex; }

@media (max-width: 860px) {
  .header-cta { display: none; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
  background: #051f42;
}

.hero__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 0;
  opacity: 0.9;
}
.hero__arcs {
  width: min(64vw, 820px);
  height: auto;
  transform: translateX(18%);
}
.arc {
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
}
.arc--1 { stroke: var(--copper); opacity: 0.55; stroke-dasharray: 1200; stroke-dashoffset: 1200; }
.arc--2 { stroke: var(--teal); opacity: 0.4; stroke-dasharray: 900; stroke-dashoffset: 900; }
.arc--3 { stroke: var(--ink); opacity: 0.22; stroke-dasharray: 620; stroke-dashoffset: 620; }

.hero__inner { position: relative; z-index: 1; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 7.4vw, 6.2rem);
  line-height: 1.03;
  letter-spacing: -0.015em;
  max-width: 16ch;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: #f66835;
}
.split-line { display: block; overflow: hidden; padding-bottom: 0.06em; }

.hero__foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  margin-top: 46px;
  max-width: 980px;
}
.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--ink-dim);
  max-width: 42ch;
  line-height: 1.65;
}
.hero__actions { display: flex; gap: 14px; flex-shrink: 0; }

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  z-index: 1;
}
.hero__scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--ink-faint), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--copper);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

@media (max-width: 760px) {
  .hero__foot { grid-template-columns: 1fr; gap: 28px; margin-top: 18px;}
  /*.hero__actions { flex-wrap: wrap; }*/
  .hero__scroll { display: none; }
  .container {padding: 0 15px;}
.stats {padding: 40px 0 !important; }
.work {padding: 70px 0 70px !important; }
.process {padding: 70px 0 !important; }
.contact {padding: 70px 0 70px !important; }
.timeline__item:last-child {padding-bottom: 0 !important; }
.project-card__body {padding: 20px 15px 20px !important; }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
  overflow: hidden;
  background: #000;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee__item {
  font-family: var(--font-mono);
  font-size: 20px;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 14px;
}
.marquee__item span.sep { color: #f66835; }

/* =========================================================
   STATS
   ========================================================= */
.stats { padding: 96px 0; border-bottom: 1px solid var(--line); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 500;
  color: #061f41;
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 13.5px;
  color: var(--ink-dim);
  font-weight: 600;
}
@media (max-width: 760px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 25px; }
  .stat:nth-child(2) { border-right: none; }
}

/* =========================================================
   WORK / FILTERS / PROJECT GRID
   ========================================================= */
.work { padding: 140px 0 100px; background: #061f41;}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 52px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-dim);
  transition: all 0.3s var(--ease-out-quart);
}
.filter-btn:hover { color: var(--ink); border-color: var(--ink-dim); }
.filter-btn.is-active {
  background: #f66835;
  border-color: #f66835;
  color: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}

.process h2 {
    color: #071f40;
    font-weight: bold;
}

.contact h2 {
color: #071f40;
    font-weight: bold;
}

.project-card {
  grid-column: span 6;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-quart), border-color 0.4s, opacity 0.4s, box-shadow 0.5s;
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55);
}
.project-card.is-hidden { display: none; }

.project-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-elevated);
  cursor: pointer;
}
.project-card__desktop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s var(--ease-out-quart);
  clip-path: inset(0 0 0 0);
}
.project-card:hover .project-card__desktop { transform: scale(1.045); }

.project-card__mobile-wrap {
  position: absolute;
  right: 22px;
  bottom: -18%;
  width: 27%;
  aspect-ratio: 9 / 19.5;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid #0d0e10;
  background: #0d0e10;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6);
  transform: translateY(0);
  transition: bottom 0.55s var(--ease-out-quart), transform 0.55s var(--ease-out-quart);
}
.project-card:hover .project-card__mobile-wrap { bottom: 6%; }
.project-card__mobile {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.project-card__view {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(10,11,13,0.6);
  backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.project-card:hover .project-card__view { opacity: 1; transform: translateY(0); }

.project-card__body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 14px; flex: 1; background: #fff;}

.project-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.project-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #071f40;
}
.project-card__link {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  transition: all 0.3s var(--ease-out-quart);
  background: #071f40;
}
.project-card__link:hover {
  background: #f66835;
  border-color: #f66835;
  color: #0a0b0d;
  transform: rotate(45deg);
}

.project-card__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-dim);
}

.project-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 8px; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  background: #071f40;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #fff;
}

@media (max-width: 980px) {
  .project-card { grid-column: span 12; }
}

/* =========================================================
   PROCESS / TIMELINE
   ========================================================= */
.process { padding: 100px 0; border-top: 1px solid var(--line); }

.timeline { display: flex; flex-direction: column; max-width: 920px; }
.timeline__item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid #e9e9e9;
  position: relative;
}
.timeline__item:last-child { border-bottom: 1px solid var(--line); }
.timeline__index {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--copper);
  padding-top: 6px;
}
.timeline__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: bolder;
  margin-bottom: 12px;
  color: #071f40;
}
.timeline__body p {
  color: var(--ink-dim);
  max-width: 56ch;
  line-height: 1.65;
  font-size: 15px;
}

@media (max-width: 640px) {
  .timeline__item { grid-template-columns: 1fr; gap: 12px; }
}

/* =========================================================
   TOOLKIT
   ========================================================= */
.toolkit { padding: 100px 0; border-top: 1px solid var(--line); }

.toolkit__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.toolkit__card {
  padding: 26px 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.4s var(--ease-out-quart), border-color 0.3s, background 0.3s;
}
.toolkit__card:hover { transform: translateY(-6px); border-color: var(--line-strong); background: var(--bg-card-hover); }
.toolkit__badge {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  color: var(--copper-soft);
}
.toolkit__card h4 { font-size: 14.5px; font-weight: 700; }
.toolkit__card p { font-size: 12.5px; color: var(--ink-faint); line-height: 1.5; }

@media (max-width: 980px) {
  .toolkit__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .toolkit__grid { grid-template-columns: repeat(2, 1fr); }
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  margin-top: 40px;
}
.capabilities__item {
  background: var(--bg);
  padding: 22px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-dim);
}
@media (max-width: 760px) {
  .capabilities { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact { padding: 120px 0 100px; border-top: 1px solid var(--line); background: #071f400d;}
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  
}
.contact__email {
  display: inline-block;
  margin-top: 30px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: #f76a3f;
  border-bottom: 1px solid #f76a3f;
  padding-bottom: 4px;
}
.contact__socials { display: flex; gap: 22px; margin-top: 34px; }
.contact__socials a { font-size: 13.5px; font-weight: 600; color: var(--ink-dim); transition: color 0.25s; }
.contact__socials a:hover { color: var(--teal); }

.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.form-row { display: flex; flex-direction: column; gap: 8px; margin-bottom:20px; }
.form-row label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
}
.form-row input,
.form-row textarea,
.form-row select {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: var(--radius-s);
  padding: 13px 16px;
  color: var(--ink);
  transition: border-color 0.25s ease;
  resize: vertical;
  color:#000;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus { border-color: #f76b3f; }
.form-note {font-size: 18px; text-align: center; color: #008000 !important; margin-top: 20px; border-radius: 15px;}

@media (max-width: 900px) {
.contact__grid { grid-template-columns: 1fr; gap: 30px; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { padding: 64px 0 36px; border-top: 1px solid var(--line); background: #071f41;}
.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  
  
}
.site-footer__logo { height: 45px; opacity: 0.85; }
.back-to-top {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s var(--ease-out-quart);
}
.back-to-top:hover { background: var(--copper); border-color: var(--copper); color: #16110c; }

.site-footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.site-footer__grid nav ul { display: flex; gap: 26px; }
.site-footer__grid nav a { font-size: 13.5px; font-weight: 600; color: var(--ink-dim); }
.site-footer__grid nav a:hover { color: var(--ink); }
.site-footer__note { font-size: 13px; color: #a4a6ac; max-width: 34ch; text-align: right; }

.site-footer__bottom {
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-faint);
}

@media (max-width: 700px) {
  .site-footer__grid { flex-direction: column; gap: 20px; }
  .site-footer__note { text-align: left; }
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(8,9,10,0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out-quart), visibility 0.4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__stage {
  max-width: min(90vw, 900px);
  max-height: 84vh;
  transform: scale(0.94);
  transition: transform 0.45s var(--ease-out-quart);
}
.lightbox.is-open .lightbox__stage { transform: scale(1); }
.lightbox__stage img {
  max-width: 100%;
  max-height: 84vh;
  border-radius: 12px;
  box-shadow: 0 40px 90px -20px rgba(0,0,0,0.7);
}
.lightbox__close {
  position: absolute;
  top: 28px; right: 32px;
  font-size: 32px;
  width: 48px; height: 48px;
  color: var(--ink);
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}
.lightbox__nav:hover { background: var(--copper); border-color: var(--copper); color: #16110c; }
.lightbox__nav--prev { left: 28px; }
.lightbox__nav--next { right: 28px; }

@media (max-width: 640px) {
  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }
  
}

/* =========================================================
   SCROLL REVEAL (base state, animated via GSAP)
   ========================================================= */
.reveal-up { opacity: 1; }
.js-not-ready .reveal-up { opacity: 0; transform: translateY(28px); }

/* =========================================================
   LAZY IMAGE FADE-IN
   ========================================================= */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.6s var(--ease-out-quart);
}
img.is-loaded { opacity: 1; }



@media (max-width: 1400px) {
	.hero__foot{margin-top: 38px;}
}

@media (max-width: 1200px) {
.brand__logo{height: 58px;}
.hero {padding-top: 60px; padding-bottom: 30px; min-height: 80svh;}
.stats{padding: 60px 0;}
.work{padding: 90px 0 80px;}
.eyebrow{margin-bottom: 18px;}
.section-desc{margin-top: 18px;}
.section-head{margin-bottom: 50px;}
.filters{margin-bottom: 40px;}
.project-card__body {padding: 24px 22px 28px;}
.process{padding: 80px 0;}
.timeline__item {gap: 28px; padding: 30px 0;}
.contact{padding: 90px 0 80px;}
.contact__email{margin-top: 25px;}
.contact__form{padding: 30px;}
.site-footer{padding: 60px 0 30px;}
.site-footer__top{margin-bottom: 40px;}
.site-footer__grid{padding-bottom: 28px;}
.hero__title{font-size: 70px;}
.section-title{font-size: 50px;}
}

@media (max-width: 1024px) {
.hero__title{font-size: 55px;}
.section-title{font-size: 45px;}
}

@media (max-width: 900px) {
.brand__logo{height: 50px;}
.hero{min-height: 70svh; padding-top: 40px; padding-bottom: 20px;}
.marquee{padding: 30px 0;}
.stats{padding: 50px 0;}
.work{padding: 60px 0; !important}
.eyebrow{margin-bottom: 14px;}
.section-head{margin-bottom: 30px;}
.filters{margin-bottom: 30px; display: flex;flex-wrap: nowrap;overflow-x: auto; overflow-y: hidden; white-space: nowrap; width: 100%; padding: 0 12px 10px; box-sizing: border-box; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: #f66835 #1d2b45;}
.filters::-webkit-scrollbar {height: 6px;}
.filter-btn {flex: 0 0 auto; margin: 0;}
.process{padding: 60px 0 !important;}
.timeline__item{gap: 20px; padding: 22px 0;}
.contact{padding: 60px 0 !important;}
.site-footer__top{margin-bottom: 32px;}
.site-footer__bottom{padding-top: 20px;}
.site-footer{padding: 50px 0 20px;}
.stat{padding-right: 0;}
.hero__title{font-size: 50px;}
.section-title{font-size: 40px;}
.hero__foot{margin-top: 28px;}

}

@media (max-width: 767px) {
.container{padding: 0 15px;}
.hero__foot{margin-top: 20px; gap: 22px;}
.hero{min-height: auto; padding-top: 40px;}
.hero__bg{display: none;}
.hero__inner{padding-top: 60px; padding-bottom: 30px;}
.hero__foot{gap: 20px; margin-top: 20px;}
.stats{padding: 35px 0;}
.section-desc {max-width: 100%;}
.work{padding: 50px 0 !important;}
.brand__logo{height: 45px;}
.eyebrow{margin-bottom: 10px;}
.section-desc {margin-top: 12px;}
.section-head{margin-bottom: 22px;}
.filters{margin-bottom: 22px;}
.project-card__body {padding: 20px 16px 25px; gap: 12px;}
.project-grid {gap: 20px;}
.contact__email{margin-top: 15px;}
.form-note {font-size: 16px; padding: 12px;}
.contact__form {padding: 25px 20px;}
.site-footer__top{margin-bottom: 28px;}
.site-footer__grid{padding-bottom: 22px;}
.site-footer__bottom{padding-top: 18px;}
.site-header__inner{padding-bottom:14px !important;}
.hero__title{max-width: 100%;}
.hero__title{font-size: 40px;}
.section-title{font-size: 35px;}

}
@media (max-width: 640px) {
  .timeline__body h3 {margin-bottom:5px !important; font-size:20px;}
  .timeline__item {gap:10px !important;}
  .hero__title{font-size: 35px;}
 .section-title{font-size: 30px;}
 .eyebrow{align-items:baseline;}
  }

