@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500&family=Outfit:wght@100;200;300;400;600;800&display=swap');

:root {
  /* #E8E6DC · warm text · #CE3E2A */
  --bg-color: #e8e6dc;
  --bg-image: none;
  --text-main: #2a2620;
  --text-dim: rgba(42, 38, 32, 0.68);
  --accent-primary: #ce3e2a;
  --accent-secondary: #a83222;
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(42, 38, 32, 0.1);
  --bento-bg: #ffffff;
  --noise-opacity: 0;
  --blob-opacity: 0;
  --btn-bg: #ce3e2a;
  --btn-color: #ffffff;
  --nav-bg: #0a0a0a;
  --nav-text: #ffffff;
  --nav-text-muted: rgba(255, 255, 255, 0.65);
  --nav-border: rgba(206, 62, 42, 0.45);
}

[data-theme='dark'] {
  --bg-color: #1c1916;
  --bg-image: none;
  --text-main: #f0ebe3;
  --text-dim: rgba(240, 235, 227, 0.68);
  --accent-primary: #ce3e2a;
  --accent-secondary: #e85542;
  --glass-bg: rgba(240, 235, 227, 0.04);
  --glass-border: rgba(240, 235, 227, 0.1);
  --bento-bg: rgba(42, 38, 32, 0.45);
  --noise-opacity: 0.05;
  --blob-opacity: 0.15;
  --btn-bg: #ce3e2a;
  --btn-color: #ffffff;
  --nav-bg: #0a0a0a;
  --nav-text: #ffffff;
  --nav-text-muted: rgba(255, 255, 255, 0.65);
  --nav-border: rgba(206, 62, 42, 0.45);
}

