/* ============================================================
   H&M DESIGN GROUP — Enterprise Website
   Design System: Black · White · Charcoal Grey · Silver
   Typography: Cinzel (headings) · Josefin Sans (body)
   Inspired by HOK, Gensler enterprise aesthetic
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* ── HK Modular (self-hosted — place font files in /fonts/) ── */
@font-face {
  font-family: 'HK Modular';
  src: url('../fonts/HKModular-Bold.woff2') format('woff2'),
       url('../fonts/HKModular-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Brand Colors */
  --black:          #0A0A0A;
  --charcoal:       #1C1C1C;
  --charcoal-mid:   #2C2C2C;
  --charcoal-light: #3D3D3D;
  --grey-dark:      #555555;
  --grey:           #7A7A7A;
  --grey-light:     #ABABAB;
  --grey-border:    #E2E2E2;
  --off-white:      #F6F6F6;
  --white:          #FFFFFF;
  --orange:         #0a0a0a;
  --orange-dark:    #1c1c1c;
  --orange-light:   #3a3a3a;
  --orange-faint:   rgba(0, 0, 0, 0.04);

  /* Typography */
  --font-heading: 'Syne', sans-serif;
  --font-body:    'Outfit', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing Scale */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  /* Layout */
  --container: 1280px;
  --nav-height: 68px;

  /* Transitions */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --t-fast:    0.15s;
  --t-base:    0.25s;
  --t-slow:    0.4s;
  --t-slower:  0.6s;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.14);
  --shadow-xl:  0 28px 64px rgba(0,0,0,0.20);
  --shadow-orange: 0 8px 28px rgba(0,0,0,0.25);

  /* Z-index scale */
  --z-base:    1;
  --z-dropdown: 100;
  --z-sticky:  200;
  --z-overlay: 300;
  --z-modal:   400;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::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-body);
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── Typography Scale ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.display-1 { font-size: clamp(3rem, 7vw, 6rem);   font-weight: 700; line-height: 1.05; letter-spacing: -0.01em; }
.display-2 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 600; line-height: 1.1; }
h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-bottom: var(--space-md);
}
/* On dark sections, section-label uses white */
.section--dark .section-label,
.section--black .section-label,
.stats .section-label,
.testimonials .section-label,
.hero .section-label,
.page-hero .section-label,
.contact-info .section-label { color: rgba(255,255,255,0.45); }

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--grey-dark);
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section { padding: var(--space-4xl) 0; }
.section--sm { padding: var(--space-3xl) 0; }
.section--lg { padding: calc(var(--space-4xl) * 1.5) 0; }

.section--dark  { background: var(--charcoal); color: var(--white); }
.section--black { background: var(--black);    color: var(--white); }
.section--grey  { background: var(--off-white); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.text-center { text-align: center; }
.text-white  { color: var(--white); }
.text-orange { color: var(--orange); }
.text-grey   { color: var(--grey); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: var(--t-base) var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.btn-primary:hover {
  background: var(--charcoal-light);
  border-color: var(--charcoal-light);
  box-shadow: var(--shadow-orange);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn-ghost {
  padding: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
  padding-bottom: 2px;
  transition: color var(--t-base), border-color var(--t-base);
}
.btn-ghost:hover { color: var(--orange-dark); border-color: var(--orange-dark); }

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Arrow Link ───────────────────────────────────────────── */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: gap var(--t-base) var(--ease), color var(--t-base);
}
.arrow-link:hover { gap: 16px; }
.arrow-link svg { width: 18px; height: 18px; transition: transform var(--t-base) var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: var(--z-sticky);
  transition: background var(--t-slow) var(--ease);
}

.nav--transparent { background: transparent; }
.nav--solid {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav > .container {
  height: 100%;
}

.nav__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-xl);
}
.nav__inner .nav__logo { justify-self: start; }
.nav__inner .nav__links { justify-self: center; }
.nav__inner .nav__cta { justify-self: end; }
.nav__inner .nav__hamburger { justify-self: end; }

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-hm {
  font-family: 'HK Modular', 'Space Mono', 'Courier New', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
}

.logo-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.35);
  margin: 0 12px;
  align-self: center;
  flex-shrink: 0;
}

