/* ================================
   TOP PAYSAGES — Stylesheet
   Modern · Futuristic · Responsive
   ================================ */

:root {
  /* Colors */
  --bg: #0a1410;
  --bg-elevated: #122019;
  --bg-light: #1a2d24;
  --text: #f2eee3;
  --text-muted: #8a9389;
  --text-dim: #5a635c;
  --accent: #b5d061;
  --accent-bright: #d6f084;
  --accent-deep: #6b8542;
  --brand-green: #1b3d2a;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.08);

  /* Sizing */
  --container: 1320px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-full: 999px;

  /* Type */
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

::selection { background: var(--accent); color: var(--bg); }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: normal;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  width: 100%;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(10, 20, 16, 0.5);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.nav.is-scrolled {
  padding: 0.65rem 0;
  background: rgba(10, 20, 16, 0.85);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: block;
  flex-shrink: 0;
  transition: opacity 0.2s var(--ease);
}
.logo img { height: 44px; width: auto; transition: height 0.3s var(--ease); }
.nav.is-scrolled .logo img { height: 36px; }
.logo:hover { opacity: 0.8; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--accent);
}
.nav-cta:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px var(--accent);
}
.nav-cta svg { transition: transform 0.3s var(--ease); }
.nav-cta:hover svg { transform: translateX(3px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 9rem 0 6rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 3px,
    rgba(0, 0, 0, 0.12) 4px
  );
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
  opacity: 0.35;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(181, 208, 97, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(181, 208, 97, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.45) saturate(1.1) contrast(1.05);
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(181, 208, 97, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10, 20, 16, 0.55) 0%, rgba(10, 20, 16, 0.3) 35%, rgba(10, 20, 16, 0.85) 80%, rgba(10, 20, 16, 1) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1.25rem 0.55rem 1rem;
  background: rgba(10, 20, 16, 0.55);
  border: 1px solid rgba(181, 208, 97, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2.5rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-weight: 600;
  box-shadow: 0 0 24px -4px rgba(181, 208, 97, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent), 0 0 4px var(--accent);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin-bottom: 1.75rem;
  max-width: 18ch;
  text-transform: uppercase;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  display: inline-block;
  text-shadow: 0 0 40px rgba(181, 208, 97, 0.35);
}

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  color: var(--text-muted);
  max-width: 55ch;
  margin-bottom: 2.75rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-meta {
  position: absolute;
  bottom: 4rem;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  gap: 2.5rem;
  padding: 1.25rem 1.75rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hero-meta-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
.hero-meta-value {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent), 0 0 4px var(--accent);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: var(--gutter);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--text-dim), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.85rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  font-family: inherit;
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-large { padding: 1.15rem 2.15rem; font-size: 1.02rem; }
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 0 0 0 transparent, 0 6px 20px -8px var(--accent);
}
.btn-primary:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 24px -2px var(--accent), 0 16px 40px -8px var(--accent);
}
.btn-primary svg { transition: transform 0.3s var(--ease); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost {
  background: var(--glass);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: var(--glass-strong);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ===== Manifesto ===== */
.manifesto {
  padding: clamp(5rem, 12vw, 10rem) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: var(--accent);
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.25rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 32ch;
  margin: 0 auto;
  text-align: center;
}
.manifesto-text em {
  font-style: italic;
  color: var(--accent);
  font-weight: 700;
  text-shadow: 0 0 30px rgba(181, 208, 97, 0.3);
}
.text-accent { color: var(--accent); }

/* ===== Section helpers ===== */
.section {
  padding: clamp(5rem, 11vw, 11rem) 0;
  position: relative;
}
.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 60ch;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.8vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
  text-shadow: 0 0 30px rgba(181, 208, 97, 0.3);
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1.25rem;
  max-width: 50ch;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  position: relative;
  padding: 2.5rem 2rem 2.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.5s var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(181, 208, 97, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: -1;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  background: var(--bg-light);
}
.service-card:hover::before,
.service-card:hover::after { opacity: 1; }
.service-num {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 0.82rem;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.service-num::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}
.service-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 1.5rem;
  stroke-width: 1.3;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
  line-height: 1.15;
  text-transform: uppercase;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ===== About ===== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-image:hover img { transform: scale(1.03); }
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 20, 16, 0.4));
  pointer-events: none;
}
.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(10, 20, 16, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(181, 208, 97, 0.3);
  border-radius: var(--radius-sm);
  z-index: 2;
  box-shadow: 0 0 30px -8px rgba(181, 208, 97, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 20px rgba(181, 208, 97, 0.4);
}
.about-badge-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-content .section-title { margin-bottom: 2rem; }
.about-content .lead {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  max-width: 50ch;
  line-height: 1.5;
}
.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 50ch;
  font-size: 1.02rem;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat { position: relative; }
.stat-num {
  font-family: var(--font-display);
  display: inline-block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 30px rgba(181, 208, 97, 0.25);
}
.stat-plus {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--accent);
  font-weight: 700;
  margin-left: 0.05em;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== Réalisations ===== */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}