[data-theme='light'] {
  --bg-color: #e8e6dc;
  --bg-image: none;
  --text-main: #2a2620;
  --text-dim: rgba(42, 38, 32, 0.68);
  --accent-primary: #ce3e2a;
  --accent-secondary: #a83222;
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(42, 38, 32, 0.1);
  --bento-bg: #ffffff;
  --noise-opacity: 0;
  --blob-opacity: 0;
  --btn-bg: #ce3e2a;
  --btn-color: #ffffff;
  --nav-bg: #0a0a0a;
  --nav-text: #ffffff;
  --nav-text-muted: rgba(255, 255, 255, 0.65);
  --nav-border: rgba(206, 62, 42, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
}

/* Base styles */
a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.section-container {
  padding: 120px 8%;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.btn-primary {
  background: var(--btn-bg);
  color: var(--btn-color);
  border: none;
}

.btn-primary:hover {
  background: var(--accent-secondary);
  box-shadow: 0 10px 24px rgba(206, 62, 42, 0.28);
}

.btn-secondary {
  border: 1px solid var(--glass-border);
  color: var(--text-main);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Unique Noise Texture */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: url('https://grainy-gradients.vercel.app/noise.svg'); */
  opacity: var(--noise-opacity);
  pointer-events: none;
  z-index: 9999;
}

/* Ambient Blobs */
.ambient-blob {
  position: fixed;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: var(--blob-opacity);
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.blob-1 {
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
}

.blob-2 {
  bottom: -10%;
  right: -10%;
  background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
}

[data-theme='light'] .ambient-blob,
[data-theme='light'] .noise-overlay {
  display: none;
}

@keyframes textShine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.shine-text {
  animation: textShine 5s linear infinite;
  font-weight: 700;
  background: linear-gradient(90deg, var(--text-main), var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
}

/* —— Layout —— */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 24px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
  background: transparent;
}

.site-nav-logo {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-logo-img--nav {
  width: 53px;
  height: auto;
  max-height: 52px;
}

.brand-logo-img--footer {
  width: 28px;
  height: 28px;
}

[data-theme='dark'] .brand-logo-img {
  filter: brightness(1.85) contrast(0.95);
}

.site-nav-actions {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav-link {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-main);
  opacity: 0.55;
  padding: 8px 12px;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.site-nav-link:hover {
  color: var(--text-main);
  opacity: 1;
}

.site-nav-link.is-active {
  color: var(--accent-primary);
  opacity: 1;
}

.site-nav-link.is-active::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  background: var(--accent-primary);
  border-radius: 2px;
}

.site-nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-nav-toggle:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}

.site-nav-toggle__bar {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav.is-open .site-nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.is-open .site-nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-nav.is-open .site-nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav.is-open .site-nav-toggle {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #ffffff;
}

.site-nav-link--mobile-only {
  display: none;
}

.site-nav-menu-head,
.site-nav-close {
  display: none;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.theme-toggle:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #ffffff;
}

.theme-toggle-icon {
  font-size: 1rem;
  line-height: 1;
}

[data-theme='light'] .theme-toggle-icon--sun,
[data-theme='dark'] .theme-toggle-icon--moon { display: none; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.preloader--done { transform: translateY(-100vh); }

.preloader-count {
  font-size: 15vw;
  font-family: Outfit, sans-serif;
  font-weight: 800;
  opacity: 0.15;
  background: linear-gradient(135deg, var(--text-main), var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.preloader-bar {
  position: absolute;
  bottom: 10%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--glass-border);
}

.preloader-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
}

.hero-eyebrow {
  color: var(--accent-primary);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow span {
  width: 40px;
  height: 1px;
  background: var(--accent-primary);
}

.hero-title {
  font-size: clamp(48px, 10vw, 110px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -4px;
  margin-bottom: 40px;
}

.hero-desc {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 50px;
}

.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }

.page-top { padding-top: 150px; }
.page-top--center { min-height: 90vh; display: flex; align-items: center; }

.section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(32px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1.1;
}

.text-dim { font-weight: 300; opacity: 0.5; }
.text-right { text-align: right; }

.two-col-end {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  align-items: end;
}

.lead-text {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--text-main);
}

.body-text {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.8;
}

.section-spacer { padding: 60px 0; }
.section-bottom { margin-bottom: 150px; }
.section-gap { margin-top: 40px; }

.strategy-band {
  background: #7b9595;
  color: #f5f3ee;
  padding: 120px 8%;
}

.strategy-band__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.strategy-band .section-kicker {
  color: #000000;
}

.strategy-band .lead-text {
  color: #000000;
  font-weight: 500;
}

.strategy-band .body-text {
  color: 000000;
}

.process-section {
  padding-top: 140px;
  padding-bottom: 140px;
}

.process-head {
  margin-bottom: 80px;
}

.process-timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.process-spine {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(420px, 92%);
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 88px 1fr;
  align-items: center;
  min-height: 220px;
}

.process-step__node {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-primary);
  box-shadow: 0 8px 24px rgba(206, 62, 42, 0.22);
  justify-self: center;
  grid-row: 1;
}

.process-step--left .process-step__node {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.process-step--left .process-step__content {
  grid-column: 3;
  grid-row: 1;
  padding-left: clamp(16px, 4vw, 48px);
}

.process-step--right .process-step__node {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

.process-step--right .process-step__content {
  grid-column: 1;
  grid-row: 1;
  padding-right: clamp(16px, 4vw, 48px);
  text-align: right;
}

.process-step__title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.process-step__num {
  display: inline-block;
  margin-right: 10px;
  font-weight: 800;
}

.process-step__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 340px;
}

.process-step--right .process-step__desc {
  margin-left: auto;
}

.why-section {
  padding-top: 140px;
  padding-bottom: 80px;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.why-head {
  position: sticky;
  top: 140px;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px 40px;
  padding: 44px 0;
  border-top: 1px solid var(--glass-border);
  align-items: start;
}

.why-item:last-child {
  border-bottom: 1px solid var(--glass-border);
}

.why-item__num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent-primary);
  padding-top: 6px;
}

.why-item__title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 12px;
}

.why-item__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 580px;
}

/* —— Services page —— */
.services-page .services-hero {
  padding-bottom: 40px;
}

.services-page .page-intro {
  max-width: 560px;
  margin-top: 24px;
}

.services-stack {
  display: flex;
  flex-direction: column;
}

.service-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
}

.service-band--alt {
  background: rgba(123, 149, 149, 0.14);
}

.service-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(280px, 38vh, 420px);
  padding-top: 72px;
  padding-bottom: 72px;
}