.logo-designs {
  font-family: 'Outfit', 'Helvetica Neue', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  line-height: 1;
  align-self: center;
}

/* Nav Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--t-base);
  position: relative;
  padding-bottom: 4px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width var(--t-base) var(--ease);
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
}
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__cta {
  margin-left: var(--space-lg);
  padding: 0 28px;
  height: 44px;
  font-size: 0.72rem;
  align-self: center;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: calc(var(--z-sticky) + 1);
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--t-base) var(--ease), opacity var(--t-base);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.nav__mobile {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: calc(var(--z-sticky) - 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
}
.nav__mobile.open { transform: translateX(0); }
.nav__mobile .nav__link { font-size: 1rem; letter-spacing: 0.2em; }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  height: 50vh;
  min-height: 380px;
  background: var(--charcoal);
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-3xl);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.page-hero__content { position: relative; z-index: 2; }
.page-hero__content .section-label { color: rgba(255,255,255,0.55); }
.page-hero__content h1 { color: var(--white); }

/* ── Hero (Homepage) ──────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.88) 0%,
    rgba(28,28,28,0.70) 55%,
    rgba(10,10,10,0.50) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__eyebrow-line { display: none; }

.hero__eyebrow span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s var(--ease-out) 0.4s forwards;
}

.hero__title em {
  font-style: normal;
  color: var(--white);
}

.hero__subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.70);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: var(--space-2xl);
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s var(--ease-out) 0.6s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.2s forwards;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Ticker / Marquee ─────────────────────────────────────── */
.ticker {
  background: var(--charcoal);
  overflow: hidden;
  height: 42px;
  display: flex;
  align-items: center;
}

.ticker__track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xl);
  padding-right: var(--space-xl);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}

.ticker__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

/* ── Stats Band ───────────────────────────────────────────── */
.stats {
  background: var(--charcoal);
  padding: var(--space-3xl) 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats__item {
  padding: var(--space-xl);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.stats__item:last-child { border-right: none; }

.stats__item::before { display: none; }

.stats__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stats__suffix { color: var(--white); }

.stats__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: var(--space-sm);
}

/* ── Section Header ───────────────────────────────────────── */
.section-header { margin-bottom: var(--space-2xl); }
.section-header--center { text-align: center; }

.section-header__line {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.section-header--center .section-header__line { justify-content: center; }

.section-header__rule { display: none; }

.section-header h2 { color: inherit; }
.section-header p   { color: var(--grey-dark); margin-top: var(--space-lg); max-width: 580px; }
.section-header--center p { margin-left: auto; margin-right: auto; }

/* ── Services ─────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-border);
  border: 1px solid var(--grey-border);
}

.service-card {
  background: var(--white);
  padding: var(--space-2xl) var(--space-xl);
  transition: background var(--t-base) var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width var(--t-slow) var(--ease);
}
.service-card:hover::before { width: 100%; background: var(--black); }
.service-card:hover { background: var(--off-white); }

.service-card__number {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--black);
  margin-bottom: var(--space-xl);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-lg);
  color: var(--black);
}

.service-card__icon svg { width: 100%; height: 100%; stroke-width: 1.25; }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: var(--space-md);
  letter-spacing: 0.03em;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--grey-dark);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.service-card .arrow-link { color: var(--orange); }

/* ── Featured Projects ────────────────────────────────────── */
.projects__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.project-card--tall { aspect-ratio: 2/3; }
.project-card--wide { grid-column: span 2; aspect-ratio: 16/7; }

.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slower) var(--ease);
}

