/* ============================================================
   EXECUTIVE PROJECTS MANAGEMENT — Design System v2
   Premium Corporate Website · Architecture-grade
   ============================================================ */

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

/* ── Variables ── */
:root {
  --black:        #0A0A0A;
  --charcoal:     #181818;
  --dark:         #242424;
  --gray-700:     #3A3A3A;
  --gray-600:     #505050;
  --gray-500:     #747474;
  --gray-400:     #969696;
  --gray-200:     #DCDCDA;
  --gray-100:     #F3F2EF;
  --gray-50:      #F9F8F6;
  --white:        #FAFAF8;

  --gold:         #C49030;
  --gold-light:   #D4A848;
  --gold-dim:     rgba(196,144,48,0.15);
  --orange:       #C05828;
  --brown:        #7A5030;

  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --nav-h:        88px;
  --section-v:    108px;
  --container:    1440px;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: opacity 0.18s ease;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ── Accessibility ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Typography ── */
.t-eyebrow {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.t-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.t-eyebrow--plain { display: block; }
.t-eyebrow--plain::before { display: none; }

/* Serif headline — used sparingly for visual contrast */
.t-serif {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 400;
}

.t-display {
  font-family: var(--font-sans);
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}
.t-heading {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: -0.022em;
  color: var(--charcoal);
}
.t-heading--serif {
  font-family: var(--font-sans);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(30px, 3.5vw, 46px);
  letter-spacing: -0.01em;
  line-height: 1.18;
}
.t-subheading {
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.t-body {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.78;
  color: var(--gray-500);
}
.t-small {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--gray-400);
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: var(--section-v) 0; }
.section--dark  { background: var(--charcoal); color: var(--white); }
.section--black { background: var(--black); color: var(--white); }
.section--light { background: var(--gray-100); }
.section--warm  { background: var(--gray-50); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  transition: all 0.22s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,144,48,0.22);
}
.btn--secondary {
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
}
.btn--secondary:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: var(--white);
}
.btn--outline {
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
}
.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--outline-light {
  border: 1px solid rgba(255,255,255,0.32);
  color: var(--white);
}
.btn--outline-light:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
}
.btn--arrow::after { content: '→'; font-size: 13px; transition: transform 0.22s var(--ease); }
.btn--arrow:hover::after { transform: translateX(5px); }
.btn-group { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.35s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* ── Logo ── */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  text-decoration: none;
  margin-left: -8px;
}
.nav__logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer__logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav__logo-mark { flex-shrink: 0; }
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
  gap: 0;
}
/* 3-line wordmark matching approved logo: EXECUTIVE / PROYECTS / MANAGEMENT */
.nav__logo-text .logo-l1 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3C3C3C;
  transition: color 0.3s;
}
.nav__logo-text .logo-l2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #787882;
  transition: color 0.3s;
}
.nav__logo-text .logo-l3 {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #3C3C3C;
  margin-top: 3px;
  transition: color 0.3s;
}
/* Legacy selectors kept for fallback compatibility */
.nav__logo-text .logo-name { display: none; }
.nav__logo-text .logo-sub  { display: none; }
/* hero-dark nav overrides removed — nav is always white */

/* ── Nav Links ── */
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gray-600);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.28s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a:hover,
.nav__links a.active { color: var(--charcoal); }
/* hero-dark link overrides removed — nav links always dark */


.nav__cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--white);
  transition: background 0.22s, transform 0.22s;
}
.nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  width: 32px;
}
.nav__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}
/* hero-dark hamburger override removed */

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  padding: 40px;
  gap: 4px;
  overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: color 0.2s, padding-left 0.2s;
}
.nav__mobile a:hover { color: var(--gold); padding-left: 6px; }




/* ============================================================
   HERO — HOMEPAGE (ASYMMETRIC)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 88px;
  padding-top: var(--nav-h);
}
/* Grain texture overlay for depth */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
  background-size: 180px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1920&q=85&fit=crop');
  background-size: cover;
  background-position: center 38%;
  transform: scale(1.05);
  transition: transform 9s ease-out;
  will-change: transform;
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,8,8,0.88) 0%,
    rgba(8,8,8,0.60) 45%,
    rgba(8,8,8,0.30) 75%,
    rgba(8,8,8,0.18) 100%
  );
}

