/* ============================================================
   Denver Wallpaper Installation Team — style.css
   Visual direction: Precision Craft
     Stone-white light foundations, deep graphite dark sections,
     forest-green accent. Editorial serif display, Manrope UI.
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Light surfaces */
  --stone-50: #fafaf8;
  --stone-100: #f3f1eb;
  --stone-200: #e8e3d8;
  --stone-300: #d4cebe;

  /* Dark surfaces */
  --graph-900: #0c0c12;
  --graph-800: #141420;
  --graph-700: #1d1d2c;
  --graph-600: #252534;
  --graph-500: #2f2f3e;

  /* Text on light */
  --ink-1: #111118;
  --ink-2: #3d3d4b;
  --ink-3: #72727e;

  /* Text on dark */
  --chalk-50: #f2f0eb;
  --chalk-100: #e0ddd4;
  --chalk-200: #b8b4a8;
  --chalk-300: #888480;

  /* Accent — forest green */
  --green: #1a5c4f;
  --green-light: #1e6e5f;
  --green-muted: #5cb89e;
  --green-pale: rgba(26, 92, 79, 0.08);
  --green-line: rgba(26, 92, 79, 0.22);

  /* Legacy aliases (referenced by HTML inline styles) */
  --onyx-900: var(--graph-900);
  --onyx-800: var(--graph-800);
  --onyx-700: var(--graph-700);
  --onyx-600: var(--graph-600);
  --onyx-500: var(--graph-500);
  --bone-50: var(--stone-50);
  --bone-100: var(--stone-100);
  --bone-200: var(--stone-200);
  --bone-300: var(--stone-300);
  --champagne-50: var(--chalk-50);
  --champagne-100: var(--chalk-100);
  --champagne-200: var(--chalk-200);
  --champagne-300: var(--chalk-300);
  --copper: var(--green);
  --copper-bright: var(--green-light);
  --copper-soft: var(--green-pale);
  --copper-line: var(--green-line);
  --ink-deep: var(--graph-800);
  --ink-shadow: var(--graph-900);
  --mist-soft: var(--stone-100);
  --mist-bright: var(--chalk-50);
  --slate-text: var(--ink-2);
  --sea-glass: var(--green-muted);
  --accent: var(--green);

  --section-gap: 128px;
  --container: 1240px;
  --radius-sm: 3px;
  --radius: 6px;
  --radius-lg: 12px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--graph-900);
}
body {
  font-family:
    "Manrope",
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  color: var(--ink-2);
  background: var(--stone-50);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--green);
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}
a:hover {
  color: var(--green-light);
}
ul,
ol {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fraunces", "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink-1);
}
::selection {
  background: var(--green);
  color: #fff;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.text-center {
  text-align: center;
}
.text-accent {
  color: var(--green);
}