.project-card:hover .project-card__img { transform: scale(1.06); }

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.15) 60%, transparent 100%);
  opacity: 0.6;
  transition: opacity var(--t-base) var(--ease);
}
.project-card:hover .project-card__overlay { opacity: 1; }

.project-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  transform: translateY(8px);
  transition: transform var(--t-base) var(--ease);
}
.project-card:hover .project-card__info { transform: translateY(0); }

.project-card__category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-sm);
}

.project-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.project-card__location {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  letter-spacing: 0.08em;
}

.project-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-md);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.project-card:hover .project-card__cta { opacity: 1; transform: translateY(0); }
.project-card__cta svg { width: 14px; height: 14px; }

/* ── About Split Section ──────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.about-split__image {
  position: relative;
  overflow: hidden;
}

.about-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,93,4,0.15) 0%, transparent 60%);
}

.about-split__content {
  background: var(--off-white);
  padding: var(--space-4xl) var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-split__content h2 { color: var(--black); margin-bottom: var(--space-xl); }
.about-split__content p  { color: var(--grey-dark); margin-bottom: var(--space-lg); }

.about-split__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.value-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.value-item__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 7px;
}

.value-item__text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}

/* ── Team Section ─────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.team-card {
  position: relative;
  overflow: hidden;
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition: filter var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}

.team-card__photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--charcoal-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__initials {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
}

.team-card:hover .team-card__photo { filter: grayscale(0); transform: scale(1.03); }

.team-card__info {
  padding: var(--space-lg) 0 0;
  border-top: 1px solid var(--grey-border);
  margin-top: var(--space-md);
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.03em;
}

.team-card__title {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 4px;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials { background: var(--black); }

.testimonials__slider { position: relative; overflow: hidden; }

.testimonial {
  display: none;
  padding: var(--space-3xl) 0;
}
.testimonial.active { display: block; animation: fadeIn 0.5s var(--ease); }

.testimonial__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
  font-style: italic;
}

.testimonial__quote::before { content: '\201C'; color: var(--orange); }
.testimonial__quote::after  { content: '\201D'; color: var(--orange); }

.testimonial__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.testimonial__name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.testimonial__role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-bottom: var(--space-2xl);
}

.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background var(--t-base), transform var(--t-base);
  border: none;
  padding: 8px;
  box-sizing: content-box;
}
.testimonial-dot.active {
  background: var(--orange);
  transform: scale(1.4);
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: var(--charcoal);
  padding: var(--space-3xl) 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  max-width: 600px;
}

.cta-banner .btn-outline { flex-shrink: 0; }

/* ── Case Study Page ──────────────────────────────────────── */
.case-study {
  padding: var(--space-4xl) 0;
  border-bottom: 1px solid var(--grey-border);
}
.case-study:last-of-type { border-bottom: none; }

.case-study__meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.case-study__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 10px 14px;
  border: 1px solid var(--grey-border);
}

.case-study__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.case-study__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}
.case-study__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slower) var(--ease);
}
.case-study__image:hover img { transform: scale(1.03); }

.case-study__content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: var(--space-sm);
}

.case-study__client {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: var(--space-2xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.case-study__client svg { width: 14px; height: 14px; }

.case-study__block { margin-bottom: var(--space-2xl); }

.case-study__block-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  border-left: 2px solid var(--black);
  padding-left: var(--space-md);
  margin-bottom: var(--space-md);
}

.case-study__block p {
  font-size: 0.95rem;
  color: var(--grey-dark);
  line-height: 1.8;
}

.case-study__block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.case-study__block ul li {
  font-size: 0.9rem;
  color: var(--grey-dark);
  line-height: 1.7;
  padding-left: var(--space-lg);
  position: relative;
}
.case-study__block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 1px;
  background: var(--black);
}

.case-study__outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--off-white);
}

.case-study__outcome-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}

.case-study__outcome-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