/* Asymmetric layout */
.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 200px;
  align-items: flex-end;
  gap: 40px;
  width: 100%;
}
.hero__content { max-width: 760px; }
.hero__eyebrow {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero__headline {
  font-size: clamp(38px, 5.4vw, 76px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.033em;
  color: var(--white);
  margin-bottom: 30px;
}
.hero__headline .serif-line {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 300;
  display: block;
  font-size: clamp(28px, 3.8vw, 54px);
  letter-spacing: -0.015em;
  color: var(--gold);
  opacity: 0.9;
  margin-top: 6px;
}
.hero__headline strong {
  font-weight: 300;
  display: block;
  color: rgba(255,255,255,0.95);
}
.hero__divider {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 28px;
}
.hero__sub {
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255,255,255,0.55);
  max-width: 440px;
  margin-bottom: 44px;
}
/* Right asymmetric column */
.hero__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 40px;
  padding-bottom: 6px;
}
.hero__rotated {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
}
.hero__year {
  text-align: right;
}
.hero__year-num {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  font-variant-numeric: tabular-nums;
  display: block;
}
.hero__year-label {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  display: block;
  margin-top: 3px;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  z-index: 3;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  max-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  margin-top: var(--nav-h);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease-out;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.82) 0%,
    rgba(8,8,8,0.38) 55%,
    rgba(8,8,8,0.14) 100%
  );
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero__tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.page-hero__tag::before { content: ''; width: 22px; height: 1px; background: var(--gold); display: block; }
.page-hero__title {
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
}

/* ============================================================
   METRICS STRIP
   ============================================================ */
.metrics { background: var(--charcoal); }
.metrics__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.06);
}
.metric {
  padding: 44px 36px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.metric::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height 0.6s var(--ease);
}
.metric.counted::before { height: 100%; }
.metric__value {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 300;
  letter-spacing: -0.035em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 9px;
  font-variant-numeric: tabular-nums;
}
.metric__label {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
}

/* ============================================================
   IDENTITY / HOME ABOUT
   ============================================================ */
.identity__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.identity__intro .lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.72;
  color: var(--gray-600);
  margin-top: 28px;
  letter-spacing: -0.005em;
}
.identity__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
}
.identity__pillar {
  padding: 30px 26px;
  border-bottom: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  transition: background 0.22s;
}
.identity__pillar:hover { background: var(--gray-100); }
.identity__pillar-label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.identity__pillar-text {
  font-size: 13.5px;
  line-height: 1.68;
  color: var(--gray-500);
}

/* ============================================================
   SERVICES — HOME PREVIEW
   ============================================================ */
.services-preview__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}
.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--gray-200);
}
.service-card {
  padding: 40px 32px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.22s, transform 0.22s var(--ease), box-shadow 0.22s;
  cursor: default;
  position: relative;
}
.service-card:last-child { border-right: none; }
.service-card:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  z-index: 1;
}
.service-card__num {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 22px;
  font-variant-numeric: tabular-nums;
}
.service-card__title {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--charcoal);
  margin-bottom: 13px;
  line-height: 1.28;
}
.service-card__desc {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--gray-500);
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 22px;
  transition: gap 0.2s;
}
.service-card__link:hover { gap: 10px; }
.service-card__link::after { content: '→'; }

/* ── Services Full Page – Grouped ── */
.service-group {
  border-top: 1px solid var(--gray-200);
}
.service-group:first-of-type {
  border-top: 2px solid var(--gold);
}
.service-group + .service-group { margin-top: 0; }

.service-group__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 44px 0 28px;
}
.service-group__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-group__num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.service-group__label {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--charcoal);
  text-transform: none;
}
.service-group__count {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  padding-bottom: 6px;
  flex-shrink: 0;
}