.realisation {
  grid-column: span 6;
  cursor: pointer;
}
.realisation--wide { grid-column: span 12; }
.realisation-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-elevated);
}
.realisation--wide .realisation-image { aspect-ratio: 21/9; }
.realisation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transition: transform 0.7s var(--ease);
}
.realisation:hover .realisation-image img { transform: scale(1.04); }
.realisation-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.45rem 0.85rem;
  background: rgba(10, 20, 16, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(181, 208, 97, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  box-shadow: 0 0 16px -4px rgba(181, 208, 97, 0.3);
}
.realisation-info {
  padding: 1.5rem 0 0;
}
.realisation-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.realisation-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Process ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  position: relative;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  transition: border-color 0.4s var(--ease);
}
.step::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.6s var(--ease);
}
.step.is-visible::before { width: 30%; }
.step:hover::before { width: 100%; }
.step-num {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.step-num::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.step p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 30ch;
}

/* ===== CTA Section ===== */
.cta-section {
  position: relative;
  padding: clamp(5rem, 11vw, 10rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.cta-blob--1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -200px; right: -200px;
  animation: blobFloat 18s ease-in-out infinite;
}
.cta-blob--2 {
  width: 500px; height: 500px;
  background: var(--brand-green);
  bottom: -150px; left: -150px;
  animation: blobFloat 22s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.1); }
  66% { transform: translate(-50px, 50px) scale(0.95); }
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-inner .eyebrow { margin-bottom: 1.5rem; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 1.5rem;
  font-weight: 900;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}