.case-study__services {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

@media (max-width: 900px) {
  .case-study__layout { grid-template-columns: 1fr; }
  .case-study__image { position: relative; top: auto; }
  .case-study__outcomes { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .case-study__outcomes { grid-template-columns: 1fr 1fr; }
}

/* ── Awards Section ──────────────────────────────────────────*/
.footer__awards {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 0;
}

.footer__awards-label {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: var(--space-lg);
}

.footer__awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.award-badge {
  background: var(--black);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  transition: background var(--t-base);
}
.award-badge:hover { background: var(--charcoal); }

.award-badge__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.2);
  margin-top: 2px;
}
.award-badge__icon svg { width: 100%; height: 100%; }

.award-badge__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 4px;
}

.award-badge__desc {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

.award-badge__body {
  font-size: 0.63rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 5px;
}

@media (max-width: 900px) {
  .footer__awards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .footer__awards-grid { grid-template-columns: 1fr; }
}

/* ── Credentials Strip ────────────────────────────────────── */
.footer__credentials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: var(--space-xl);
}

.footer__credential {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.footer__credential svg {
  width: 14px; height: 14px;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.footer__credential strong {
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

/* ── Credentials Badges (About page) ─────────────────────── */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--grey-border);
  border: 1px solid var(--grey-border);
}

.credential-card {
  background: var(--white);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}

.credential-card__icon {
  width: 48px; height: 48px;
  border: 1px solid var(--grey-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
}
.credential-card__icon svg { width: 22px; height: 22px; }

.credential-card__title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}

.credential-card__value {
  font-size: 0.78rem;
  color: var(--grey);
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: var(--space-4xl) 0 0;
  color: rgba(255,255,255,0.55);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__brand {}

.footer__brand .logo-hm { font-size: 1.6rem; }
.footer__brand .logo-designs { color: rgba(255,255,255,0.45); }

.footer__tagline {
  margin-top: var(--space-lg);
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: border-color var(--t-base), color var(--t-base), background var(--t-base);
}
.footer__social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232,93,4,0.08);
}
.footer__social-link svg { width: 16px; height: 16px; }

.footer__col h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-xl);
}

.footer__links { display: flex; flex-direction: column; gap: var(--space-md); }

.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--t-base);
  display: inline-block;
}
.footer__link:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer__bottom {
  padding: var(--space-xl) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

.footer__bottom a { color: rgba(255,255,255,0.35); transition: color var(--t-base); }
.footer__bottom a:hover { color: var(--white); }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.contact-info {
  background: var(--charcoal);
  padding: var(--space-4xl) var(--space-3xl);
  color: var(--white);
}

.contact-info h2 { color: var(--white); margin-bottom: var(--space-xl); }
.contact-info p  { color: rgba(255,255,255,0.55); margin-bottom: var(--space-2xl); }

.contact-info__items { display: flex; flex-direction: column; gap: var(--space-2xl); }

.contact-info__item { display: flex; gap: var(--space-lg); align-items: flex-start; }

.contact-info__icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-info__icon svg { width: 20px; height: 20px; }

.contact-info__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.contact-info__value {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.6;
}

.contact-form-wrap {
  background: var(--off-white);
  padding: var(--space-4xl) var(--space-3xl);
}

.contact-form-wrap h3 {
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: var(--space-xl);
}

/* ── Form Styles ──────────────────────────────────────────── */
.form-group { margin-bottom: var(--space-lg); }

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin-bottom: var(--space-sm);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--black);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-control::placeholder { color: var(--grey-light); }

.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,93,4,0.10);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }

.form-select { cursor: pointer; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
  margin-top: 2px;
}

.form-check label {
  font-size: 0.85rem;
  color: var(--grey-dark);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 300;
  cursor: pointer;
}

.form-success {
  display: none;
  background: var(--off-white);
  border: 1px solid var(--grey-border);
  border-left: 3px solid var(--orange);
  padding: var(--space-lg) var(--space-xl);
  margin-top: var(--space-lg);
  font-size: 0.9rem;
  color: var(--grey-dark);
}