.service-group__items { border-top: 1px solid var(--gray-200); }
.service-item {
  display: grid;
  grid-template-columns: 64px 1fr 1fr;
  gap: 48px;
  padding: 44px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
  transition: padding-left 0.22s var(--ease);
}
.service-item:hover { padding-left: 8px; }
.service-item__num {
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.14em;
  padding-top: 4px;
  font-variant-numeric: tabular-nums;
  opacity: 0.7;
}
.service-item__name {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--charcoal);
  line-height: 1.25;
}
.service-item__desc {
  font-size: 14px;
  line-height: 1.82;
  color: var(--gray-500);
}

/* ============================================================
   METHODOLOGY
   ============================================================ */
.methodology {
  background: var(--black);
  padding: var(--section-v) 0;
  position: relative;
}
/* Grain on dark sections */
.methodology::after,
.section--black::after,
.cta-block::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
}
.methodology .container,
.cta-block .container { position: relative; z-index: 1; }

.methodology__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 68px;
}
.methodology__head .t-heading { color: var(--white); }
.methodology__head .t-body { color: rgba(255,255,255,0.46); margin-top: 18px; }
.methodology__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.step {
  padding: 34px 26px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: background 0.22s;
}
.step:hover { background: rgba(255,255,255,0.03); }
.step__num {
  font-size: 10.5px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 26px;
  font-variant-numeric: tabular-nums;
  display: block;
}
.step__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.step__desc {
  font-size: 12.5px;
  line-height: 1.72;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   DIFFERENTIATORS
   ============================================================ */
.differentiators__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}
.differentiators__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
}
.diff-item {
  padding: 40px 36px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.22s, transform 0.22s;
  position: relative;
}
.diff-item:hover {
  background: var(--gray-50);
}
.diff-item__bar {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 22px;
  transition: width 0.3s var(--ease);
}
.diff-item:hover .diff-item__bar { width: 44px; }
.diff-item__title {
  font-size: 16.5px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.28;
}
.diff-item__desc {
  font-size: 13.5px;
  line-height: 1.76;
  color: var(--gray-500);
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  background: var(--charcoal);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block .t-heading { color: var(--white); margin-bottom: 18px; }
.cta-block .t-body {
  color: rgba(255,255,255,0.46);
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-block--split { text-align: left; padding: 96px 0; }
.cta-block--split .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
.cta-block--split .t-body {
  margin: 14px 0 0;
  max-width: 400px;
  color: rgba(255,255,255,0.46);
}

/* ============================================================
   PROJECTS PAGE
   ============================================================ */

/* Featured Project */
.project-featured {
  position: relative;
  height: 62vh;
  min-height: 480px;
  overflow: hidden;
  cursor: default;
  border-bottom: 1px solid var(--gray-200);
}
.project-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(12%) contrast(1.03);
  transition: transform 6s ease, filter 0.5s;
  transform: scale(1.03);
  will-change: transform;
}
.project-featured:hover .project-featured__img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.02);
}
.project-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.88) 0%,
    rgba(8,8,8,0.46) 40%,
    rgba(8,8,8,0.1) 70%,
    transparent 100%
  );
}
.project-featured__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 48px;
  padding: 0 48px 48px;
  z-index: 2;
}
.project-featured__badge {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 4px 12px;
  margin-bottom: 16px;
}
.project-featured__type {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.project-featured__name {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.project-featured__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.56);
  max-width: 560px;
}
.project-featured__meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  padding-bottom: 4px;
  flex-shrink: 0;
}
.project-featured__stat { text-align: right; }
.project-featured__stat-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 3px;
}
.project-featured__stat-value {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
}

/* Projects Grid (secondary) */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
}
.project-card {
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
  cursor: default;
  transition: box-shadow 0.3s var(--ease);
}
.project-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.1);
  z-index: 1;
  position: relative;
}
.project-card__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: grayscale(14%) contrast(1.02);
  transition: transform 0.55s var(--ease), filter 0.4s;
  display: block;
}
.project-card:hover .project-card__img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.project-card__body { padding: 26px 26px 30px; }
.project-card__type {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 9px;
}
.project-card__name {
  font-size: 16.5px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.28;
}
.project-card__scope {
  font-size: 11.5px;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  margin-bottom: 11px;
}
.project-card__desc {
  font-size: 13px;
  line-height: 1.72;
  color: var(--gray-500);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro__text .lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.72;
  color: var(--gray-600);
  letter-spacing: -0.005em;
}
.about-intro__text p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--gray-500);
  margin-top: 20px;
}
/* Full-width cover image utility */
.cover-img { width: 100%; height: 420px; object-fit: cover; display: block; }

