/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-sage:    #8aac75;
  --green-mid:     #4d7a3c;
  --green-dark:    #354b31;
  --green-deep:    #0f1e0d;
  --green-deeper:  #090e08;
  --cream:         #f2ede6;
  --text-muted:    #9db08e;
  --text-dim:      #5a7050;
  --white:         #ffffff;
  --charcoal:      #1a1e19;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --nav-h: 72px;
  --radius: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--green-deeper);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

/* ── Typography ────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.section-title em {
  font-style: italic;
  color: var(--green-sage);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 44ch;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 4rem;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary {
  background: var(--green-sage);
  color: var(--green-deep);
}
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(138, 172, 117, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(138, 172, 117, 0.35);
}
.btn-ghost:hover {
  border-color: var(--green-sage);
  color: var(--green-sage);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  transform: translateZ(0);        /* force own GPU compositing layer on mobile */
  -webkit-transform: translateZ(0);
  transition: background 0.4s, backdrop-filter 0.4s;
}
#navbar.scrolled {
  background: rgba(9, 14, 8, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(138, 172, 117, 0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo-icon {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav-logo:hover .nav-logo-icon { opacity: 0.85; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: var(--font-sans);
}
.nav-logo-text {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--green-sage);
  text-transform: lowercase;
}
.nav-logo-text span {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links .nav-cta {
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  border: 1px solid rgba(138, 172, 117, 0.4);
  color: var(--green-sage);
  font-weight: 500;
  transition: var(--transition);
}
.nav-links .nav-cta:hover {
  background: var(--green-sage);
  color: var(--green-deep);
  border-color: var(--green-sage);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-right: -6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 3px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 0;           /* creates stacking context — keeps hero-bg/noise BELOW navbar */
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 4rem) clamp(1.5rem, 5vw, 6rem) 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(53, 75, 49, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(15, 30, 13, 0.8) 0%, transparent 60%),
    var(--green-deeper);
  z-index: 0;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 1.8rem;
}
.title-line {
  display: block;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
}
.title-line:nth-child(1) { animation-delay: 0.35s; }
.title-line:nth-child(2) { animation-delay: 0.5s; }
.title-line:nth-child(3) { animation-delay: 0.65s; }
.hero-title .accent {
  color: var(--green-sage);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.75s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease forwards;
}

.hero-logo-mark {
  position: absolute;
  right: clamp(-2rem, -4vw, -6rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: clamp(320px, 42vw, 600px);
  opacity: 0.07;
  pointer-events: none;
  animation: floatLogo 8s ease-in-out infinite;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.4s ease forwards;
}
.scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--green-sage));
  margin: 0 auto;
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* ── About ─────────────────────────────────────────────────── */
.about {
  padding: 8rem 0;
  background: var(--green-deep);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138,172,117,0.2), transparent);
}

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

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
  max-width: 50ch;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(138,172,117,0.15);
}
.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--green-sage);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat span {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.about-visual {
  position: relative;
  height: 480px;
}
.about-logo-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  opacity: 0.06;
}
.about-logo-bg img { width: 85%; height: auto; }

.about-card {
  position: absolute;
  z-index: 1;
  border-radius: var(--radius);
  border: 1px solid rgba(138,172,117,0.15);
  background: rgba(15,30,13,0.7);
  backdrop-filter: blur(12px);
  transition: transform 0.4s ease, border-color 0.3s;
}
.about-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(138,172,117,0.4);
}
.about-card--1 { top: 10%;  left: 0;    width: 220px; padding: 2rem; }
.about-card--2 { top: 38%;  right: 0;   width: 200px; padding: 1.75rem; }
.about-card--3 { bottom: 8%; left: 18%; width: 210px; padding: 1.75rem; }