/* ── Portfolio Filter ─────────────────────────────────────── */
.portfolio-filters {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.filter-btn {
  padding: 12px 22px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--grey-border);
  color: var(--grey-dark);
  background: transparent;
  cursor: pointer;
  transition: all var(--t-base) var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.filter-btn.active { background: var(--black); border-color: var(--black); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.portfolio-item { display: block; }
.portfolio-item.hidden { display: none; }

/* ── Services Detail ──────────────────────────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--grey-border);
}

.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) .service-detail__image { order: 2; }
.service-detail:nth-child(even) .service-detail__content { order: 1; }

.service-detail__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slower) var(--ease);
}
.service-detail__image:hover img { transform: scale(1.04); }

.service-detail__number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.service-detail h3 {
  font-size: 1.6rem;
  margin-bottom: var(--space-lg);
  color: var(--black);
}

.service-detail p {
  color: var(--grey-dark);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.service-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.service-tag {
  padding: 5px 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--grey-border);
  color: var(--grey-dark);
}

/* ── Timeline ─────────────────────────────────────────────── */
.timeline { position: relative; padding: var(--space-2xl) 0; }

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--grey-border);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  align-items: center;
}

.timeline-item:nth-child(even) .timeline-item__content { order: 3; text-align: left; }
.timeline-item:nth-child(even) .timeline-item__year    { order: 2; }
.timeline-item:nth-child(even) .timeline-item__empty   { order: 1; }

.timeline-item:nth-child(odd) .timeline-item__content { text-align: right; }

.timeline-item__dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.timeline-item__dot-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--charcoal);
}

.timeline-item__year {
  text-align: center;
  display: flex;
  justify-content: center;
}

.timeline-item__date {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--grey);
  display: block;
  margin-bottom: var(--space-sm);
}

.timeline-item__content h4 {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: var(--space-sm);
}

.timeline-item__content p {
  font-size: 0.88rem;
  color: var(--grey-dark);
  line-height: 1.7;
}

/* ── Portfolio Access Gate ────────────────────────────────── */
.portfolio-gate {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

.portfolio-gate__box {
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.portfolio-gate__icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  color: rgba(255,255,255,0.5);
}
.portfolio-gate__icon svg { width: 28px; height: 28px; }

.portfolio-gate__box h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.02em;
}

.portfolio-gate__box p {
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--space-2xl);
}

.portfolio-gate__input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
  outline: none;
  margin-bottom: var(--space-lg);
  transition: border-color var(--t-base);
}

.portfolio-gate__input::placeholder {
  color: rgba(255,255,255,0.2);
  text-transform: none;
  letter-spacing: 0.05em;
}

.portfolio-gate__input:focus { border-color: rgba(255,255,255,0.4); }

.portfolio-gate__error {
  display: none;
  font-size: 0.8rem;
  color: #ef4444;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
}

.portfolio-gate__divider {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
  color: rgba(255,255,255,0.2);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.portfolio-gate__divider::before,
.portfolio-gate__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.portfolio-gate__request {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color var(--t-base);
}
.portfolio-gate__request:hover { color: var(--white); }

/* ── Client Logos Section ─────────────────────────────────── */
.clients { padding: var(--space-3xl) 0; border-top: 1px solid var(--grey-border); border-bottom: 1px solid var(--grey-border); }

.clients__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.clients__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey-light);
}

.clients__track-wrap { overflow: hidden; position: relative; }

.clients__track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  width: 100%;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  height: 72px;
  border-right: 1px solid var(--grey-border);
  flex-shrink: 0;
  filter: grayscale(1) opacity(0.5);
  transition: filter var(--t-base);
}
.client-logo:first-child { border-left: 1px solid var(--grey-border); }
.client-logo:hover { filter: grayscale(0) opacity(1); }