.service-band__watermark {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  font-family: Outfit, sans-serif;
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 800;
  line-height: 1;
  color: var(--accent-primary);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

.service-band--flip .service-band__watermark {
  right: auto;
  left: 8%;
}

.service-band--flip .service-band__content {
  margin-left: auto;
  text-align: right;
}

.service-band__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.service-band__index {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--accent-primary);
  margin-bottom: 20px;
}

.service-band__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.service-band__desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.service-band__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-band--flip .service-band__tags {
  justify-content: flex-end;
}

.service-band__tags li {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid color-mix(in srgb, var(--accent-primary) 35%, transparent);
  border-radius: 100px;
  color: var(--accent-primary);
}

.services-philosophy {
  padding-top: 120px;
  padding-bottom: 80px;
}

.services-philosophy-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 48px);
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--glass-border);
}

.services-pillar__title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  padding-top: 16px;
  border-top: 2px solid var(--accent-primary);
}

.services-pillar__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dim);
}

.services-cta.strategy-band {
  padding-top: 100px;
  padding-bottom: 120px;
}

.services-cta__inner {
  max-width: 640px;
}

.services-cta__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f5f3ee;
  margin-bottom: 16px;
}

.services-cta__text {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(245, 243, 238, 0.88);
  margin-bottom: 32px;
  max-width: 520px;
}

.services-head { margin-bottom: 100px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 100px 80px;
}

.service-card { position: relative; }

.service-index {
  font-size: 120px;
  font-weight: 900;
  font-family: Outfit, sans-serif;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.05;
}

.service-accent-line {
  width: 40px;
  height: 1px;
  background: var(--accent-primary);
  opacity: 0.3;
  margin-bottom: 25px;
}

.service-card h4 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.service-card p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 380px;
}

.service-tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.service-tags span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  opacity: 0.4;
}

.marquee-band {
  padding: 80px 0;
  background: var(--text-main);
  color: var(--bg-color);
  overflow: hidden;
  transform: rotate(-1.5deg) scale(1.05);
  margin: 100px 0;
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  font-size: 32px;
  font-weight: 900;
  font-family: Outfit, sans-serif;
  text-transform: uppercase;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 100px;
}

.metric-value {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -3px;
  margin-bottom: 10px;
}

.metric-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 0.4;
}

.display-title {
  font-size: clamp(40px, 8vw, 100px);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 20px;
}

.page-header { margin-bottom: 80px; }
.page-intro { max-width: 500px; font-size: 18px; color: var(--text-dim); line-height: 1.6; }
.page-heading { font-size: clamp(28px, 4vw, 48px); font-weight: 300; margin-bottom: 40px; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 550px), 1fr));
  gap: 40px;
}

.bento-card {
  position: relative;
  min-height: 600px;
  border-radius: 48px;
  overflow: hidden;
  background: var(--bento-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  color: inherit;
  display: block;
}

.bento-card--link { transition: transform 0.3s; }
.bento-card--link:hover { transform: translateY(-4px); }

.bento-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--card-accent) 8%, transparent), color-mix(in srgb, var(--card-accent) 3%, transparent));
}

.bento-card-body {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.meta-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  opacity: 0.3;
  margin-bottom: 8px;
}

.meta-value { font-size: 16px; font-weight: 500; }
.meta-value.accent { color: var(--card-accent); font-size: 14px; }

.card-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.card-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 25px;
}

.card-desc {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 400px;
}

.card-cta {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.card-cta span {
  width: 40px;
  height: 1px;
  background: var(--text-main);
}

.glass-card,
.philosophy-grid article {
  padding: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.glass-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 15px; }
.glass-card p { font-size: 15px; color: var(--text-dim); line-height: 1.6; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 60px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.project-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 100px;
  align-items: start;
}

.project-lead {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 80px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 80px;
  padding-left: 40px;
  border-left: 1px solid var(--glass-border);
}

.timeline-block { position: relative; }

.timeline-number {
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 100px;
  font-weight: 900;
  opacity: 0.05;
  font-family: Outfit, sans-serif;
}

.timeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
  margin-left: -44px;
  margin-bottom: 15px;
}