.card-inner { text-align: center; }
.card-icon {
  display: block;
  font-size: 1.8rem;
  color: var(--green-sage);
  margin-bottom: 0.75rem;
  opacity: 0.7;
}
.card-inner p {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Services ──────────────────────────────────────────────── */
.services {
  padding: 8rem 0;
  background: var(--green-deeper);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 1.5px solid rgba(138,172,117,0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: rgba(13, 26, 11, 0.6);
  transition: background var(--transition);
  cursor: default;
}
.service-card::before {
  content: attr(data-index);
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.service-card:hover {
  background: rgba(53, 75, 49, 0.25);
}
.service-card:hover .service-icon svg {
  color: var(--green-sage);
  transform: scale(1.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
}
.service-icon svg {
  width: 100%;
  height: 100%;
  color: var(--text-dim);
  transition: color 0.3s, transform 0.3s;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}
.service-card:hover h3 { color: var(--green-sage); }
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Border between cells */
.service-card + .service-card { border-left: 1.5px solid rgba(138,172,117,0.08); }
.service-card:nth-child(3n+1) { border-left: none; }
.services-grid > .service-card:nth-child(n+4) { border-top: 1.5px solid rgba(138,172,117,0.08); }

/* ── Reel Marquee ──────────────────────────────────────────── */
.reel-banner {
  overflow: hidden;
  background: var(--green-dark);
  padding: 1rem 0;
  border-top: 1px solid rgba(138,172,117,0.15);
  border-bottom: 1px solid rgba(138,172,117,0.15);
}
.reel-marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.reel-marquee span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-sage);
  opacity: 0.7;
  padding: 0 0.5rem;
  flex-shrink: 0;
}

/* ── Work ──────────────────────────────────────────────────── */
.work {
  padding: 8rem 0;
  background: var(--green-deep);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-bottom: 4rem;
}
.work-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.work-card:hover { transform: scale(1.02); }
.work-card:hover .work-overlay { opacity: 1; }
.work-card--tall { grid-row: span 2; }
.work-card--wide { grid-column: span 2; }

.work-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-placeholder--1 { background: linear-gradient(135deg, #1a2e18 0%, #0d1a0b 100%); }
.work-placeholder--2 { background: linear-gradient(135deg, #0f2210 0%, #1a3319 100%); }
.work-placeholder--3 { background: linear-gradient(135deg, #152a12 0%, #0a1a08 100%); }
.work-placeholder--4 { background: linear-gradient(135deg, #1e3318 0%, #112010 100%); }

.work-ph-inner {
  opacity: 0.15;
  color: var(--green-sage);
}
.work-ph-inner svg { width: 80px; height: 80px; }
.work-card--tall .work-ph-inner svg,
.work-card--wide .work-ph-inner svg { width: 100px; height: 100px; }

.work-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(9,14,8,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.work-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 0.4rem;
}
.work-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
}

.work-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2.5rem 0 0;
  border-top: 1px solid rgba(138,172,117,0.12);
}
.work-cta p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 40ch;
}

/* ── Process ───────────────────────────────────────────────── */
.process {
  padding: 8rem 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: 'KALOPSIA';
  position: absolute;
  font-family: var(--font-serif);
  font-size: 18vw;
  font-weight: 300;
  color: rgba(138,172,117,0.03);
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: 0.1em;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 1rem;
}

.process-step {
  flex: 1;
  padding: 0 2rem;
}
.process-step:first-child { padding-left: 0; }
.process-step:last-child  { padding-right: 0; }

.process-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(138,172,117,0.4), rgba(138,172,117,0.1));
  align-self: center;
  flex-shrink: 0;
  margin-top: -1.5rem;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(138,172,117,0.2);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Contact ───────────────────────────────────────────────── */
.contact {
  padding: 8rem 0;
  background: var(--green-deeper);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138,172,117,0.2), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 42ch;
}

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--green-sage);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 0.25rem;
}
.contact-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Form */
.contact-form-wrap {
  background: rgba(15, 30, 13, 0.5);
  border: 1px solid rgba(138,172,117,0.12);
  border-radius: 16px;
  padding: 2.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(138,172,117,0.05);
  border: 1px solid rgba(138,172,117,0.15);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(138,172,117,0.5);
  background: rgba(138,172,117,0.08);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238aac75' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option { background: var(--green-deep); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 0.8rem;
  color: var(--green-sage);
  text-align: center;
  min-height: 1.2em;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--green-deep);
  border-top: 1px solid rgba(138,172,117,0.1);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo { height: 80px; width: auto; margin-bottom: 1.25rem; opacity: 0.9; }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.8;
}

.footer-links h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 1.25rem;
}
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links ul a {
  font-size: 0.875rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links ul a:hover { color: var(--cream); }

.footer-social h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 1.25rem;
}
.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(138,172,117,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: var(--transition);
}
.social-links a:hover {
  border-color: var(--green-sage);
  color: var(--green-sage);
  transform: translateY(-3px);
}
.social-links svg { width: 18px; height: 18px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(138,172,117,0.08);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(138,172,117,0.4) !important;
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50%       { transform: translateY(-53%) scale(1.015); }
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid   { grid-template-columns: 1fr; gap: 4rem; }
  .about-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; gap: 2.5rem; }
  .process-connector { display: none; }
  .process-step { padding: 0; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(9, 14, 8, 0.97);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem 2rem;
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    border-bottom: 1px solid rgba(138,172,117,0.1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(138,172,117,0.06); }
  .nav-links a { display: block; padding: 1rem 0; font-size: 1rem; }
  .nav-links .nav-cta { border: none; padding: 1rem 0; }
  .hamburger { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 4rem; }
  .hero-logo-mark { display: none; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(3n+1) { border-left: 1.5px solid rgba(138,172,117,0.08); }
  .service-card:nth-child(2n+1) { border-left: none; }
  .services-grid > .service-card:nth-child(n+3) { border-top: 1.5px solid rgba(138,172,117,0.08); }

  .work-grid { grid-template-columns: 1fr; }
  .work-card--tall,
  .work-card--wide { grid-column: 1; grid-row: auto; }
  .work-overlay { opacity: 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card + .service-card { border-left: none; border-top: 1.5px solid rgba(138,172,117,0.08); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .nav-logo-icon { height: 44px; }
  .nav-logo-text { font-size: 0.85rem; }
  .nav-logo-text span { font-size: 0.5rem; }
}

/* Mobile: always-on dark nav background + bigger logo */
@media (max-width: 768px) {
  #navbar {
    background: rgba(9, 14, 8, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(138, 172, 117, 0.1);
  }
  #navbar.scrolled {
    background: rgba(9, 14, 8, 0.95);
  }
  .nav-logo-icon { height: 46px; }
  .nav-logo-text { font-size: 0.95rem; }
}
