/* ============================================
   PROMOVERME SAS — v2 Production Stylesheet
   Dark cinematic / premium agency aesthetic
   ============================================ */

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: 1rem; line-height: 1.7; color: var(--text); background: var(--cream); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
::selection { background: var(--gold); color: var(--black); }

/* --- Variables --- */
:root {
  /* --- Active: Green & Gold --- */
  --black: #081d19;
  --dark: #11453C;
  --dark2: #0e3830;
  --dark3: #153d36;
  --mid: #1e5c52;
  --cream: #f2f5f0;
  --cream2: #e5ebe3;
  --text: #11453C;
  --text-light: #e0ebe6;
  --text-dim: #7a9990;
  --text-muted: #5a7a72;
  --gold: #c9a96e;
  --gold-dark: #a8893f;
  --border-light: rgba(17,69,60,0.08);
  --border-dark: rgba(200,235,220,0.1);

  /* --- Alternate: Black & Gold ---
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #161616;
  --dark3: #1c1c1c;
  --mid: #2a2a2a;
  --cream: #f4f1eb;
  --cream2: #ebe7df;
  --text: #1a1a1a;
  --text-light: #e8e4dc;
  --text-dim: #999;
  --text-muted: #666;
  --gold: #c9a96e;
  --gold-dark: #a8893f;
  --border-light: rgba(0,0,0,0.08);
  --border-dark: rgba(255,255,255,0.08);
  --- */
  --radius: 4px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

/* --- Grain Overlay --- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  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-repeat: repeat;
  background-size: 180px;
}

/* --- Custom Cursor --- */
.cursor {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
  mix-blend-mode: difference;
}

@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
  * { cursor: none !important; }
}

.cursor__dot {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s var(--ease);
}

.cursor--hover .cursor__dot {
  transform: scale(4);
}

/* --- Preloader --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.loader__text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: 0.2em;
  color: var(--text-light);
  opacity: 0;
  transform: translateY(20px);
}

.loader__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0;
  transform: translateY(10px);
}

.loader__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  width: 0;
}

.loader--done {
  pointer-events: none;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(3rem, 9vw, 7rem); font-weight: 800; }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -0.01em; }
h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}

.label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.label--light {
  color: var(--text-dim);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) { .container { padding: 0 48px; } }
@media (min-width: 1200px) { .container { padding: 0 64px; } }

.d-md { display: none; }
@media (min-width: 768px) { .d-md { display: inline; } }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--black);
  border-radius: 0;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-dark);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease);
}

.btn:hover::before {
  transform: translateY(0);
}

.btn span,
.btn svg {
  position: relative;
  z-index: 1;
}

.btn:hover {
  color: var(--black);
}

.btn svg {
  transition: transform 0.4s var(--ease);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.5s var(--ease);
}

.nav--scrolled {
  padding: 14px 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) { .nav__inner { padding: 0 48px; } }
@media (min-width: 1200px) { .nav__inner { padding: 0 64px; } }

.nav__logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--text-light);
  letter-spacing: -0.02em;
  z-index: 101;
}

.nav__logo sup {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  vertical-align: super;
  margin-left: 2px;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 32px;
  padding: 6px 0;
  z-index: 101;
}

.nav__toggle span {
  display: block;
  height: 1px;
  background: var(--text-light);
  transition: all 0.4s var(--ease);
  transform-origin: center;
}

.nav--open .nav__toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav--open .nav__toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

@media (min-width: 768px) {
  .nav__toggle { display: none; }
}

.nav__menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav--open .nav__menu { display: flex; }

@media (min-width: 768px) {
  .nav__menu {
    display: flex;
    position: static;
    background: none;
    flex-direction: row;
    gap: 36px;
  }
}

.nav__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-light);
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .nav__link {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
  }
  .nav__link:hover { color: var(--text-light); }
}

.nav__link--btn {
  font-weight: 500;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.4s var(--ease);
}

@media (min-width: 768px) {
  .nav__link--btn {
    color: var(--text-light);
    font-size: 0.8125rem;
  }
  .nav__link--btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
  }
}

/* --- Language Toggle --- */
.nav__lang {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--text-light);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.4s var(--ease);
  margin-left: 8px;
  flex-shrink: 0;
}
.nav__lang:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.nav--scrolled .nav__lang {
  color: var(--text-light);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
}
.nav--scrolled-always .nav__lang {
  color: var(--text-light);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
}
.nav--scrolled .nav__lang:hover,
.nav--scrolled-always .nav__lang:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
@media (max-width: 767px) {
  .nav__lang {
    color: var(--text-light);
    border-color: rgba(255,255,255,0.15);
    margin: 16px auto 0;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--black);
  padding: 140px 24px 80px;
}