.timeline-dot--accent { background: var(--accent-secondary); }

.timeline-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 800;
  opacity: 0.4;
  margin-bottom: 25px;
}

.timeline-label--accent { color: var(--accent-primary); opacity: 1; }

.timeline-text { font-size: 24px; line-height: 1.6; max-width: 90%; }
.timeline-text--large { font-size: 26px; font-weight: 500; }

.project-sidebar {
  position: sticky;
  top: 150px;
}

.sidebar-block {
  padding-left: 40px;
  border-left: 1px solid var(--glass-border);
  margin-bottom: 40px;
}

.sidebar-block h5,
.site-footer h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.4;
  margin-bottom: 10px;
}

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }

.tag-list span,
.pillar-list span {
  font-size: 11px;
  padding: 6px 15px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
}

.btn-block { width: 100%; text-align: center; }

.pillar-list { list-style: none; display: grid; gap: 30px; }
.pillar-list li { display: grid; gap: 4px; }
.pillar-list span { font-size: 12px; opacity: 0.5; padding: 0; border: 0; background: none; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 120px;
}

.value-card {
  padding: 30px 0;
  border-top: 1px solid var(--glass-border);
}

.value-card h3 { font-size: 24px; font-weight: 600; margin-bottom: 15px; }
.value-card p { font-size: 15px; color: var(--text-dim); line-height: 1.7; }

.team-section { padding: 120px 0; border-top: 1px solid var(--glass-border); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 80px;
}

.team-card { position: relative; }
.team-initial {
  position: absolute;
  top: -10px;
  left: -5px;
  font-size: 100px;
  font-weight: 900;
  opacity: 0.05;
  font-family: Outfit, sans-serif;
}

.team-card h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.team-card p { font-size: 16px; color: var(--text-dim); line-height: 1.7; opacity: 0.8; }

.page-top--center > .section-container { width: 100%; }

.contact-section {
  padding-top: 0;
  padding-bottom: 120px;
}

.contact-title {
  line-height: 0.95;
  margin-bottom: 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-details { display: grid; gap: 20px; margin-top: 40px; }
.contact-email { font-size: 24px; border-bottom: 1px solid var(--accent-primary); }
.contact-office { font-size: 20px; }

.contact-form-wrap {
  width: 100%;
  background: var(--bento-bg);
  padding: clamp(40px, 5vw, 64px);
  border-radius: 40px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 48px rgba(42, 38, 32, 0.04);
}

.contact-form .form-group { margin-bottom: 32px; }

.contact-form textarea.form-input {
  min-height: 140px;
}

.form-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-bottom: 10px;
}

.form-input {
  width: 100%;
  padding: 15px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-main);
  font-size: 16px;
  outline: none;
  resize: vertical;
  font-family: inherit;
  border-radius: 0;
}

.form-input--select {
  appearance: none;
  cursor: pointer;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23CE3E2A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
}

.form-input--select option {
  color: var(--text-main);
  background: var(--bento-bg);
}

.form-file {
  padding: 12px 0 8px;
  border-bottom: 1px solid var(--glass-border);
}

.form-file__input {
  width: 100%;
  font-size: 14px;
  color: var(--text-dim);
  font-family: inherit;
}

.form-file__input::file-selector-button {
  margin-right: 14px;
  padding: 10px 18px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  background: color-mix(in srgb, var(--accent-primary) 8%, var(--bg-color));
  color: var(--text-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.form-file__input::file-selector-button:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #ffffff;
}

.form-file__hint {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-dim);
  opacity: 0.75;
}