.section-dark {
  background: var(--graph-800);
  color: var(--chalk-100);
}
.section-darker {
  background: var(--graph-900);
  color: var(--chalk-100);
}
.section-light {
  background: var(--stone-100);
  color: var(--ink-2);
}
.section-white {
  background: var(--stone-50);
  color: var(--ink-2);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-darker h1,
.section-darker h2,
.section-darker h3,
.section-darker h4 {
  color: var(--chalk-50);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--radius);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: #fff;
  box-shadow: 0 6px 24px rgba(26, 92, 79, 0.32);
  opacity: 1;
}
.btn-secondary {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-secondary:hover {
  background: var(--green);
  color: #fff;
  opacity: 1;
}
.btn-tertiary {
  background: rgba(242, 240, 235, 0.95);
  color: var(--graph-800);
  border-color: rgba(242, 240, 235, 0.95);
}
.btn-tertiary:hover {
  background: #fff;
  color: var(--graph-800);
  opacity: 1;
}
.btn-sm {
  height: 40px;
  padding: 0 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--graph-900);
  color: var(--chalk-200);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26, 92, 79, 0.18);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.top-bar a {
  color: var(--chalk-200);
  font-size: 12px;
}
.top-bar a:hover {
  color: var(--chalk-50);
}
.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--graph-800);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(26, 92, 79, 0.14);
  backdrop-filter: saturate(120%) blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--chalk-50);
  font-size: 16px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.01em;
}
.logo > div {
  font-family: "Fraunces", serif;
  font-weight: 600;
  letter-spacing: -0.005em;
  font-size: 17px;
  line-height: 1.1;
}
.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 92, 79, 0.4);
}
.logo-sub {
  font-size: 10px;
  color: var(--green-muted);
  font-weight: 600;
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--chalk-100);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:not(.btn):hover {
  color: var(--chalk-50);
  opacity: 1;
}
.nav-links .btn {
  margin-left: 8px;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--chalk-50);
  margin: 5px 0;
  transition: all 0.3s;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--graph-900);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.active {
  display: flex;
}
.mobile-nav a {
  color: var(--chalk-50);
  font-size: 22px;
  font-weight: 600;
  font-family: "Fraunces", serif;
}
.mobile-nav .close-nav {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--chalk-50);
  font-size: 28px;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--graph-900);
  padding: 152px 0 120px;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
  color: var(--chalk-50);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      55% 70% at 0% 100%,
      rgba(26, 92, 79, 0.22) 0%,
      transparent 65%
    ),
    radial-gradient(
      40% 55% at 100% 0%,
      rgba(26, 92, 79, 0.1) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 1;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  mix-blend-mode: luminosity;
  filter: contrast(1.1) saturate(0.65);
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-subtitle {
  display: inline-block;
  color: var(--green-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding: 6px 12px;
  background: rgba(26, 92, 79, 0.16);
  border: 1px solid rgba(26, 92, 79, 0.35);
  border-radius: var(--radius-sm);
}
.hero h1 {
  color: var(--chalk-50);
  font-size: clamp(42px, 5.6vw, 80px);
  max-width: 900px;
  margin-bottom: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.03;
}
.hero h1 em {
  font-style: italic;
  color: var(--green-muted);
  font-weight: 400;
}
.hero-text {
  color: var(--chalk-200);
  font-size: 18px;
  max-width: 640px;
  margin-bottom: 44px;
  line-height: 1.75;
  font-weight: 400;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: left;
}
.hero-stat .stat-value {
  color: var(--green-muted);
  font-family: "Fraunces", serif;
  font-size: 34px;
  font-weight: 600;
  display: block;
  line-height: 1;
}
.hero-stat .stat-label {
  color: var(--chalk-300);
  font-size: 11px;
  display: block;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Trust badges — inline strip with dividers */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(242, 240, 235, 0.1);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--chalk-200);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 24px 10px 0;
  margin-right: 24px;
  border-right: 1px solid rgba(242, 240, 235, 0.08);
}
.trust-badge:last-child {
  border-right: none;
  margin-right: 0;
}
.trust-badge svg {
  width: 14px;
  height: 14px;
  color: var(--green-muted);
  flex-shrink: 0;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 0 0 20px;
  font-size: 12px;
  color: var(--chalk-300);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.breadcrumb a {
  color: var(--green-muted);
}
.breadcrumb span {
  margin: 0 10px;
  color: var(--chalk-300);
}

/* ---------- Sections ---------- */
.section {
  padding: var(--section-gap) 0;
  position: relative;
}
.section-title {
  font-family: "Fraunces", serif;
  font-size: clamp(30px, 3.2vw, 48px);
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 17px;
  color: var(--ink-3);
  max-width: 720px;
  margin-bottom: 52px;
  line-height: 1.75;
}
.section-dark .section-subtitle,
.section-darker .section-subtitle {
  color: var(--chalk-200);
}

/* Section label — small tagged chip */
.section-label {
  display: inline-block;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 5px 10px;
  background: var(--green-pale);
  border: 1px solid var(--green-line);
  border-radius: var(--radius-sm);
}
.section-label::before {
  display: none;
}
.text-center .section-label {
  padding: 5px 10px;
}
.section-dark .section-label,
.section-darker .section-label {
  color: var(--green-muted);
  background: rgba(26, 92, 79, 0.18);
  border-color: rgba(26, 92, 79, 0.38);
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  gap: 20px;
}
.cards-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.cards-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.cards-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Light card — left accent border */
.card {
  background: var(--stone-50);
  border: 1px solid rgba(13, 13, 18, 0.07);
  border-left: 3px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  display: none;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(13, 13, 18, 0.11);
}
.card-icon {
  margin-bottom: 22px;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
}
.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}
.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-3);
  font-weight: 400;
}
.card-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--green);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.card-link:hover {
  color: var(--green-light);
}

/* Dark card */
.card-dark {
  background: var(--graph-700);
  border: 1px solid rgba(26, 92, 79, 0.14);
  border-left: 3px solid var(--green);
  color: var(--chalk-100);
}
.card-dark:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
}
.card-dark h3 {
  color: var(--chalk-50);
}
.card-dark p {
  color: var(--chalk-200);
}

/* ---------- Hero Metrics ---------- */
.hero-metrics {
  background: var(--stone-50);
  border: 1px solid rgba(13, 13, 18, 0.07);
  border-top: 3px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  box-shadow: 0 20px 60px rgba(13, 13, 18, 0.1);
}
.hero-metrics-header {
  max-width: 760px;
  margin-bottom: 44px;
}
.hero-metrics-header h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: -0.018em;
}

