:root {
  --ink: #080808;
  --graphite: #141414;
  --panel: #1c1c1a;
  --paper: #f3efe6;
  --muted: #c9c2b5;
  --line: rgba(243, 239, 230, 0.16);
  --acid: #c9ff3d;
  --ember: #ff5f2e;
  --cyan: #52e7ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 18px 18px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--paper);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.header-cta {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--paper);
  color: var(--acid);
  font-family: "Archivo Black", sans-serif;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  color: rgba(243, 239, 230, 0.76);
}

.nav a:hover,
.contact-links a:hover {
  color: var(--acid);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--paper);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button.primary {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
}

.button.secondary {
  color: var(--paper);
  background: rgba(243, 239, 230, 0.06);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: end;
  gap: clamp(28px, 5vw, 76px);
  padding: 140px clamp(20px, 6vw, 86px) 72px;
  isolation: isolate;
}

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

.hero-media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.96), rgba(8, 8, 8, 0.72) 45%, rgba(8, 8, 8, 0.42)),
    linear-gradient(0deg, rgba(8, 8, 8, 1), transparent 44%);
}

.scanline {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background: repeating-linear-gradient(0deg, transparent 0 8px, rgba(201, 255, 61, 0.06) 9px);
  mix-blend-mode: screen;
}

.hero-content {
  max-width: 980px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--acid);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

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

h1,
h2 {
  font-family: "Archivo Black", sans-serif;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 9vw, 8.8rem);
}

h2 {
  font-size: clamp(2.35rem, 5.8vw, 6rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.05;
}

.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  align-self: center;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(20, 20, 20, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel span,
.project-card span,
.service span,
.timeline span {
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.hero-panel strong {
  display: block;
  margin: 6px 0 14px;
  color: var(--acid);
  font-family: "Archivo Black", sans-serif;
  font-size: 3.4rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-panel p {
  color: var(--muted);
  margin-bottom: 0;
}

.section-band {
  background: var(--paper);
  color: var(--ink);
}

.intro,
.services,
.proof {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 6vw, 86px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.section-band .eyebrow,
.section-band .section-kicker,
.section-band .service span {
  color: #6b7d00;
}

.intro-copy p {
  max-width: 780px;
  color: #403d38;
  font-size: clamp(1.06rem, 1.45vw, 1.28rem);
}

.projects,
.process,
.contact {
  padding: clamp(78px, 10vw, 150px) clamp(20px, 6vw, 86px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

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

.project-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.project-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.project-card.large {
  grid-row: span 2;
  min-height: 860px;
}

.project-card img {
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 600ms ease, opacity 220ms ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 8, 8, 0.9), transparent 62%);
}

.project-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
}

.project-card h3 {
  margin: 10px 0;
}

.project-card p {
  max-width: 520px;
  color: var(--muted);
  margin-bottom: 0;
}

.project-card:hover img {
  transform: scale(1.04);
  opacity: 0.92;
}

.real-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 0 clamp(20px, 6vw, 86px) clamp(78px, 10vw, 140px);
}

.real-gallery img {
  height: clamp(210px, 24vw, 360px);
  object-fit: cover;
  border: 1px solid var(--line);
}

.real-gallery img:nth-child(even) {
  transform: translateY(28px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(8, 8, 8, 0.18);
  border-left: 1px solid rgba(8, 8, 8, 0.18);
}

.service {
  min-height: 250px;
  padding: 24px;
  border-right: 1px solid rgba(8, 8, 8, 0.18);
  border-bottom: 1px solid rgba(8, 8, 8, 0.18);
}

.service p {
  color: #403d38;
  margin: 28px 0 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline li {
  min-height: 310px;
  padding: 30px;
  background: var(--graphite);
}

.timeline h3 {
  margin: 34px 0 14px;
}

.timeline p {
  color: var(--muted);
  margin-bottom: 0;
}

.proof {
  display: grid;
  grid-template-columns: 0.75fr 0.75fr 1.5fr;
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
}

.proof-stat strong {
  display: block;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.9;
}

.proof-stat span {
  color: #403d38;
  font-weight: 800;
  text-transform: uppercase;
}

.quote {
  margin: 0;
  color: #24221f;
  font-size: clamp(1.45rem, 2.6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(34px, 7vw, 100px);
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 32px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--graphite);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #0f0f0e;
  color: var(--paper);
  font: inherit;
  padding: 14px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--acid);
}

textarea {
  resize: vertical;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 1.4em;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 86px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 30;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: #25d366;
  color: #07140b;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.44);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

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

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .section-grid,
  .project-grid,
  .real-gallery,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: end;
    padding-top: 124px;
  }

  .hero-panel {
    max-width: 420px;
  }

  .project-card,
  .project-card.large {
    min-height: 460px;
  }

  .services-grid,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    font-size: 0.86rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 92svh;
    padding: 110px 18px 44px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.9rem);
  }

  .hero-actions,
  .footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .projects,
  .process,
  .contact,
  .real-gallery,
  .intro,
  .services,
  .proof {
    padding-left: 18px;
    padding-right: 18px;
  }

  .services-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .real-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-bottom: 70px;
  }

  .real-gallery img {
    height: 210px;
  }

  .real-gallery img:nth-child(even) {
    transform: none;
  }

  .project-card,
  .project-card.large {
    min-height: 390px;
  }

  .contact-form {
    padding: 18px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }
}