@media (min-width: 768px) {
  .hero { padding: 140px 48px 80px; }
}

@media (min-width: 1200px) {
  .hero { padding: 140px 64px 80px; }
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(100, 120, 160, 0.06) 0%, transparent 60%);
}

.hero__lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 15%;
}

.hero__lines span {
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.03);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1340px;
  margin: 0 auto;
  width: 100%;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 48px;
  opacity: 0;
}

.hero__tag-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  color: var(--text-light);
  margin-bottom: 32px;
}

.hero__title-line {
  display: block;
  overflow-x: visible;
  overflow-y: clip;
  padding-bottom: 0.05em;
}

.hero__title-line > span {
  display: block;
  transform: translateY(105%);
}

.hero__title em {
  font-size: 1.1em;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
  max-width: 480px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
}

.hero__cta {
  opacity: 0;
  transform: translateY(20px);
}

.hero__scroll {
  position: absolute;
  right: 48px;
  bottom: 48px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero__scroll { display: flex; }
}

.hero__scroll span {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  writing-mode: vertical-rl;
}

.hero__scroll-track {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.hero__scroll-thumb {
  width: 100%;
  height: 30px;
  background: var(--gold);
  animation: scrollThumb 2s var(--ease) infinite;
}

@keyframes scrollThumb {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  background: var(--dark);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
  padding: 20px 0;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  gap: 0;
  animation: marqueeScroll 25s linear infinite;
  will-change: transform;
}

.marquee__item {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0 24px;
  flex-shrink: 0;
}

.marquee__sep {
  color: var(--gold);
  font-size: 0.75rem;
  opacity: 0.7;
  flex-shrink: 0;
  padding: 0 8px;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 140px 0;
  background: var(--cream);
}

@media (min-width: 768px) { .about { padding: 180px 0; } }

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 960px) {
  .about__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.about__heading {
  color: var(--text);
  line-height: 1.1;
}

.about__heading em {
  color: var(--gold-dark);
  font-size: 1.05em;
}

.about__right {
  padding-top: 8px;
}

.about__line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
}

.about__right p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.about__stat-val {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.about__stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ============================================
   VIDEO SHOWCASE
   ============================================ */
.video-showcase {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) { .video-showcase { padding: 140px 0; } }

.video-showcase__inner {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.video-showcase__label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.video-showcase__heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 16px;
}

.video-showcase__heading em {
  color: var(--gold);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.1em;
}

.video-showcase__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.video-showcase__wrapper {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-showcase__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom play overlay */
.video-showcase__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 29, 25, 0.4);
  cursor: pointer;
  transition: background 0.4s var(--ease);
  z-index: 2;
}

.video-showcase__play:hover {
  background: rgba(8, 29, 25, 0.2);
}

.video-showcase__play.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.video-showcase__play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: 0 4px 24px rgba(201, 169, 110, 0.3);
}

.video-showcase__play:hover .video-showcase__play-btn {
  transform: scale(1.08);
  box-shadow: 0 8px 40px rgba(201, 169, 110, 0.5);
}

.video-showcase__play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  color: var(--black);
}

@media (max-width: 767px) {
  .video-showcase__play-btn {
    width: 64px;
    height: 64px;
  }
  .video-showcase__play-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* ============================================
   VIDEO POPUP
   ============================================ */
.video-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
}

.video-popup.is-active {
  pointer-events: auto;
  visibility: visible;
}