.hero-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(13, 13, 18, 0.07);
}
.hero-metric-card {
  padding: 36px 28px 8px;
  border-right: 1px solid rgba(13, 13, 18, 0.07);
}
.hero-metric-card:last-child {
  border-right: none;
}
.hero-metric-value {
  font-family: "Fraunces", serif;
  color: var(--green);
  font-size: 56px;
  font-weight: 500;
  display: block;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.hero-metric-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
  color: var(--ink-1);
}
.hero-metric-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-3);
}

/* ---------- Stats Row ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(13, 13, 18, 0.08);
  border-bottom: 1px solid rgba(13, 13, 18, 0.08);
}
.stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(13, 13, 18, 0.08);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number,
.stat-item .stat-number {
  font-family: "Fraunces", serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--green);
  display: block;
  line-height: 1;
  letter-spacing: -0.025em;
}
.stat-text,
.stat-item .stat-text {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.section-dark .stat-text,
.section-dark .stat-item .stat-text,
.section-darker .stat-text {
  color: var(--chalk-200);
}

/* ---------- Project Types ---------- */
.project-types-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.project-type-card {
  position: relative;
  display: block;
  background: var(--graph-700);
  border: 1px solid rgba(26, 92, 79, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--chalk-50);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.project-type-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 92, 79, 0.42);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.45);
  opacity: 1;
}
.project-type-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.project-type-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 18, 0.5) 0%, rgba(10, 12, 18, 0.14) 42%, rgba(10, 12, 18, 0.66) 100%),
    linear-gradient(90deg, rgba(10, 12, 18, 0.28), transparent 58%);
  pointer-events: none;
  z-index: 1;
}
.project-type-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.85) contrast(1.05);
}
.project-type-card:hover .project-type-media img {
  transform: scale(1.04);
}
.project-type-icon {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(10, 12, 18, 0.62);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(26, 92, 79, 0.38);
  color: var(--green-muted);
  z-index: 2;
}
.project-type-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}
.project-type-body {
  padding: 22px 22px 26px;
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.98), var(--graph-700));
}
.project-type-body h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--chalk-50);
}
.project-type-body p {
  font-size: 14px;
  color: var(--chalk-200);
  line-height: 1.65;
}
.project-type-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--green-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Split (image + content) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-reverse {
  direction: rtl;
}
.split-reverse > * {
  direction: ltr;
}
.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26, 92, 79, 0.18);
  box-shadow: 0 32px 72px rgba(10, 12, 18, 0.35);
}
.split-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(26, 92, 79, 0.1);
  pointer-events: none;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-content h2 {
  font-size: clamp(28px, 2.6vw, 40px);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: -0.018em;
}

.section-dark .split-content p,
.section-darker .split-content p {
  color: var(--chalk-200);
}
.split-content ul {
  margin: 18px 0 28px;
}
.split-content ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
  line-height: 1.65;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section-light .split-content ul li,
.section-white .split-content ul li {
  border-bottom-color: rgba(13, 13, 18, 0.07);
}
.split-content ul li:last-child {
  border-bottom: none;
}
.split-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 12px;
  height: 1.5px;
  background: var(--green);
}

/* ---------- Full-Cycle Panel ---------- */
.full-cycle-panel {
  background: var(--stone-50);
  border: 1px solid rgba(13, 13, 18, 0.07);
  border-top: 3px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  box-shadow: 0 20px 56px rgba(13, 13, 18, 0.09);
}
.full-cycle-header {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.full-cycle-header .section-title {
  margin-bottom: 12px;
}
.full-cycle-intro {
  max-width: 600px;
  margin: 0 auto;
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.75;
}
.full-cycle-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 48px 0 0;
  border-top: 1px solid rgba(13, 13, 18, 0.08);
}
.full-cycle-step {
  padding: 36px 30px 38px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: transparent;
  border-right: 1px solid rgba(13, 13, 18, 0.07);
}
.full-cycle-step:last-child {
  border-right: none;
}
.full-cycle-step + .full-cycle-step {
  border-left: none;
}
.full-cycle-step-number {
  display: inline-block;
  font-family: "Fraunces", serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.full-cycle-step h3 {
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink-1);
}
.full-cycle-step p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-3);
}
.full-cycle-footer {
  padding-top: 24px;
  text-align: center;
}
.full-cycle-note {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- How We Work ---------- */
.how-we-work {
  background: var(--stone-50);
  border: 1px solid rgba(13, 13, 18, 0.07);
  border-top: 3px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  box-shadow: 0 20px 56px rgba(13, 13, 18, 0.09);
}
.how-we-work-header {
  max-width: 780px;
  margin-bottom: 32px;
}
.how-we-work-header .section-title {
  margin-bottom: 12px;
}
.how-we-work-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(13, 13, 18, 0.08);
}
.how-we-work-step {
  padding: 32px 22px 36px;
  min-height: 220px;
  background: transparent;
  border-right: 1px solid rgba(13, 13, 18, 0.07);
}
.how-we-work-step:last-child {
  border-right: none;
}
.how-we-work-step + .how-we-work-step {
  border-left: none;
}
.how-we-work-number {
  display: inline-block;
  font-family: "Fraunces", serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.how-we-work-step h3 {
  font-size: 18px;
  line-height: 1.25;
  color: var(--ink-1);
  margin-bottom: 10px;
}
.how-we-work-step p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-3);
}