.form-error { color: #b91c1c; font-size: 12px; margin-top: 8px; }
.flash-success {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 12px;
  background: color-mix(in srgb, #10b981 12%, transparent);
  border: 1px solid color-mix(in srgb, #10b981 35%, transparent);
}

.site-footer {
  padding: 120px 8% 40px;
  position: relative;
  overflow: hidden;
  background: #7b9595;
  color: #f5f3ee;
  border-top: none;
}

.site-footer-bg-text {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(100px, 20vw, 350px);
  font-weight: 900;
  font-family: Outfit, sans-serif;
  color: #ffffff;
  opacity: 0.07;
  white-space: nowrap;
  pointer-events: none;
}

.site-footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}

.site-footer-lead h2 {
  font-family: Outfit, sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  max-width: 600px;
  color: #f5f3ee;
}

.site-footer h5 {
  color: rgba(245, 243, 238, 0.55);
  opacity: 1;
}

.site-footer-columns {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.site-footer-columns ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-footer-columns a,
.site-footer-contact {
  font-size: 18px;
  font-weight: 500;
  color: #f5f3ee;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.site-footer-columns a:hover,
.site-footer-contact:hover {
  color: #ffffff;
  opacity: 1;
}

.site-footer-social,
.site-footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer-contact--location {
  align-items: flex-start;
  color: rgba(245, 243, 238, 0.88);
}

.site-footer-social i,
.site-footer-contact i {
  width: 18px;
  color: var(--accent-primary);
  font-size: 16px;
  text-align: center;
  flex-shrink: 0;
}

.site-footer-contact--location i {
  margin-top: 3px;
}

.site-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 243, 238, 0.72);
  font-size: 14px;
}

.site-footer .brand-logo-img {
  filter: none;
}

.site-footer-legal {
  display: flex;
  gap: 40px;
  font-size: 14px;
}

.site-footer-legal a {
  color: rgba(245, 243, 238, 0.72);
  transition: color 0.25s ease;
}

.site-footer-legal a:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .site-nav { padding: 20px 5%; }
  .site-nav-toggle { display: flex; }
  .site-nav-actions { gap: 12px; }
  .site-nav-links {
    display: none;
    position: fixed;
    inset: 0;
    padding: 24px 8% 48px;
    background: var(--bg-color);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    z-index: 1;
    overflow-y: auto;
  }
  .site-nav-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--glass-border);
  }
  .site-nav-menu-logo {
    display: flex;
    align-items: center;
  }
  .site-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    background: transparent;
    color: var(--text-main);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  }
  .site-nav-close:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #ffffff;
  }
  .site-nav-link--mobile-only {
    display: block;
  }
  .site-nav-logo,
  .site-nav-actions {
    position: relative;
    z-index: 2;
  }
  .site-nav.is-open .site-nav-links { display: flex; }
  body.nav-open { overflow: hidden; }
  .site-nav-link {
    font-size: 18px;
    padding: 14px 0;
    opacity: 1;
  }
  .site-nav-link.is-active::after {
    left: 0;
    right: auto;
    width: 32px;
  }
  .project-layout { grid-template-columns: 1fr; }
  .project-sidebar { position: static; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .process-spine { display: none; }
  .process-step {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 20px;
    padding: 32px 0;
    border-bottom: 1px solid var(--glass-border);
  }
  .process-step:last-child { border-bottom: none; }
  .process-step__node {
    grid-column: 1;
    justify-self: start;
    width: 56px;
    height: 56px;
  }
  .process-step__content,
  .process-step--right .process-step__content {
    grid-column: 1;
    padding: 0;
    text-align: left;
  }
  .process-step--right .process-step__desc { margin-left: 0; }
  .why-layout { grid-template-columns: 1fr; }
  .why-head { position: static; }
  .why-item {
    grid-template-columns: 48px 1fr;
    gap: 16px 24px;
    padding: 32px 0;
  }
  .services-philosophy-row { grid-template-columns: 1fr; }
  .service-band__inner {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .service-band--flip .service-band__content {
    margin-left: 0;
    text-align: left;
  }
  .service-band--flip .service-band__tags { justify-content: flex-start; }
  .service-band__watermark {
    font-size: 100px;
    right: 4%;
    opacity: 0.05;
  }
  .service-band--flip .service-band__watermark { left: 4%; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
  }
}