/* Brand text color on hover */
.client-logo[data-brand="hermes"]:hover .client-logo__text    { color: #E8601C; }
.client-logo[data-brand="7eleven"]:hover .client-logo__text   { color: #007A3D; }
.client-logo[data-brand="selfridges"]:hover .client-logo__text { color: #c8a84b; }

.client-logo img { height: 28px; width: auto; object-fit: contain; }

.client-logo__text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  white-space: nowrap;
  transition: color 0.25s;
}

/* ── Partners Section ─────────────────────────────────────── */
.partners { padding: var(--space-3xl) 0; background: var(--off-white); }

.partners__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--grey-border);
  border: 1px solid var(--grey-border);
  max-width: 960px;
  margin: 0 auto;
}

.partner-card {
  background: var(--white);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 110px;
  transition: background var(--t-base);
  cursor: default;
}
.partner-card:hover { background: var(--off-white); }

.partner-card__name {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.4;
}

.partner-card__type {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-top: 6px;
}

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

@media (max-width: 900px) {
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
  .client-logo { padding: 0 32px; }
}

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--t-slower) var(--ease-out),
              transform var(--t-slower) var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-lg);
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color var(--t-base); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ── Cookie Consent ──────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-modal);
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-xl) 0;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  flex: 1;
  min-width: 260px;
}
.cookie-banner__text a { color: rgba(255,255,255,0.8); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__text a:hover { color: var(--white); }

.cookie-banner__actions {
  display: flex;
  gap: var(--space-md);
  flex-shrink: 0;
}

.cookie-btn-accept {
  padding: 14px 24px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn-accept:hover { background: var(--off-white); }

.cookie-btn-decline {
  padding: 14px 24px;
  background: transparent;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}

/* ── Keyframes ────────────────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer__top   { grid-template-columns: 1fr 1fr; }
  .about-split__content { padding: var(--space-3xl) var(--space-2xl); }
  .stats__grid   { grid-template-columns: repeat(2, 1fr); }
  .stats__item   { border-bottom: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 900px) {
  :root { --space-4xl: 80px; --space-3xl: 64px; }

  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__hamburger { display: flex; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }
  .projects__grid { grid-template-columns: 1fr; }
  .project-card--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .about-split    { grid-template-columns: 1fr; }
  .about-split__image { height: 400px; }
  .contact-layout { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .timeline::before { display: none; }
  .timeline-item  { grid-template-columns: auto 1fr; }
  .timeline-item:nth-child(odd)  .timeline-item__content { text-align: left; order: 2; }
  .timeline-item:nth-child(odd)  .timeline-item__year    { order: 1; }
  .timeline-item:nth-child(even) .timeline-item__content { order: 2; }
  .timeline-item:nth-child(even) .timeline-item__year    { order: 1; }
  .timeline-item .timeline-item__empty { display: none; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail__image   { order: 0; }
  .service-detail:nth-child(even) .service-detail__content { order: 0; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split__values { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --space-4xl: 60px; --space-3xl: 48px; --space-2xl: 40px; }

  .container { padding: 0 var(--space-lg); }
  .services__grid { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .stats__grid    { grid-template-columns: 1fr 1fr; }
  .hero__actions  { flex-direction: column; align-items: flex-start; }
  .form-row       { grid-template-columns: 1fr; }
  .footer__top    { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-info   { padding: var(--space-3xl) var(--space-xl); }
  .contact-form-wrap { padding: var(--space-3xl) var(--space-xl); }
  .about-split__content { padding: var(--space-2xl) var(--space-xl); }
  .cta-banner { padding: var(--space-2xl) 0; }
  .cta-banner h2 { font-size: 1.5rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }

  /* Typography — bump small labels to readable sizes */
  .form-group label { font-size: 0.8rem; }
  .filter-btn       { font-size: 0.8rem; }
  .stats__label     { font-size: 0.8rem; }
}