/* ---------- Brand Strip ---------- */
.brand-strip-section {
  padding-top: 0;
  background: var(--stone-50);
}
.brand-strip {
  padding: 8px 0 16px;
  text-align: center;
}
.brand-strip-title {
  font-family: "Fraunces", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink-1);
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}
.brand-strip-marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(13, 13, 18, 0.08);
  border-bottom: 1px solid rgba(13, 13, 18, 0.08);
  padding: 24px 0;
}
.brand-strip-marquee::before,
.brand-strip-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  z-index: 1;
  pointer-events: none;
}
.brand-strip-marquee::before {
  left: 0;
  background: linear-gradient(
    90deg,
    var(--stone-50) 0%,
    rgba(250, 250, 248, 0) 100%
  );
}
.brand-strip-marquee::after {
  right: 0;
  background: linear-gradient(
    270deg,
    var(--stone-50) 0%,
    rgba(250, 250, 248, 0) 100%
  );
}
.brand-strip-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: brand-strip-scroll 32s linear infinite;
}
.brand-strip-logo {
  height: 32px;
  width: auto;
  display: block;
  opacity: 0.5;
  filter: grayscale(1);
  transition:
    opacity 0.2s ease,
    filter 0.2s ease;
}
.brand-strip-logo:hover {
  opacity: 0.85;
  filter: none;
}
@keyframes brand-strip-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- CTA Divider ---------- */
.cta-divider-section {
  padding: 80px 0;
}
.cta-divider {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  background: var(--graph-800);
  color: var(--chalk-50);
  border: 1px solid rgba(26, 92, 79, 0.2);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
}
.cta-divider .section-label {
  color: var(--green-muted);
  background: rgba(26, 92, 79, 0.18);
  border-color: rgba(26, 92, 79, 0.38);
}
.cta-divider h2 {
  color: var(--chalk-50);
  font-size: clamp(24px, 2.6vw, 36px);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: -0.012em;
}
.cta-divider p {
  color: var(--chalk-200);
  margin: 0;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(26, 92, 79, 0.1);
  background: var(--graph-800);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 12, 18, 0.88) 80%
  );
  color: var(--chalk-50);
  padding: 18px 16px 14px;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Areas Grid ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.area-card {
  display: block;
  text-decoration: none;
  background: var(--graph-700);
  border: 1px solid rgba(26, 92, 79, 0.12);
  border-left: 3px solid rgba(26, 92, 79, 0.38);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  color: var(--chalk-50);
  transition:
    transform 0.3s ease,
    border-left-color 0.3s ease,
    box-shadow 0.3s ease;
}
.area-card:hover {
  transform: translateY(-3px);
  border-left-color: var(--green);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.48);
  opacity: 1;
}
.area-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--chalk-50);
}
.area-card p {
  color: var(--chalk-200);
  font-size: 14px;
  line-height: 1.6;
}
.area-card .card-link {
  margin-top: 12px;
  color: var(--green-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Case Studies ---------- */
.case-studies-carousel {
  position: relative;
}
.case-studies-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.case-studies-kicker {
  color: var(--ink-3);
  font-size: 13px;
  letter-spacing: 0.03em;
  margin: 0;
}
.section-dark .case-studies-kicker,
.section-darker .case-studies-kicker {
  color: var(--chalk-200);
}
.case-studies-controls {
  display: flex;
  gap: 8px;
}

.case-studies-arrow,
.testimonial-arrow {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(26, 92, 79, 0.28);
  background: transparent;
  color: var(--green);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.case-studies-arrow:hover,
.testimonial-arrow:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.case-studies-arrow:disabled,
.testimonial-arrow:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.case-studies-viewport {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding-bottom: 6px;
}
.case-studies-viewport::-webkit-scrollbar {
  display: none;
}

.case-study-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  background: var(--stone-50);
  border: 1px solid rgba(13, 13, 18, 0.07);
  border-top: 3px solid var(--green);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(13, 13, 18, 0.12);
}
.case-study-media {
  min-height: 100%;
  background: var(--graph-800);
  position: relative;
  overflow: hidden;
}
.case-study-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-study-media-slideshow {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.case-study-media-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.case-study-media-slideshow img:first-child {
  position: relative;
}
.case-study-media-slideshow img.is-active {
  opacity: 1;
}
.case-study-body {
  padding: 40px 40px;
}
.case-study-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}
.case-study-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  border: 1px solid var(--green-line);
}
.case-study-location {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.case-study-card h3 {
  font-size: 25px;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: -0.012em;
}
.case-study-summary {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.case-study-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 16px 0 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(13, 13, 18, 0.07);
  border-bottom: 1px solid rgba(13, 13, 18, 0.07);
}
.case-study-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-study-stat-value {
  font-family: "Fraunces", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: -0.01em;
}
.case-study-stat-label {
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.case-study-block h4 {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
.case-study-block p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-3);
}

.case-studies-dots,
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.case-studies-dot,
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(26, 92, 79, 0.22);
  cursor: pointer;
  padding: 0;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}
.case-studies-dot.is-active,
.testimonial-dot.is-active {
  background: var(--green);
  width: 28px;
  border-radius: 999px;
}

/* ---------- Testimonials ---------- */
.testimonial-carousel {
  position: relative;
}
.testimonial-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.testimonial-kicker {
  color: var(--chalk-200);
  font-size: 13px;
  margin: 0;
}
.testimonial-controls {
  display: flex;
  gap: 8px;
}
.testimonial-viewport {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.testimonial-viewport::-webkit-scrollbar {
  display: none;
}
.testimonial-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.testimonial-card {
  background: var(--graph-700);
  border: 1px solid rgba(26, 92, 79, 0.14);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  color: var(--chalk-100);
  position: relative;
}
.testimonial-card::before {
  display: none;
}
.testimonial-card blockquote {
  font-family: "Fraunces", serif;
  font-size: 22px;
  line-height: 1.52;
  color: var(--chalk-50);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}
.testimonial-card cite {
  font-style: normal;
  display: block;
  color: var(--green-muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.testimonial-project {
  margin-top: 6px;
  color: var(--chalk-300);
  font-size: 13px;
  letter-spacing: 0.03em;
}

/* ---------- Client Logos ---------- */
.client-logos {
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid rgba(26, 92, 79, 0.16);
  text-align: center;
}
.client-logos-label {
  color: var(--chalk-300);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 700;
}
.client-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px;
}
.client-logo-mark {
  height: 46px;
  width: auto;
  opacity: 0.72;
  border-radius: var(--radius);
  transition: opacity 0.2s ease;
}
.client-logo-mark:hover {
  opacity: 1;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(13, 13, 18, 0.08);
}
.faq-item {
  border-bottom: 1px solid rgba(13, 13, 18, 0.08);
}
.faq-question {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-1);
  letter-spacing: -0.008em;
  position: relative;
  padding: 24px 36px 24px 4px;
  cursor: pointer;
  user-select: none;
  margin-bottom: 0;
  list-style: none;
}
.faq-question:hover {
  color: var(--green);
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 24px;
  font-weight: 300;
  font-family: "Manrope", sans-serif;
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-item.open .faq-question::after {
  content: "−";
}
.faq-answer {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.75;
  overflow: hidden;
  max-height: 0;
  padding: 0 4px;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 4px 22px;
}
.faq-answer a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* ---------- RFP Form ---------- */
.rfp-section {
  background: var(--graph-900);
  color: var(--chalk-100);
  padding: 128px 0;
  position: relative;
  overflow: hidden;
}
.rfp-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    55% 70% at 50% 0%,
    rgba(26, 92, 79, 0.14) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.rfp-section .container {
  position: relative;
  z-index: 1;
}
.rfp-form {
  max-width: 840px;
  margin: 0 auto;
  background: var(--graph-800);
  border: 1px solid rgba(26, 92, 79, 0.18);
  border-top: 3px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 10px;
  color: var(--chalk-200);
  margin-bottom: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  background: var(--graph-700);
  border: 1px solid rgba(26, 92, 79, 0.2);
  border-radius: var(--radius);
  color: var(--chalk-50);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.form-group textarea {
  height: auto;
  padding: 14px 16px;
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--graph-600);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(224, 221, 212, 0.35);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A5C4F' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 44px;
}

.file-upload-area {
  position: relative;
  border: 1.5px dashed rgba(26, 92, 79, 0.3);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  background: rgba(13, 13, 18, 0.3);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.file-upload-area:hover {
  border-color: var(--green);
  background: rgba(13, 13, 18, 0.5);
}
.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.file-upload-area p {
  font-size: 14px;
  color: var(--chalk-200);
  margin: 0;
}
.file-upload-area p + p {
  font-size: 12px;
  color: var(--chalk-300);
  margin-top: 6px;
}
.file-list {
  margin-top: 12px;
  font-size: 13px;
  color: var(--chalk-200);
}

.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.consent-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--green);
}
.consent-group label {
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--chalk-200);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}
.consent-group label a {
  color: var(--green-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #ff7676;
}
.newsletter-modal .modal-content {
  max-width: 520px;
}
.newsletter-intro {
  color: var(--chalk-200);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.7;
}
.error-message {
  color: #ff8585;
  margin-top: 6px;
  font-size: 13px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 24px;
}
.form-success.active {
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--graph-900);
  color: var(--chalk-200);
  padding: 80px 0 0;
  border-top: 1px solid rgba(26, 92, 79, 0.16);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.55;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-col h3 {
  color: var(--chalk-50);
  font-family: "Fraunces", serif;
  font-size: 17px;
  margin-bottom: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.footer-col p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--chalk-200);
}
.footer-col a {
  color: var(--chalk-200);
  font-size: 14px;
  display: block;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--chalk-50);
  opacity: 1;
}
.footer-bottom {
  border-top: 1px solid rgba(26, 92, 79, 0.12);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--chalk-300);
  letter-spacing: 0.04em;
}

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: min(100vw - 48px, 460px);
}
.sticky-cta .btn {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.sticky-call {
  display: none;
}

/* ---------- Modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 18, 0.88);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.modal-overlay.active {
  display: flex;
}
.modal-content {
  background: var(--graph-800);
  border: 1px solid rgba(26, 92, 79, 0.2);
  border-top: 3px solid var(--green);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  color: var(--chalk-100);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal-content::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.modal-content h2 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  letter-spacing: -0.012em;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 1px solid rgba(26, 92, 79, 0.24);
  color: var(--chalk-50);
  font-size: 20px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.modal-close:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--graph-800);
  border-top: 1px solid rgba(26, 92, 79, 0.2);
  padding: 18px 24px;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner.show {
  display: flex;
}
.cookie-banner p {
  color: var(--chalk-200);
  font-size: 14px;
  flex: 1;
  margin: 0;
}
.cookie-banner a {
  color: var(--green-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Legal pages ---------- */
.legal-content {
  max-width: 880px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 28px;
  margin: 32px 0 12px;
  font-weight: 500;
}
.legal-content h3 {
  font-size: 20px;
  margin: 24px 0 10px;
  font-weight: 500;
}
.legal-content p {
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 14px;
  color: var(--ink-3);
}
.legal-content ul {
  padding-left: 0;
  margin: 12px 0 18px;
}
.legal-content ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.7;
}
.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 1.5px;
  background: var(--green);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root {
    --section-gap: 88px;
  }
  .hero {
    padding: 110px 0 90px;
    min-height: 560px;
  }
  .hero h1 {
    font-size: clamp(34px, 6vw, 52px);
  }
  .section-title {
    font-size: 32px;
  }
  .cards-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-metrics-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .hero-metric-card {
    border-right: 1px solid rgba(13, 13, 18, 0.07);
    border-bottom: none;
  }
  .hero-metric-card:last-child {
    border-right: none;
  }
  .hero-metric-value {
    font-size: 40px;
  }
  .hero-metric-card h3 {
    font-size: 13px;
  }
  .hero-metric-card p {
    font-size: 12px;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    border-bottom: 1px solid rgba(13, 13, 18, 0.07);
  }
  .stat-item:nth-child(2n) {
    border-right: none;
  }
  .stat-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .project-types-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-divider {
    grid-template-columns: 1fr;
    padding: 36px 32px;
  }
  .full-cycle-panel {
    padding: 36px 28px;
  }
  .full-cycle-steps {
    grid-template-columns: 1fr;
    border-top: none;
  }
  .full-cycle-step {
    min-height: auto;
    padding: 24px 0;
    border-right: none;
    border-top: 1px solid rgba(13, 13, 18, 0.07);
  }
  .full-cycle-step:first-child {
    border-top: none;
  }
  .how-we-work {
    padding: 36px 28px;
  }
  .how-we-work-steps {
    grid-template-columns: 1fr;
    border-top: none;
  }
  .how-we-work-step {
    min-height: auto;
    padding: 24px 0;
    border-right: none;
    border-top: 1px solid rgba(13, 13, 18, 0.07);
  }
  .how-we-work-step:first-child {
    border-top: none;
  }
  .brand-strip-logo {
    height: 28px;
  }
  .case-studies-toolbar,
  .testimonial-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .case-study-card {
    grid-template-columns: 1fr;
  }
  .case-study-media {
    aspect-ratio: 16/9;
  }
  .case-study-body {
    padding: 32px 28px;
  }
  .testimonial-card {
    padding: 36px 28px;
  }
  .testimonial-card blockquote {
    font-size: 20px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .split-reverse {
    direction: ltr;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-metrics {
    padding: 36px 28px;
  }
  .rfp-form {
    padding: 36px 28px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 68px;
  }
  .top-bar {
    display: none;
  }
  .mobile-nav {
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0s linear 0.25s;
  }
  .mobile-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0s linear 0s;
  }
  .mobile-nav a,
  .mobile-nav .close-nav {
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }
  .mobile-nav.active a,
  .mobile-nav.active .close-nav {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .hero {
    padding: 88px 0 68px;
    min-height: 520px;
  }
  .hero h1 {
    font-size: clamp(30px, 8vw, 42px);
  }
  .hero-text {
    font-size: 16px;
  }
  .hero-stats {
    gap: 24px;
  }
  .hero-stat .stat-value {
    font-size: 28px;
  }
  .trust-badges {
    padding-top: 20px;
  }
  .trust-badge {
    padding: 8px 16px 8px 0;
    margin-right: 16px;
    font-size: 11px;
  }
  .section-title {
    font-size: 27px;
  }
  .cards-grid-3,
  .cards-grid-4 {
    grid-template-columns: 1fr;
  }
  .project-types-grid {
    grid-template-columns: 1fr;
  }
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .hero-metrics-grid {
    grid-template-columns: 1fr;
  }
  .hero-metric-card {
    border-right: none;
    border-bottom: 1px solid rgba(13, 13, 18, 0.07);
  }
  .hero-metric-card:last-child {
    border-bottom: none;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2n) {
    border-right: none;
  }
  .stat-item {
    border-bottom: 1px solid rgba(13, 13, 18, 0.07);
  }
  .stat-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .case-study-stats {
    grid-template-columns: 1fr;
  }
  .case-study-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 28px 24px;
  }
  .modal-content {
    padding: 32px 24px;
  }
  .full-cycle-panel,
  .how-we-work,
  .hero-metrics,
  .rfp-form {
    padding: 28px 20px;
  }
  .cta-divider {
    padding: 28px 24px;
  }
  .sticky-cta {
    bottom: 14px;
    right: 14px;
    gap: 8px;
  }
  .sticky-call {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 70px 0 56px;
  }
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 48px 0;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .testimonial-card blockquote {
    font-size: 18px;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   Alternative Layout — Redesign
   Same sections, same colour scheme, different structure.
   ============================================================ */

/* --- Hero: split — text left, 2×2 mosaic right --- */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-content {
  min-width: 0;
}
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(26, 92, 79, 0.22);
  flex-shrink: 0;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.8) contrast(1.05);
  transition: transform 0.6s ease;
}
.hero-visual img:hover {
  transform: scale(1.04);
}