.video-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(8px);
  opacity: 0;
}

.video-popup__container {
  position: relative;
  width: 90vw;
  max-width: 960px;
  will-change: transform;
}

.video-popup__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.video-popup__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.video-popup__wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.6);
}

.video-popup__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-popup__unmute {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.2s var(--ease);
}

.video-popup__unmute:hover {
  background: #d4b96e;
  transform: translateY(-1px);
}

.video-popup__unmute-icon--on {
  display: none;
}

.video-popup__unmute.is-unmuted .video-popup__unmute-icon--muted {
  display: none;
}

.video-popup__unmute.is-unmuted .video-popup__unmute-icon--on {
  display: block;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--black);
  padding: 120px 0 80px;
}

@media (min-width: 768px) { .services { padding: 160px 0 120px; } }

.services__header {
  margin-bottom: 64px;
}

.services__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--text-light);
}

.services__list {
  border-top: 1px solid var(--border-dark);
}

.service-row {
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
  transition: background 0.5s var(--ease);
}

.service-row:hover {
  background: var(--dark2);
}

.service-row__inner {
  display: grid;
  grid-template-columns: 48px 1fr 32px;
  gap: 20px;
  align-items: start;
  padding: 36px 0;
  transition: padding 0.5s var(--ease);
}

@media (min-width: 768px) {
  .service-row__inner {
    grid-template-columns: 60px 1fr 48px;
    gap: 32px;
    padding: 48px 0;
    align-items: center;
  }
}

.service-row:hover .service-row__inner {
  padding-left: 16px;
  padding-right: 16px;
}

.service-row__num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
  padding-top: 4px;
}

@media (min-width: 768px) {
  .service-row__num { padding-top: 0; }
}

.service-row__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .service-row__content {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
}

.service-row__title {
  font-size: clamp(1.375rem, 3vw, 2rem);
  color: var(--text-light);
  white-space: nowrap;
  transition: transform 0.5s var(--ease);
}

.service-row:hover .service-row__title {
  transform: translateX(8px);
}

.service-row__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.3);
  max-width: 400px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}

@media (min-width: 768px) {
  .service-row__desc {
    opacity: 0.6;
    max-height: none;
  }
}

.service-row:hover .service-row__desc {
  opacity: 1;
  max-height: 200px;
}

.service-row__arrow {
  color: rgba(255,255,255,0.15);
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
  justify-self: end;
}

.service-row:hover .service-row__arrow {
  color: var(--gold);
  transform: translateX(6px);
}

/* ============================================
   IMPACT
   ============================================ */
.impact {
  background: var(--cream);
  padding: 140px 0;
}

@media (min-width: 768px) { .impact { padding: 180px 0; } }

.impact__header {
  margin-bottom: 80px;
}

.impact__title {
  color: var(--text);
}

.impact__title em {
  color: var(--gold-dark);
  font-size: 1.05em;
}

.impact__numbers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 100px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border-light);
}

@media (min-width: 768px) {
  .impact__numbers {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.impact__num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.impact__num-label {
  display: block;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 280px;
}

/* Impact Cards */
.impact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .impact__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.impact__card {
  background: var(--cream2);
  padding: 40px 36px;
  position: relative;
  transition: transform 0.4s var(--ease);
}

.impact__card:hover {
  transform: translateY(-4px);
}

.impact__card-num {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.impact__card h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.impact__card p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ============================================
   APPROACH
   ============================================ */
.approach {
  background: var(--dark);
  padding: 120px 0;
}

@media (min-width: 768px) { .approach { padding: 160px 0; } }

.approach__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 960px) {
  .approach__split {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.approach__heading {
  color: var(--text-light);
  margin-bottom: 24px;
}

.approach__heading em {
  color: var(--gold);
  font-size: 1.1em;
}

.approach__text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
  max-width: 400px;
}

.approach__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.approach__item {
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
}

.approach__item h4 {
  color: var(--text-light);
  margin-bottom: 8px;
  font-size: 1.0625rem;
}

.approach__item p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   CLIENTS
   ============================================ */
.clients {
  background: var(--cream);
  padding: 80px 0;
}

@media (min-width: 768px) { .clients { padding: 100px 0; } }

.clients__inner {
  text-align: center;
}

.clients__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

@media (min-width: 768px) {
  .clients__list {
    flex-direction: row;
    gap: 48px;
  }
}

.clients__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 32px;
  background: var(--cream2);
  transition: transform 0.3s var(--ease);
}

.clients__item:hover {
  transform: translateY(-2px);
}

.clients__name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.clients__cat {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--black);
  padding: 120px 0;
}

@media (min-width: 768px) { .contact { padding: 160px 0; } }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 960px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.contact__heading {
  color: var(--text-light);
  margin-bottom: 24px;
}

.contact__heading em {
  color: var(--gold);
  font-size: 1.05em;
}

.contact__text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
  max-width: 420px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__email {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--gold);
  letter-spacing: -0.01em;
  transition: opacity 0.3s;
  display: inline-block;
}