.about-img { position: relative; overflow: hidden; }
.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 6s ease;
  transform: scale(1.02);
}
.about-img:hover img { transform: scale(1.05); }
.about-img__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  padding: 32px 22px 18px;
  font-size: 10.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.07em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
}
.value-item {
  padding: 44px 38px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.22s;
}
.value-item:hover { background: var(--gray-50); }
.value-item__label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.value-item__title {
  font-size: 19px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: -0.012em;
  line-height: 1.22;
}
.value-item__text {
  font-size: 13.5px;
  line-height: 1.76;
  color: var(--gray-500);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-top {
  background: var(--gray-100);
  padding: 64px 0 52px;
  margin-top: var(--nav-h);
}
.contact-page-top .btn-group {
  margin-top: 36px;
}
.contact-page-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.028em;
  line-height: 1.07;
  color: var(--charcoal);
  max-width: 680px;
  margin-top: 20px;
}
.contact-page-sub {
  font-size: 14.5px;
  color: var(--gray-500);
  margin-top: 20px;
  max-width: 460px;
  line-height: 1.74;
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--gray-200);
  margin-top: 48px;
}
.trust-item {
  padding: 32px 28px;
  border-right: 1px solid var(--gray-200);
  transition: background 0.2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--white); }
.trust-item__num {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.trust-item__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 9px;
  line-height: 1.28;
  letter-spacing: -0.01em;
}
.trust-item__desc {
  font-size: 13px;
  line-height: 1.67;
  color: var(--gray-500);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 80px;
  padding: var(--section-v) 0;
  align-items: start;
}
/* Centered single-column layout (form removed) */
.contact-info-centered {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
.contact-info-centered .contact-map { margin-top: 48px; }
.contact-info-centered .contact-map iframe { height: 340px; }
.contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 26px; }
.contact-detail { display: flex; flex-direction: column; gap: 5px; }
.contact-detail__label {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-detail__value {
  font-size: 14.5px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
}
.contact-detail__value a { color: inherit; text-decoration: underline; text-decoration-color: rgba(24,24,24,0.18); text-underline-offset: 2px; }
.contact-detail__value a:hover { color: var(--gold); text-decoration-color: rgba(196,144,48,0.4); }

/* Map */
.contact-map {
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: none;
  filter: grayscale(30%) contrast(1.05);
  transition: filter 0.3s;
}
.contact-map:hover iframe { filter: grayscale(0%) contrast(1); }

/* Form */
.contact-form { display: flex; flex-direction: column; }
.form-border-top { border-top: 1px solid var(--gray-200); }
.form-full-row { display: grid; grid-template-columns: 1fr 1fr; }
.form-field {
  position: relative;
  border-bottom: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  transition: border-color 0.22s, background 0.22s;
}
.form-field:first-child,
.form-field.first-row { border-top: 1px solid var(--gray-200); }
.form-field.full-width { grid-column: 1 / -1; }
.form-field:focus-within { border-color: var(--gold); z-index: 1; background: rgba(196,144,48,0.02); }
.form-field label {
  display: block;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 16px 20px 0;
  transition: color 0.2s;
}
.form-field:focus-within label { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal);
  padding: 8px 20px 15px;
}
.form-field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23969696' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 44px;
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--gray-200); }
.form-submit {
  padding: 22px 20px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.form-submit-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.form-note { font-size: 11.5px; color: var(--gray-400); max-width: 240px; line-height: 1.5; }
.form-note a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(196,144,48,0.35); }
.form-note a:hover { text-decoration-color: var(--gold); }