/* --- Hero Metrics: open display, no box --- */
.hero-metrics {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(13, 13, 18, 0.08);
  box-shadow: none;
  padding: 64px 0 0;
  border-radius: 0;
}
.hero-metrics-grid {
  border-top: none;
  margin-top: 40px;
}
.hero-metric-card {
  padding: 0 40px 32px;
}
.hero-metric-card:first-child {
  padding-left: 0;
}
.hero-metric-value {
  font-size:56px;
  margin-bottom: 20px;
}

/* --- Project Types: featured outer cards (tall) + 2 stacked in centre --- */
.project-types-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.25fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 660px;
}
.project-type-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}
.project-type-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.project-type-card:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}
.project-type-card:nth-child(4) {
  grid-column: 3;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}
.project-type-card:nth-child(1) .project-type-media,
.project-type-card:nth-child(4) .project-type-media {
  flex: 1;
  aspect-ratio: auto;
}
@media (min-width: 1025px) {
  .project-type-card:nth-child(2),
  .project-type-card:nth-child(3) {
    display: flex;
    flex-direction: column;
  }
  .project-type-card:nth-child(2) .project-type-media,
  .project-type-card:nth-child(3) .project-type-media {
    aspect-ratio: auto;
    height: 124px;
    flex: 0 0 124px;
  }
  .project-type-card:nth-child(2) .project-type-body,
  .project-type-card:nth-child(3) .project-type-body {
    padding: 18px 20px 20px;
  }
  .project-type-card:nth-child(2) .project-type-body p,
  .project-type-card:nth-child(3) .project-type-body p {
    line-height: 1.45;
  }
  .project-type-card:nth-child(2) .project-type-link,
  .project-type-card:nth-child(3) .project-type-link {
    margin-top: 10px;
  }
}