.contact__email:hover {
  opacity: 0.7;
}

.contact__location {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.3);
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.form__input {
  width: 100%;
  padding: 14px 0;
  font-size: 1rem;
  color: var(--text-light);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  outline: none;
  transition: border-color 0.3s;
}

.form__input::placeholder {
  color: rgba(255,255,255,0.15);
}

.form__input:focus {
  border-bottom-color: var(--gold);
}

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

.form__select option {
  background: var(--dark);
  color: var(--text-light);
}

.form__textarea {
  resize: vertical;
  min-height: 80px;
}

.form .btn {
  margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark2);
  padding: 64px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
}

@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
  }
}

.footer__name {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-light);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col h4 {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

.footer__col a:hover { color: var(--text-light); }

.footer__bottom {
  padding: 24px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__legal a {
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.footer__legal a:hover { color: var(--text-light); }
.footer__legal-sep { color: rgba(255,255,255,0.2); }

.footer__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.footer__lang-btn {
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 3px;
  transition: all 0.3s var(--ease);
}
.footer__lang-btn:hover {
  color: var(--text-light);
}
.footer__lang-btn--active {
  color: var(--text-light);
  background: rgba(255,255,255,0.08);
}
.footer__lang-sep {
  color: rgba(255,255,255,0.2);
}

/* ============================================
   NAV VARIANTS
   ============================================ */
.nav--scrolled-always {
  padding: 14px 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav__link--active {
  color: var(--text-light) !important;
}

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--black);
}

@media (min-width: 768px) {
  .page-hero { padding: 180px 0 120px; }
}

.page-hero--compact {
  padding: 140px 0 80px;
}

@media (min-width: 768px) {
  .page-hero--compact { padding: 160px 0 100px; }
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.page-hero__title {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 7vw, 5rem);
  overflow-wrap: break-word;
}

.page-hero__title--job {
  font-size: clamp(2.75rem, 8vw, 5.5rem);
}

.page-hero__title em {
  color: var(--gold);
  font-size: 1.05em;
}

.page-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  max-width: 540px;
}

/* ============================================
   JOBS LISTING
   ============================================ */
.jobs-section {
  background: var(--cream);
  padding: 100px 0 120px;
}

@media (min-width: 768px) {
  .jobs-section { padding: 120px 0 160px; }
}

.jobs-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 12px;
}

.jobs-header__count {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.jobs-count {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--text);
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 80px;
}

.job-card {
  display: block;
  background: var(--cream2);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease);
}