/* ── Privacy document layout ── */
.priv-doc { max-width: 760px; }
.priv-doc > .priv-section + .priv-section { border-top: 1px solid var(--gray-200); padding-top: 52px; margin-top: 52px; }
.priv-section__num {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.priv-section__title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.012em;
  line-height: 1.3;
  margin-bottom: 20px;
}
.priv-section .t-body + .t-body { margin-top: 14px; }
.priv-list {
  list-style: none;
  margin: 16px 0;
  padding: 0;
  border-top: 1px solid var(--gray-100);
}
.priv-list li {
  padding: 10px 0 10px 20px;
  position: relative;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  border-bottom: 1px solid var(--gray-100);
}
.priv-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 19px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.priv-subsection { margin-top: 28px; }
.priv-subsection__title {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 3px;
}
.priv-subsection__note { font-size: 12px; color: var(--gray-400); margin-bottom: 8px; }
.priv-contact-block {
  margin: 20px 0;
  padding: 18px 22px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-left: 2px solid var(--gold);
}
.priv-contact-block strong { display: block; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 4px; }
.priv-contact-block a { color: var(--gold); font-weight: 500; }
.priv-contact-block a:hover { text-decoration: underline; }
.priv-updated { font-size: 12px; color: var(--gray-400); margin-top: 6px; letter-spacing: 0.04em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); padding: 80px 0 40px; }
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
/* Footer wordmark — 3 lines, light version for dark background */
.footer__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
  gap: 0;
}
.footer__wordmark .logo-l1 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.footer__wordmark .logo-l2 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.footer__wordmark .logo-l3 {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-top: 3px;
}
/* Legacy fallback */
.footer__brand .logo-name { display: none; }
.footer__brand .logo-sub  { display: none; }
.footer__brand p {
  font-size: 13px;
  line-height: 1.76;
  color: rgba(255,255,255,0.38);
  margin-top: 18px;
  max-width: 230px;
}
.footer__col-title {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  transition: color 0.2s;
  line-height: 1.5;
}
.footer__links a:hover { color: var(--white); }
.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 16px;
}
.footer__contact-item .lbl {
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.footer__contact-item .val {
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  line-height: 1.55;
  white-space: nowrap;
}
.footer__contact-item .val a:hover { color: var(--gold); }
.footer__bottom {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.footer__copy { font-size: 12.5px; color: rgba(255,255,255,0.22); letter-spacing: 0.03em; }
.footer__legal { display: flex; gap: 22px; }
.footer__legal a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.22);
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.45); }

/* ── Logo SVG mark ── */
.logo-mark-svg { width: 56px; height: 64px; }
.nav__logo-mark { width: 56px; height: 64px; flex-shrink: 0; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }

/* ── Section header ── */
.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }
.section-header--center .t-body { max-width: 520px; margin: 14px auto 0; }

/* ── Misc utils ── */
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 28px; }
.mt-lg { margin-top: 52px; }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 28px; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray-500); }

/* ============================================================
   INNER-PAGE HERO PERSONALITY
   ============================================================ */

/* Second title line — serif italic for personality */
.page-hero__title-line2 {
  display: block;
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
}

/* Per-page corner stat (bottom-right detail) */
.page-hero__corner {
  position: absolute;
  bottom: 44px;
  right: 0;
  text-align: right;
  padding-right: 4px;
}
.page-hero__corner-value {
  display: block;
  font-family: var(--font-sans);
  font-style: italic;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  letter-spacing: -0.02em;
}
.page-hero__corner-label {
  display: block;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 6px;
}

/* ============================================================
   LAYOUT UTILITIES (replacing inline styles)
   ============================================================ */

/* Two-column intro/about grid */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Team discipline 2×2 grid */
.team-disc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--gray-200);
  margin-top: 40px;
}
.team-disc-item {
  padding: 28px 24px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.team-disc-item:nth-child(even) { border-right: none; }
.team-disc-item:nth-child(3),
.team-disc-item:nth-child(4) { border-bottom: none; }
.team-disc-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.team-disc-desc {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.55;
}

/* Services intro two-column layout */
.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.services-intro__lead {
  font-size: clamp(20px, 2.5vw, 27px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--charcoal);
}

/* Projects section header (flex with justify between) */
.projects-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
  flex-wrap: wrap;
}