/* --- Six Pillars dark cards: 2-col with large decorative numerals --- */
.section-dark .cards-grid-3 {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  counter-reset: pillar;
}
.section-dark .card-dark {
  counter-increment: pillar;
}
.section-dark .card-dark .card-icon {
  display: none;
}
.section-dark .card-dark::before {
  content: "0" counter(pillar);
  display: block;
  font-family: "Fraunces", serif;
  font-size: 60px;
  font-weight: 500;
  color: rgba(92, 184, 158, 0.16);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

/* --- Full-Cycle: circular step numbers --- */
.full-cycle-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--green-line);
  background: var(--stone-50);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.full-cycle-steps {
  position: relative;
}
.full-cycle-steps::after {
  content: "";
  position: absolute;
  top: 91px; /* aligns with circle center: panel padding(56)+step padding(36)-1 = 91 */
  left: 15%;
  right: 15%;
  height: 1px;
  background: var(--green-line);
  z-index: 0;
}
.full-cycle-step {
  position: relative;
  z-index: 1;
  background: var(--stone-50);
}

/* --- How We Work: 2-col paired grid, 5th step spans full width --- */
.how-we-work-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(13, 13, 18, 0.07);
  border: 1px solid rgba(13, 13, 18, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 44px;
  border-top: none;
}
.how-we-work-step {
  background: var(--stone-50);
  padding: 40px 36px;
  border: none;
  border-right: none;
  min-height: 200px;
}
.how-we-work-step:nth-child(even) {
  border-left: 1px solid rgba(13, 13, 18, 0.07);
}
.how-we-work-step:last-child {
  grid-column: span 2;
  border-top: 1px solid rgba(13, 13, 18, 0.07);
  border-left: none;
}
.how-we-work-number {
  font-size: 40px;
  margin-bottom: 18px;
}