.job-card:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.job-card:hover {
  background: var(--cream);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.job-card__inner {
  padding: 32px 36px;
}

@media (min-width: 768px) {
  .job-card__inner { padding: 40px 48px; }
}

.job-card__top {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.job-card__dept,
.job-card__type {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.job-card__dept {
  color: var(--gold-dark);
}

.job-card__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.job-card:hover .job-card__title {
  color: var(--gold-dark);
}

.job-card__tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  vertical-align: middle;
  margin-left: 8px;
}

.job-card__summary {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 24px;
}

.job-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.job-card__location {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.job-card__arrow {
  color: var(--text-dim);
  transition: all 0.4s var(--ease);
}

.job-card:hover .job-card__arrow {
  color: var(--gold);
  transform: translateX(6px);
}

/* Jobs CTA */
.jobs-cta {
  text-align: center;
  padding: 48px;
  background: var(--cream2);
}

.jobs-cta p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ============================================
   JOB DETAIL PAGE
   ============================================ */
.job-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
  transition: color 0.3s;
}

.job-back:hover {
  color: var(--text-light);
}

.job-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}

.job-detail-dept {
  color: var(--gold);
}

.job-detail-sep {
  opacity: 0.3;
}

.job-detail {
  background: var(--cream);
  padding: 80px 0 120px;
}

@media (min-width: 768px) {
  .job-detail { padding: 100px 0 160px; }
}

.job-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 960px) {
  .job-detail__grid {
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
  }
}

.job-detail__body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.job-section h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  color: var(--text);
  margin-bottom: 16px;
}

.job-section p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.job-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-section li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
}

.job-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* Sidebar */
.job-detail__sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 960px) {
  .job-detail__sidebar {
    position: sticky;
    top: 100px;
  }
}

.job-apply-card {
  background: var(--dark);
  padding: 36px;
  color: var(--text-light);
}

.job-apply-card h3 {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.job-apply-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.job-apply-email {
  display: block;
  margin-top: 16px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

.job-info-card {
  background: var(--cream2);
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.job-info-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.job-info-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.job-info-value {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text);
}

/* ============================================
   SERVICE LISTING PAGE
   ============================================ */
.svc-listing {
  background: var(--cream);
  padding: 80px 0 120px;
}

@media (min-width: 768px) {
  .svc-listing { padding: 100px 0 160px; }
}

.svc-card {
  display: grid;
  grid-template-columns: 48px 1fr 32px;
  gap: 20px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.4s var(--ease);
  position: relative;
}

@media (min-width: 768px) {
  .svc-card {
    grid-template-columns: 60px 1fr 48px;
    gap: 32px;
    padding: 48px 0;
    align-items: center;
  }
}

.svc-card:first-child {
  border-top: 1px solid var(--border-light);
}

.svc-card:hover {
  padding-left: 16px;
  padding-right: 16px;
  background: var(--cream2);
}

.svc-card__num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  padding-top: 4px;
}

@media (min-width: 768px) {
  .svc-card__num { padding-top: 0; }
}

.svc-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 960px) {
  .svc-card__body {
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-template-rows: auto auto;
    gap: 8px 48px;
  }

  .svc-card__title { grid-column: 1; grid-row: 1; }
  .svc-card__desc { grid-column: 2; grid-row: 1 / 3; }
  .svc-card__points { grid-column: 1; grid-row: 2; }
}

.svc-card__title {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  color: var(--text);
  transition: color 0.3s;
}

.svc-card:hover .svc-card__title {
  color: var(--gold-dark);
}

.svc-card__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.svc-card__points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.svc-card__points li {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 4px 12px;
  background: rgba(0,0,0,0.04);
}

.svc-card__arrow {
  color: var(--text-dim);
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
  justify-self: end;
  align-self: center;
}

.svc-card:hover .svc-card__arrow {
  color: var(--gold-dark);
  transform: translateX(6px);
}

/* Service CTA */
.svc-cta {
  background: var(--dark);
  padding: 100px 0;
}

@media (min-width: 768px) { .svc-cta { padding: 120px 0; } }

.svc-cta__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.svc-cta__inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text-light);
  margin-bottom: 16px;
}

.svc-cta__inner p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.svc-detail {
  background: var(--cream);
  padding: 80px 0 120px;
}

@media (min-width: 768px) {
  .svc-detail { padding: 100px 0 160px; }
}

.svc-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 960px) {
  .svc-detail__grid {
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
  }
}

.svc-detail__body {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.svc-detail__sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 960px) {
  .svc-detail__sidebar {
    position: sticky;
    top: 100px;
  }
}

.svc-section h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  color: var(--text);
  margin-bottom: 16px;
}