/* Section with no top padding */
.section--flush-top { padding-top: 0 !important; }

/* Text width constraint utility */
.text-narrow { max-width: 380px; }

/* Margin utilities */
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* Footer hours text */
.footer__hours {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* Footer brand row (logo mark + text) */
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer__brand .logo-mark-svg {
  width: 28px;
  height: 28px;
  opacity: 0.55;
  filter: brightness(1.2);
  flex-shrink: 0;
}

/* CTA block centering when not split */
.cta-block:not(.cta-block--split) .t-eyebrow { justify-content: center; }
.cta-block:not(.cta-block--split) .btn-group { justify-content: center; }

/* Contact form field variants */
.form-field--no-left { border-left: none; }
.form-field--with-right { border-right: 1px solid var(--gray-200); }

/* Contact page headline */
.contact-headline-line2 {
  display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-v: 80px; }
  .container { padding: 0 36px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__aside { display: none; }
  .identity__grid { gap: 52px; }
  .intro-grid { gap: 48px; }
  .services-intro-grid { gap: 40px; }
  .methodology__steps { grid-template-columns: repeat(3, 1fr); }
  .step:nth-child(4),
  .step:nth-child(5) { border-top: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .service-item { grid-template-columns: 56px 1fr; gap: 32px; }
  .service-item__desc { grid-column: 2; }
  .service-group__label { font-size: clamp(22px, 3.5vw, 28px); }
  .project-featured__body { grid-template-columns: 1fr; }
  .project-featured__meta { flex-direction: row; align-items: flex-start; }
  .project-featured__stat { text-align: left; }
}

@media (max-width: 768px) {
  :root { --section-v: 60px; --nav-h: 60px; }
  .container { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  
  .nav__hamburger { display: flex; }

  .identity__grid,
  .about-intro,
  .differentiators__head,
  .methodology__head { grid-template-columns: 1fr; gap: 32px; }

  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .team-disc-grid { grid-template-columns: 1fr; }
  .team-disc-item { border-right: none; }
  .team-disc-item:nth-child(even) { border-right: none; }
  .projects-section-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .page-hero__corner { display: none; }

  .identity__pillars,
  .values-grid { grid-template-columns: 1fr; }
  .metrics__inner { grid-template-columns: 1fr 1fr; }
  .methodology__steps { grid-template-columns: 1fr; }
  .step { border-top: none; }
  .step:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
  .differentiators__grid { grid-template-columns: 1fr; }
  .services-preview__head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .services-preview__grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .form-full-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .cta-block--split .inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero__scroll { display: none; }
  .service-item { grid-template-columns: 1fr; gap: 12px; }
  .service-item__num { display: none; }
  .btn-group { gap: 12px; }
  .project-featured__body { padding: 0 20px 32px; }
  .project-featured__name { font-size: clamp(24px, 5vw, 36px); }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .service-group__header { flex-wrap: wrap; gap: 12px; padding: 32px 0 20px; }
  .service-group__label { font-size: clamp(20px, 5.5vw, 26px); }
  .contact-page-top { padding: 40px 0 36px; }
  .contact-page-top .btn-group { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .projects-grid { grid-template-columns: 1fr; }
}

/* ── Skip-to-content ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom-right-radius: 4px;
  transition: top 0.15s var(--ease);
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--charcoal);
  outline-offset: 2px;
}

/* ── Focus-visible ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Suppress default outline for mouse users on nav/buttons */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* ── Privacy consent checkbox ── */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
}
.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-consent label {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  cursor: pointer;
}
.form-consent label a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-consent label a:hover { color: var(--gold-light); }

/* ── Form feedback (success / error) ── */
.form-feedback {
  padding: 28px 32px;
  border-left: 3px solid;
  margin-top: 4px;
}
.form-feedback--success {
  border-color: var(--gold);
  background: rgba(196,144,48,0.07);
}
.form-feedback--error {
  border-color: var(--orange);
  background: rgba(192,88,40,0.07);
}
.form-feedback__title {
  font-family: var(--font-sans);
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.form-feedback__body {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   CONVERSION ENHANCEMENTS v2
   Trust signals · Micro-interactions · Sticky CTA · Form UX
   ============================================================ */

/* ── Button micro-interactions (upgrade existing hovers) ──── */
.btn {
  will-change: transform;
}
.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(196,144,48,0.28);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}
.btn--outline-light:hover,
.btn--outline-light:focus-visible {
  transform: translateY(-2px);
}
.nav__cta:hover,
.nav__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(196,144,48,0.22);
}

/* ── Card hover lift + gold border ──────────────────────────── */
.service-card {
  border-top: 2px solid transparent;
  transition: background 0.22s, transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.09);
}
.project-card {
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 52px rgba(0,0,0,0.12);
}
.diff-item {
  transition: background 0.2s, border-color 0.2s, transform 0.22s var(--ease), box-shadow 0.22s;
}
.diff-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}

/* ── Fade-up stagger refinement ─────────────────────────────── */
.fade-up {
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.fade-up:nth-child(1)  { transition-delay: 0.00s; }
.fade-up:nth-child(2)  { transition-delay: 0.10s; }
.fade-up:nth-child(3)  { transition-delay: 0.20s; }
.fade-up:nth-child(4)  { transition-delay: 0.30s; }
.fade-up:nth-child(5)  { transition-delay: 0.40s; }
.fade-up:nth-child(6)  { transition-delay: 0.50s; }


/* ── Testimonials ────────────────────────────────────────────── */
.testimonials {
  padding: 80px 0 88px;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
}
.testimonials .t-eyebrow { display: block; margin-bottom: 10px; }
.testimonials .t-heading  { margin-bottom: 52px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gray-200);
}
.testimonial {
  padding: 36px 36px 40px;
  border-right: 1px solid var(--gray-200);
  margin: 0;
  display: flex;
  flex-direction: column;
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s var(--ease);
}
.testimonial:last-child { border-right: none; }
.testimonial:hover {
  background: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-3px);
  z-index: 1;
  position: relative;
}
.testimonial__quote {
  font-family: var(--font-sans);
  font-size: 52px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0.55;
  user-select: none;
}
.testimonial__text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: 24px;
}
.testimonial__author { border-top: 1px solid var(--gray-200); padding-top: 18px; }
.testimonial__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.testimonial__role {
  font-size: 11.5px;
  color: var(--gray-400);
  letter-spacing: 0.01em;
  margin-top: 3px;
  line-height: 1.5;
}
@media (max-width: 960px) {
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .testimonial:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .testimonials { padding: 56px 0 60px; }
  .testimonial  { padding: 28px 24px 32px; }
}