.cta-title em {
  font-style: italic;
  color: var(--accent);
  text-shadow: 0 0 40px rgba(181, 208, 97, 0.4);
}
.cta-sub {
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
footer { padding: 5rem 0 2rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 60px; margin-bottom: 1.5rem; }
.footer-brand p { color: var(--text-muted); max-width: 32ch; }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sequential reveal for grids */
.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.08s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.16s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.24s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.32s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.4s; }
.process-steps .step:nth-child(1) { transition-delay: 0s; }
.process-steps .step:nth-child(2) { transition-delay: 0.12s; }
.process-steps .step:nth-child(3) { transition-delay: 0.24s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav-links { gap: 1.75rem; }
  .nav-links a { font-size: 0.9rem; }
  .hero-meta { gap: 1.5rem; padding: 1rem 1.25rem; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image { max-width: 500px; }
  .realisation { grid-column: span 12; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.is-mobile {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 99;
    padding: 6rem 2rem 2rem;
    animation: slideDown 0.4s var(--ease) forwards;
  }
  .nav-links.is-mobile a { font-size: 1.5rem; font-family: var(--font-display); }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero {
    min-height: 88vh;
    min-height: 88dvh;
    padding: 6rem 0 2.5rem;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
  }
  .hero-meta {
    align-self: stretch;
  }
  .hero-bg img { object-position: center 38%; }
  .hero-bg::after {
    background:
      radial-gradient(ellipse at 70% 30%, rgba(181, 208, 97, 0.08) 0%, transparent 50%),
      linear-gradient(180deg, rgba(10, 20, 16, 0.65) 0%, rgba(10, 20, 16, 0.45) 30%, rgba(10, 20, 16, 0.92) 75%, rgba(10, 20, 16, 1) 100%);
  }
  .hero-content { padding-top: 0; }
  .hero-eyebrow {
    font-size: 0.62rem;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.1em;
  }
  .hero-title {
    font-size: clamp(2rem, 8.5vw, 3.25rem);
    margin-bottom: 1rem;
    max-width: none;
    line-height: 1.02;
  }
  .hero-sub {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    max-width: none;
  }
  .hero-meta {
    position: static;
    margin: 1.75rem var(--gutter) 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    width: auto;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
  }
  .hero-meta-item {
    flex-direction: column;
    gap: 0.2rem;
    flex: 1 1 auto;
    min-width: 0;
  }
  .hero-meta-label { font-size: 0.55rem; letter-spacing: 0.12em; }
  .hero-meta-value { font-size: 0.78rem; }
  .hero-scroll { display: none; }
  .hero-actions { flex-direction: column; width: 100%; gap: 0.6rem; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 0.82rem 1.3rem; font-size: 0.9rem; }

  /* Section spacing tighter */
  .section { padding: clamp(3.5rem, 9vw, 6rem) 0; }
  .section-header { margin-bottom: 2.5rem; }
  .section-title { font-size: clamp(1.5rem, 6.5vw, 2.25rem); letter-spacing: -0.03em; }
  .section-sub { font-size: 0.92rem; margin-top: 0.85rem; }
  .eyebrow { font-size: 0.7rem; margin-bottom: 1rem; gap: 0.65rem; letter-spacing: 0.22em; }
  .eyebrow::before { width: 24px; }
  .about-content .section-title { font-size: clamp(1.5rem, 6.5vw, 2.25rem); }
  .cta-title { font-size: clamp(1.65rem, 7vw, 2.5rem); }

  /* Manifesto smaller */
  .manifesto { padding: clamp(3.5rem, 9vw, 6rem) 0; }
  .manifesto-text { font-size: clamp(1.15rem, 4.8vw, 1.6rem); max-width: 28ch; }

  /* Service cards smaller */
  .services-grid { gap: 0.85rem; }
  .service-card { padding: 1.6rem 1.4rem 1.4rem; }
  .service-num { font-size: 0.7rem; margin-bottom: 1.25rem; }
  .service-icon { width: 28px; height: 28px; margin-bottom: 1rem; }
  .service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
  .service-card p { font-size: 0.88rem; }

  /* About */
  .about-content .lead { font-size: 1rem; }
  .about-content p { font-size: 0.92rem; }

  /* Realisations */
  .realisations-grid { gap: 1rem; }
  .realisation-image { aspect-ratio: 1/1; }
  .realisation-info { padding-top: 1rem; }
  .realisation-info h3 { font-size: 1.1rem; }
  .realisation-info p { font-size: 0.88rem; }
  .realisation-tag { font-size: 0.6rem; padding: 0.35rem 0.7rem; top: 0.85rem; left: 0.85rem; }
  .about-image { aspect-ratio: 3/4; max-width: 360px; margin: 0 auto; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 1.75rem; }
  .step-num { font-size: 0.7rem; margin-bottom: 1.25rem; }
  .step h3 { font-size: 1.25rem; }
  .step p { font-size: 0.92rem; }

  /* CTA */
  .cta-section { padding: clamp(3.5rem, 9vw, 6rem) 0; }
  .cta-sub { font-size: 0.92rem; margin-bottom: 2rem; }

  /* Stats (legacy if returned) */
  .stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 1; }
  .footer-brand img { height: 48px; }
  .footer-col h4 { font-size: 0.78rem; }
  .footer-col a { font-size: 0.88rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 5rem 0 1.75rem; min-height: 88dvh; }
  .hero-title { font-size: clamp(1.85rem, 8.5vw, 2.5rem); }
  .hero-sub { font-size: 0.88rem; margin-bottom: 1.5rem; }
  .hero-eyebrow { font-size: 0.58rem; padding: 0.32rem 0.75rem; }
  .hero-meta { gap: 0.65rem 1rem; padding: 0.75rem 0.9rem; }
  .hero-meta-label { font-size: 0.52rem; }
  .hero-meta-value { font-size: 0.74rem; }
  .hero-actions .btn { padding: 0.78rem 1.2rem; font-size: 0.88rem; }
  .service-card { padding: 1.4rem 1.25rem 1.25rem; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p { font-size: 0.85rem; }
  .stats { grid-template-columns: 1fr; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