/* --- CTA Dividers: centred layout with arrow watermark --- */
.cta-divider {
  display: block;
  text-align: center;
  border-left: none;
  border-top: 3px solid var(--green);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.cta-divider::after {
  content: "→";
  position: absolute;
  right: 32px;
  bottom: -40px;
  font-size: 220px;
  font-family: "Fraunces", serif;
  color: rgba(26, 92, 79, 0.06);
  line-height: 1;
  pointer-events: none;
}
.cta-divider-copy {
  margin-bottom: 28px;
}

/* --- Areas: 3-column grid --- */
.areas-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* --- Gallery: bento grid (tall left, 3 stacked right) --- */
.gallery-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 14px;
}
.gallery-bento .gallery-item {
  aspect-ratio: auto;
  height: 100%;
}
.gallery-bento .gallery-item:first-child {
  grid-row: span 2;
}

/* --- Testimonials: centred with large open-quote mark --- */
.testimonial-card {
  text-align: center;
  padding: 64px 56px 52px;
  border-left: none;
  border-top: 3px solid var(--green);
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 44px;
  font-family: "Fraunces", serif;
  font-size: 120px;
  line-height: 1;
  color: rgba(92, 184, 158, 0.13);
  pointer-events: none;
}
.testimonial-card blockquote {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 32px;
}
.testimonial-card cite {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(26, 92, 79, 0.14);
  border-radius: 999px;
  border: 1px solid rgba(26, 92, 79, 0.24);
}