.svc-section p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.svc-section p:last-child {
  margin-bottom: 0;
}

.svc-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-section li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
}

.svc-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.svc-section li strong {
  color: var(--text);
  font-weight: 500;
}

/* Next Service navigation */
.svc-next {
  background: var(--dark);
  padding: 64px 0;
}

.svc-next__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-next .label {
  margin-bottom: 0;
  color: rgba(255,255,255,0.3);
}

.svc-next__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--border-dark);
  transition: all 0.4s var(--ease);
}

.svc-next__link:hover {
  padding-left: 16px;
}

.svc-next__title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--text-light);
  transition: color 0.3s;
}

.svc-next__link:hover .svc-next__title {
  color: var(--gold);
}

.svc-next__link svg {
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: all 0.4s var(--ease);
}

.svc-next__link:hover svg {
  color: var(--gold);
  transform: translateX(6px);
}

/* ============================================
   SCROLL ANIMATIONS (GSAP-driven classes)
   ============================================ */
.gs-reveal {
  opacity: 0;
  transform: translateY(60px);
  will-change: transform, opacity;
}

.gs-reveal-line {
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform, opacity;
}

/* ============================================
   RESPONSIVE — MOBILE (<768px)
   ============================================ */
@media (max-width: 767px) {

  /* --- Global spacing --- */
  body { font-size: 0.9375rem; }

  /* --- Hero --- */
  .hero {
    min-height: 100svh;
    padding: 120px 20px 60px;
  }

  .hero__title {
    font-size: clamp(2.25rem, 10vw, 4rem);
  }

  .hero__title-line br { display: none; }

  .hero__tag {
    font-size: 0.625rem;
    padding: 6px 14px;
    margin-bottom: 32px;
  }

  .hero__sub {
    font-size: 0.9375rem;
    margin-bottom: 36px;
  }

  .hero__sub br { display: none; }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__scroll { display: none; }

  /* --- Marquee --- */
  .marquee { padding: 14px 0; }
  .marquee__item { font-size: 0.75rem; padding: 0 16px; }

  /* --- About --- */
  .about { padding: 80px 0; }

  .about__heading {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .about__heading br { display: none; }

  .about__stats { gap: 24px; }
  .about__stat-val { font-size: 1.25rem; }

  /* --- Services --- */
  .services { padding: 80px 0 60px; }

  .services__title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 8px;
  }

  .services__header { margin-bottom: 40px; }

  .service-row__inner {
    grid-template-columns: 36px 1fr 24px;
    gap: 12px;
    padding: 28px 0;
  }

  .service-row__title {
    font-size: 1.125rem;
    white-space: normal;
  }

  .service-row__desc {
    font-size: 0.8125rem;
    max-height: none;
    opacity: 0.6;
  }

  .service-row:hover .service-row__inner {
    padding-left: 0;
    padding-right: 0;
  }

  .service-row__arrow { width: 24px; height: 24px; }

  /* --- Impact --- */
  .impact { padding: 80px 0; }
  .impact__header { margin-bottom: 48px; }

  .impact__title br { display: none; }

  .impact__numbers {
    gap: 32px;
    margin-bottom: 64px;
    padding-bottom: 48px;
  }

  .impact__num { font-size: clamp(3rem, 15vw, 4.5rem); }

  .impact__card { padding: 28px 24px; }
  .impact__card h3 { font-size: 1.125rem; }
  .impact__card p { font-size: 0.875rem; }

  /* --- Approach --- */
  .approach { padding: 80px 0; }

  .approach__heading {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .approach__heading br { display: none; }

  .approach__right { gap: 28px; }
  .approach__item h4 { font-size: 1rem; }
  .approach__item p { font-size: 0.875rem; }

  /* --- Clients --- */
  .clients { padding: 60px 0; }
  .clients__item { padding: 20px 24px; }
  .clients__name { font-size: 1rem; }

  /* --- Contact --- */
  .contact { padding: 80px 0; }

  .contact__heading {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }

  .contact__heading br { display: none; }

  .contact__email { font-size: 1.125rem; }

  .form__input {
    padding: 12px 0;
    font-size: 1rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.875rem;
  }

  .btn--full {
    padding: 16px 28px;
  }

  /* --- Footer --- */
  .footer { padding: 48px 0 0; }
  .footer__cols { gap: 24px; }

  /* --- Page Hero (subpages) --- */
  .page-hero { padding: 120px 0 60px; }
  .page-hero--compact { padding: 110px 0 48px; }

  .page-hero__title {
    font-size: clamp(1.75rem, 7vw, 3.5rem);
  }

  .page-hero__title br { display: none; }

  .page-hero__title--job {
    font-size: clamp(1.75rem, 7vw, 4rem);
  }

  .page-hero__sub { font-size: 0.9375rem; }

  /* --- Job Cards --- */
  .jobs-section { padding: 60px 0 80px; }
  .jobs-header { margin-bottom: 32px; }

  .job-card__inner { padding: 24px 20px; }
  .job-card__title { font-size: 1.25rem; }
  .job-card__summary { font-size: 0.875rem; margin-bottom: 20px; }

  /* --- Job Detail --- */
  .job-detail { padding: 48px 0 80px; }

  .job-section h2 { font-size: 1.25rem; }
  .job-section li { font-size: 0.875rem; padding-left: 20px; }

  .job-apply-card { padding: 28px 24px; }
  .job-info-card { padding: 20px 24px; }

  .jobs-cta { padding: 32px 20px; }
  .jobs-cta p { font-size: 0.875rem; }

  /* --- Service Listing --- */
  .svc-listing { padding: 60px 0 80px; }

  .svc-card {
    grid-template-columns: 36px 1fr 24px;
    gap: 12px;
    padding: 28px 0;
  }

  .svc-card:hover { padding-left: 0; padding-right: 0; }
  .svc-card__title { font-size: 1.125rem; }
  .svc-card__desc { font-size: 0.8125rem; }

  .svc-card__points { gap: 6px; }
  .svc-card__points li { font-size: 0.625rem; padding: 3px 8px; }

  .svc-cta { padding: 64px 0; }
  .svc-cta__inner h2 { font-size: 1.5rem; }

  /* --- Service Detail --- */
  .svc-detail { padding: 48px 0 80px; }

  .svc-section h2 { font-size: 1.25rem; }
  .svc-section p { font-size: 0.9375rem; }
  .svc-section li { font-size: 0.875rem; padding-left: 20px; }

  /* --- Next Service --- */
  .svc-next { padding: 48px 0; }
  .svc-next__title { font-size: 1.25rem; }
  .svc-next__link:hover { padding-left: 0; }

  /* --- Disable hover-shift on touch --- */
  .service-row:hover .service-row__title { transform: none; }
  .svc-card:hover { transform: none; }
  .job-card:hover { transform: none; }
  .impact__card:hover { transform: none; }
  .clients__item:hover { transform: none; }

}

/* ============================================
   RESPONSIVE — SMALL MOBILE (<400px)
   ============================================ */
@media (max-width: 399px) {
  .hero { padding: 100px 16px 48px; }
  .hero__title { font-size: 2rem; }
  .container { padding: 0 16px; }
  .about__stats { flex-direction: column; gap: 16px; }
  .impact__num { font-size: 3rem; }
  .clients__list { gap: 12px; }
  .job-card__inner { padding: 20px 16px; }
  .svc-card { grid-template-columns: 28px 1fr 20px; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .gs-reveal { opacity: 1; transform: none; }
  .gs-reveal-line { opacity: 1; transform: none; }
  .hero__title-line > span { transform: none; }
  .hero__tag, .hero__sub, .hero__cta { opacity: 1; transform: none; }
  .loader { display: none; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .nav, .marquee, .grain, .cursor, .loader, .hero__bg, .hero__scroll { display: none; }
  .hero { min-height: auto; background: #fff; padding: 40px 24px; }
  body { color: #000; background: #fff; }
  .services, .approach, .contact, .footer { background: #fff; }
  .services *, .approach *, .contact *, .footer * { color: #000 !important; }
}