/* ── Sticky mobile CTA ───────────────────────────────────────── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 12px 16px max(12px, env(safe-area-inset-bottom));
  background: var(--charcoal);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
}
.sticky-mobile-cta .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .sticky-mobile-cta { display: block; }
  /* Prevent bottom content from hiding behind the bar */
  .footer           { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
}

/* ── Form inline validation ──────────────────────────────────── */
.form-field.field-error {
  border-color: #c05828;
  background: rgba(192,88,40,0.03);
}
.form-field.field-error label { color: #c05828; }
.form-field.field-valid {
  border-color: var(--gold);
}
.field-error-msg {
  font-size: 11.5px;
  color: #c05828;
  padding: 5px 20px 6px;
  display: none;
  letter-spacing: 0.01em;
}
.form-field.field-error + .field-error-msg,
.field-error-msg.visible { display: block; }

/* ── Submit spinner ──────────────────────────────────────────── */
.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* ── Success animation ───────────────────────────────────────── */
.form-feedback--success {
  animation: feedback-in 0.45s var(--ease) both;
}
@keyframes feedback-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.form-feedback__check {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 16px;
}

/* ── Reduced motion: disable new animations ──────────────────── */
@media (prefers-reduced-motion: reduce) {
  .btn, .service-card, .project-card, .diff-item,
  .client-logo, .testimonial, .form-feedback--success {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

/* ============================================================
   PRODUCTION PASS v6 — New logo · Plutus iQ · Services nav
   ============================================================ */

/* ── EPM logo mark (new brand asset) ────────────────────────── */
.epm-logo-mark {
  flex-shrink: 0;
  width: 56px;
  height: 64px;
}
.footer .epm-logo-mark {
  width: 44px;
  height: 50px;
  opacity: 0.8;
}

/* Nav logo text — 3-line wordmark (EXECUTIVE / PROYECTS / MANAGEMENT) */
/* Styles defined above in main nav section; this block kept for specificity override */
.nav__logo-text .logo-l1,
.nav__logo-text .logo-l2,
.nav__logo-text .logo-l3 { display: block; }
.nav__logo-text .logo-name,
.nav__logo-text .logo-sub { display: none; }

/* ── Services page anchor navigation ──────────────────────────── */
.srv-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
  margin-bottom: 0;
}
.srv-nav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.srv-nav__inner::-webkit-scrollbar { display: none; }
.srv-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.srv-nav__link:hover { color: var(--charcoal); }
.srv-nav__link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.srv-nav__num {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  font-variant-numeric: tabular-nums;
}

/* ── Disclaimer bottom-left positioning ───────────────────────── */
/* ── Projects disclaimer banner ── */
.projects-disclaimer-banner {
  background: var(--white);
  padding: 48px 0;
}
.projects-disclaimer-banner__text {
  font-size: 13px;
  color: var(--gray-500);
  border-left: none;
  padding: 0;
  margin: 0 auto;
  max-width: 680px;
  text-align: center;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

/* ── Service item bullet list ── */
.service-item__bullets {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-item__bullets li {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.service-item__bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 400;
}

.page-disclaimer {
  position: absolute;
  bottom: 16px;
  left: 0;
  padding: 0 48px;
  font-size: 10px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
  line-height: 1.5;
  max-width: 600px;
  z-index: 3;
}
.section-disclaimer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  font-size: 10.5px;
  color: var(--gray-400);
  letter-spacing: 0.02em;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .page-disclaimer { padding: 0 20px; bottom: 12px; }
}

/* ── Plutus iQ AI footer credit ────────────────────────────────── */
.footer__powered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 18px 0 0;
  margin-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__powered a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.22);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__powered a:hover { color: rgba(255,255,255,0.5); }
.footer__powered .powered-text { color: rgba(255,255,255,0.18); font-size: 10px; letter-spacing: 0.06em; }
.plutusiq-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.plutusiq-logo svg {
  width: 16px;
  height: 16px;
}

/* ── Text alignment: left-align global consistency ─────────────── */
.cta-block:not(.cta-block--split) {
  text-align: left;
}
.cta-block:not(.cta-block--split) .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta-block:not(.cta-block--split) .t-eyebrow { justify-content: flex-start; }
.cta-block:not(.cta-block--split) .t-body { margin-left: 0; margin-right: 0; max-width: 480px; }
.cta-block:not(.cta-block--split) .btn-group { justify-content: flex-start; }
.section-header--center { text-align: left; }
.section-header--center .t-body { margin: 14px 0 0; }

/* ── Consistent section title hierarchy ────────────────────────── */
.t-heading {
  color: var(--charcoal);
}
h1, h2, h3 {
  text-align: left;
}

/* ── Hero overlap fix: ensure hero text is never hidden by nav ─── */
.hero__content {
  padding-top: 20px;
  margin-left: -35px;
}
@media (max-width: 768px) {
  .hero__content { padding-top: 0; margin-left: 0; }
  .hero { align-items: center; padding-bottom: 60px; padding-top: calc(var(--nav-h) + 20px); }
}

/* ── Remove white box artifact: testimonials background fix ──── */
.testimonials {
  background: var(--gray-50);
}

/* ── Footer brand updated for new logo ─────────────────────────── */
.footer__brand-row {
  align-items: flex-start;
  gap: 14px;
}

/* ── Responsive: services nav ──────────────────────────────────── */
@media (max-width: 768px) {
  .srv-nav__link { padding: 12px 16px; font-size: 10px; }
}