/* --- FAQ: 2-column accordion --- */
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  max-width: none;
  align-items: start;
}

/* --- Stats Row: rounded card container --- */
.stats-row {
  background: var(--stone-50);
  border: 1px solid rgba(13, 13, 18, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-top: none;
  border-bottom: none;
}
.stat-item {
  padding: 44px 32px;
}
.stat-number,
.stat-item .stat-number {
  font-size: 52px;
}

/* --- Responsive: restore single-column for smaller viewports --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .project-types-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    height: auto;
  }
  .project-type-card:nth-child(1),
  .project-type-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
  .project-type-card:nth-child(1) .project-type-media,
  .project-type-card:nth-child(4) .project-type-media {
    flex: none;
    aspect-ratio: 4/3;
  }
  .section-dark .cards-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .how-we-work-steps {
    grid-template-columns: 1fr;
  }
  .how-we-work-step:nth-child(even) {
    border-left: none;
  }
  .how-we-work-step:last-child {
    grid-column: 1;
    border-top: 1px solid rgba(13, 13, 18, 0.07);
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gallery-bento .gallery-item:first-child {
    grid-row: span 1;
  }
  .faq-list {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 52px 36px 44px;
  }
  .hero-metric-card {
    padding: 0 24px 24px;
  }
  .cta-divider {
    padding: 44px 36px;
  }
  .full-cycle-steps::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .project-types-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .project-type-card:nth-child(2),
  .project-type-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }
  .section-dark .cards-grid-3 {
    grid-template-columns: 1fr;
  }
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .gallery-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 170px 170px;
  }
  .gallery-bento .gallery-item:nth-child(4) {
    display: none;
  }
  .cta-divider {
    padding: 36px 24px;
  }
  .testimonial-card {
    padding: 40px 24px 36px;
  }
  .testimonial-card::before {
    font-size: 80px;
  }
  .how-we-work-step:last-child {
    grid-column: 1;
  }
}

/* ---------- Print ---------- */
@media print {
  .top-bar,
  .site-header,
  .mobile-nav,
  .sticky-cta,
  .modal-overlay,
  .cookie-banner,
  .brand-strip-section {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
  .section {
    padding: 24px 0;
  }
  .hero {
    min-height: auto;
    padding: 40px 0;
    background: #fff;
    color: #000;
  }
  .hero h1,
  .section-dark h1,
  .section-dark h2 {
    color: #000;
  }
}
