
:root {
  /* MRS Brand Colors */
  --green:        #3e5c50;
  --green-dark:   #2d4439;
  --green-mid:    #4e7262;
  --green-light:  #6a9480;
  --dark:         #080a0b;
  --dark-2:       #111416;
  --dark-3:       #1c2124;
  --light:        #f5f2ed;
  --sand:         #e8e0d5;
  --sand-dark:    #d6cbbf;
  --gold:         #c9a96e;  /* Subtle accent — use sparingly */
  --muted:        #7a8a84;
  --muted-light:  #a8b5b0;

  /* Semantics */
  --text-dark:    #080a0b;
  --text-light:   #f5f2ed;
  --text-muted:   #7a8a84;
  --border:       rgba(62, 92, 80, 0.14);
  --border-light: rgba(245, 242, 237, 0.1);

  /* Typography */
  --ff-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body:    'Outfit', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container:  1340px;
  --gutter:     clamp(24px, 5vw, 72px);
  --sec-py:     clamp(80px, 10vw, 140px);

  /* Motion */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io:    cubic-bezier(0.65, 0, 0.35, 1);
  --t:          0.55s;

  /* Misc */
  --r:          5px;
}

/* ── 2. RESET ───────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto; /* Lenis handles this */
}

body {
  font-family: var(--ff-body);
  background-color: var(--light);
  color: var(--text-dark);
  overflow-x: hidden;
  /* NOTE: cursor: none is NOT set globally.
     It's only applied via body.custom-cursor-ready (set by JS).
     This ensures the native cursor never disappears if custom cursor fails. */
}

body.loading {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; font-family: inherit; }

/* ── 3. CURSOR (safe fallback approach) ─────────────────────── */
/*
  Custom cursor elements are invisible by default.
  JS adds .custom-cursor-ready to body after confirming
  mouse is active on a non-touch device.
  Only THEN does body { cursor: none } apply.
*/

.cursor__dot,
.cursor__ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.4s ease, width 0.25s var(--ease), height 0.25s var(--ease);
}

.cursor__dot {
  width: 7px;
  height: 7px;
  background: var(--green);
}

.cursor__ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(62, 92, 80, 0.5);
  background: transparent;
}

/* Activate custom cursor */
body.custom-cursor-ready {
  cursor: none;
}
body.custom-cursor-ready * {
  cursor: none !important;
}
body.custom-cursor-ready .cursor__dot,
body.custom-cursor-ready .cursor__ring {
  opacity: 1;
}

/* Cursor states */
body.cursor-hover .cursor__dot   { width: 12px; height: 12px; background: var(--green); }
body.cursor-hover .cursor__ring  { width: 54px; height: 54px; border-color: rgba(62, 92, 80, 0.65); }
body.cursor-on-dark .cursor__dot { background: var(--light); }
body.cursor-on-dark .cursor__ring{ border-color: rgba(245, 242, 237, 0.4); }

/* Disable on touch devices (handled in JS too, but CSS as safety net) */
@media (hover: none), (pointer: coarse) {
  .cursor__dot, .cursor__ring { display: none !important; }
}

/* ── 4. SPLIT TEXT HELPERS (for JS line/word reveals) ─────── */
.clip-outer {
  display: block;
  overflow: hidden;
  line-height: inherit;
}

.clip-inner {
  display: block;
}

/* ── 5. UTILITIES ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--sec-py) 0;
  position: relative;
  overflow: hidden;
}

/* Responsive line break */
.br-md { display: none; }
@media (min-width: 768px) { .br-md { display: block; } }

/* ── 6. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--r);
  border: 1.5px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease), gap 0.3s ease;
}

.btn--primary {
  background: var(--green);
  color: var(--light);
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--light);
  border-color: rgba(245, 242, 237, 0.3);
}
.btn--ghost:hover {
  border-color: var(--light);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--outline:hover {
  background: var(--dark);
  color: var(--light);
}

.btn--line {
  background: transparent;
  color: var(--green);
  border: none;
  padding: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  gap: 8px;
}
.btn--line:hover { gap: 14px; }

.btn--lg  { padding: 18px 40px; font-size: 13px; }
.btn--mag { } /* GSAP handles transform */

.btn svg { flex-shrink: 0; }

/* ── 7. SECTION LABELS ─────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}

.section-label__dash {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}

.section-label--light {
  color: var(--green-light);
}
.section-label--light .section-label__dash {
  background: var(--green-light);
}

/* ── 8. SECTION TITLES ─────────────────────────────────────── */
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 36px;
}

.section-title em {
  font-style: italic;
  color: var(--green);
  font-weight: 300;
}

.section-title--light { color: var(--text-light); }
.section-title--light em { color: var(--green-light); }

/* ── 9. PRELOADER ───────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preloader__inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.preloader__logo {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: clamp(60px, 12vw, 120px);
  font-weight: 600;
  line-height: 1;
  overflow: hidden;
}

.pl__m  { color: var(--green); display: inline-block; transform: translateY(110%); opacity: 0; }
.pl__rs { color: var(--text-light); display: inline-block; transform: translateY(110%); opacity: 0; }

.preloader__word {
  font-family: var(--ff-body);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
}

.preloader__progress {
  width: 180px;
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 32px auto 14px;
  overflow: hidden;
}

.preloader__bar {
  height: 100%;
  width: 0;
  background: var(--green);
  transition: width 0.08s linear;
}

.preloader__pct {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* The wipe element that covers the preloader on exit */
.preloader__wipe {
  position: absolute;
  inset: 0;
  background: var(--dark);
  z-index: 1;
  transform: scaleY(0);
  transform-origin: bottom;
}

/* ── 10. HEADER ─────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  transition: background 0.5s var(--ease), border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(8, 10, 11, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(62, 92, 80, 0.18);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.4s var(--ease);
}

.header.is-scrolled .header__inner { height: 64px; }

/* Logo */
.header__logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
}

.logo__mark {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}

.logo__m  { color: var(--green); }
.logo__rs { color: var(--text-light); }

.logo__sub {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-left: 8px;
  align-self: center;
}

/* Nav links */
.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.hdr-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.6);
  position: relative;
  transition: color 0.3s ease;
}

.hdr-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green-light);
  transition: width 0.4s var(--ease);
}

.hdr-link:hover { color: var(--light); }
.hdr-link:hover::after { width: 100%; }

/* Right side */
.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hdr-tel {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.6);
  transition: color 0.3s ease;
}

.hdr-tel:hover { color: var(--green-light); }

/* ── 11. BURGER ─────────────────────────────────────────────── */
.burger {
  display: none;
  width: 40px;
  height: 40px;
  padding: 10px 8px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  z-index: 901;
  position: relative;
}

.burger__bar {
  display: block;
  height: 1px;
  background: var(--light);
  transition: transform 0.45s var(--ease), width 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

.burger__bar--top { width: 24px; }
.burger__bar--bot { width: 18px; margin-left: auto; }

.burger.is-active .burger__bar--top { transform: translateY(3.5px) rotate(45deg); width: 22px; }
.burger.is-active .burger__bar--bot { transform: translateY(-3.5px) rotate(-45deg); width: 22px; margin-left: 0; }

/* ── 12. MOBILE MENU ────────────────────────────────────────── */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 799;
  visibility: hidden;
  pointer-events: none;
}

.mob-menu.is-open {
  visibility: visible;
  pointer-events: all;
}

.mob-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 11, 0.6);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.mob-menu.is-open .mob-menu__overlay { opacity: 1; }

.mob-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(460px, 100%);
  background: var(--dark-2);
  transform: translateX(100%);
  transition: transform 0.6s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--gutter) 60px;
  border-left: 1px solid rgba(62, 92, 80, 0.12);
}

.mob-menu.is-open .mob-menu__panel {
  transform: translateX(0);
}

.mob-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 48px;
}

.mob-link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(62, 92, 80, 0.1);
  opacity: 0;
  transform: translateX(24px);
  transition: color 0.3s ease, opacity 0.4s ease, transform 0.4s var(--ease);
}

.mob-menu.is-open .mob-link { opacity: 1; transform: translateX(0); }
.mob-menu.is-open .mob-link:nth-child(1) { transition-delay: 0.1s; }
.mob-menu.is-open .mob-link:nth-child(2) { transition-delay: 0.15s; }
.mob-menu.is-open .mob-link:nth-child(3) { transition-delay: 0.2s; }
.mob-menu.is-open .mob-link:nth-child(4) { transition-delay: 0.25s; }
.mob-menu.is-open .mob-link:nth-child(5) { transition-delay: 0.3s; }
.mob-menu.is-open .mob-link:nth-child(6) { transition-delay: 0.35s; }

.mob-link__num {
  font-size: 10px;
  color: var(--green-light);
  letter-spacing: 0.1em;
  font-family: var(--ff-body);
}

.mob-link__text {
  font-family: var(--ff-display);
  font-size: clamp(32px, 7vw, 48px);
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.1;
}

.mob-link:hover .mob-link__text { color: var(--green-light); }

.mob-menu__foot {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.4s ease 0.35s;
}

.mob-menu.is-open .mob-menu__foot { opacity: 1; }

.mob-menu__tag {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── 13. HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

/* Media layer */
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -15% 0;       /* extra height for parallax */
  width: 100%;
  height: 125%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 10, 11, 0.25) 0%,
    rgba(8, 10, 11, 0.05) 35%,
    rgba(8, 10, 11, 0.55) 75%,
    rgba(8, 10, 11, 0.96) 100%
  );
}

/* Subtle green brand tint */
.hero__tint {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(62, 92, 80, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

/* Eyebrow */
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.eyebrow__dash {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--green-light);
  flex-shrink: 0;
}

.eyebrow__text {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--green-light);
  font-family: var(--ff-body);
  font-weight: 400;
}

/* Main title */
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(68px, 11vw, 148px);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.03em;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* Each word is in a clip container:
   .h-clip (overflow: hidden) > .h-word (animated) */
.h-clip {
  display: block;
  overflow: hidden;
  line-height: 1.0;
}

.h-word {
  display: block;
  transform: translateY(110%); /* initial state — GSAP animates this */
}

.hero__title em {
  font-style: italic;
  color: var(--green-light);
  font-weight: 300;
}

/* Sub + CTAs */
.hero__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.hero__sub {
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 242, 237, 0.58);
  max-width: 420px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 130px;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: rgba(245, 242, 237, 0.12);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--green-light);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { top: -4px; opacity: 1; }
  75%  { top: 100%;  opacity: 0.2; }
  100% { top: 100%;  opacity: 0; }
}

.scroll-label {
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

/* Stats bar */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(8, 10, 11, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(62, 92, 80, 0.18);
  padding: 22px var(--gutter);
}

.hstat {
  text-align: center;
  flex: 1;
}

.hstat__divider {
  width: 1px;
  height: 36px;
  background: rgba(62, 92, 80, 0.2);
  flex-shrink: 0;
}

.hstat__n {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 500;
  color: var(--text-light);
  line-height: 1;
}

.hstat__l {
  display: block;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}

/* ── 14. TICKER ─────────────────────────────────────────────── */
.ticker {
  background: var(--green);
  padding: 16px 0;
  overflow: hidden;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: tickerMove 36s linear infinite;
}

.tick {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.85);
  white-space: nowrap;
  font-family: var(--ff-body);
}

.tick-dot {
  color: rgba(245, 242, 237, 0.35);
  font-size: 14px;
  flex-shrink: 0;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker:hover .ticker__track { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ── 15. ABOUT ──────────────────────────────────────────────── */
.about {
  background: var(--light);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

/* Visual */
.about__visual {
  position: relative;
}

/* Image reveal containers */
.img-reveal {
  position: relative;
  overflow: hidden;
  /* clip-path animated by GSAP */
}

.img-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

.about__img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r);
}

.about__img-accent {
  position: absolute;
  bottom: -36px;
  right: -28px;
  width: 52%;
  aspect-ratio: 1;
  border-radius: var(--r);
  border: 5px solid var(--light);
  box-shadow: 0 20px 50px rgba(8, 10, 11, 0.14);
}

.about__badge {
  position: absolute;
  top: 36px;
  left: -20px;
  background: var(--green);
  color: var(--text-light);
  padding: 22px 26px;
  border-radius: var(--r);
  box-shadow: 0 16px 40px rgba(62, 92, 80, 0.35);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.about__badge-n {
  font-family: var(--ff-display);
  font-size: 54px;
  font-weight: 600;
  line-height: 1;
  color: var(--text-light);
}

.about__badge-l {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.65);
  line-height: 1.5;
}

/* Text side */
.about__text { padding-top: 16px; }

.about__body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 480px;
}

.about__stats {
  display: flex;
  gap: 36px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.about__stat { display: flex; flex-direction: column; gap: 4px; }

.astat__n {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 500;
  color: var(--green);
  line-height: 1;
}

.astat__l {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── 16. SERVICES ───────────────────────────────────────────── */
.services {
  background: var(--dark);
  color: var(--text-light);
}

.services__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.services__intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 242, 237, 0.45);
  max-width: 340px;
  align-self: end;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(62, 92, 80, 0.18);
}

.svc-card {
  padding: 44px 32px 40px;
  background: transparent;
  border-right: 1px solid rgba(62, 92, 80, 0.18);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background 0.4s ease;
  overflow: hidden;
}

.svc-card:last-child { border-right: none; }

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.svc-card:hover { background: rgba(62, 92, 80, 0.06); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-card__icon {
  width: 44px;
  height: 44px;
  color: var(--green-light);
}
.svc-card__icon svg { width: 100%; height: 100%; }

.svc-card__body { flex: 1; }

.svc-card__title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 14px;
}

.svc-card__desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 242, 237, 0.4);
}

.svc-card__num {
  font-family: var(--ff-display);
  font-size: 64px;
  font-weight: 300;
  color: rgba(62, 92, 80, 0.15);
  line-height: 1;
  letter-spacing: -0.03em;
  align-self: flex-end;
}

.svc-card__line {
  display: none;
}

/* ── 17. PROJECTS ───────────────────────────────────────────── */
.projects {
  background: var(--light);
  padding-bottom: 0;
}

.projects__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(48px, 6vw, 72px);
}

/* Project list (full-width, alternating) */
.projects__list {
  display: flex;
  flex-direction: column;
}

.proj {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  overflow: hidden;
}

.proj--rev { direction: rtl; }
.proj--rev > * { direction: ltr; }

/* Project media */
.proj__media {
  position: relative;
  overflow: hidden;
}

.proj__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 440px;
  will-change: transform;
  transition: transform 0.8s var(--ease);
}

.proj:hover .proj__img {
  transform: scale(1.04);
}

.proj__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,10,11,0.12), rgba(8,10,11,0.06));
  pointer-events: none;
}

/* Project info */
.proj__info {
  background: var(--light);
  padding: clamp(48px, 7vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  position: relative;
  border-bottom: 1px solid var(--sand-dark);
}

/* Ghost number behind content */
.proj__ghost {
  position: absolute;
  top: 24px;
  right: clamp(32px, 5vw, 72px);
  font-family: var(--ff-display);
  font-size: clamp(80px, 10vw, 130px);
  font-weight: 300;
  color: rgba(62, 92, 80, 0.07);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.proj__cat {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
}

.proj__name {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.proj__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 380px;
}

.projects__cta {
  padding: 72px 0 100px;
  display: flex;
  justify-content: center;
}

/* ── 18. WHY US ─────────────────────────────────────────────── */
.why {
  background: var(--sand);
}

.why__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.why__intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--muted);
  max-width: 380px;
  align-self: end;
}

.why__list {
  display: flex;
  flex-direction: column;
}

.why-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--sand-dark);
  align-items: start;
  position: relative;
  transition: padding-left 0.4s var(--ease);
}

.why-row:first-child { border-top: 1px solid var(--sand-dark); }

.why-row::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.55s var(--ease);
}

.why-row:hover { padding-left: 10px; }
.why-row:hover::after { width: 100%; }

.why-row__num {
  font-family: var(--ff-display);
  font-size: 14px;
  color: var(--green);
  letter-spacing: 0.06em;
  padding-top: 4px;
}

.why-row__title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.why-row__body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 520px;
}

/* ── 19. NUMBERS STRIP ──────────────────────────────────────── */
.numstrip {
  background: var(--dark-2);
  border-top: 1px solid rgba(62, 92, 80, 0.1);
  border-bottom: 1px solid rgba(62, 92, 80, 0.1);
  padding: clamp(56px, 8vw, 88px) 0;
}

.numstrip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.numstrip__item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.numstrip__div {
  width: 1px;
  height: 52px;
  background: rgba(62, 92, 80, 0.2);
  flex-shrink: 0;
}

.numstrip__big {
  font-family: var(--ff-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  color: var(--green-light);
  line-height: 1;
}

.numstrip__label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── 20. CTA SECTION ────────────────────────────────────────── */
.cta-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-section__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: -15% 0;
  width: 100%;
  height: 125%;
  object-fit: cover;
  will-change: transform;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 10, 11, 0.90) 0%,
    rgba(8, 10, 11, 0.72) 50%,
    rgba(8, 10, 11, 0.85) 100%
  );
}

.cta-section__content {
  position: relative;
  z-index: 2;
  padding-top: clamp(80px, 10vw, 120px);
  padding-bottom: clamp(80px, 10vw, 120px);
}

.cta-section__sub {
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 242, 237, 0.5);
  max-width: 480px;
  margin-bottom: 44px;
}

.cta-section__btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── 21. FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(62, 92, 80, 0.1);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(62, 92, 80, 0.1);
}

.footer__brand { display: flex; flex-direction: column; gap: 0; }

.footer__logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  margin-bottom: 18px;
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 600;
}

.footer__tagline {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.fsoc {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(62, 92, 80, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.fsoc svg { width: 14px; height: 14px; }
.fsoc:hover { border-color: var(--green-light); color: var(--green-light); }

.footer__col-h {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 20px;
}

.footer__col ul li + li { margin-top: 11px; }
.footer__col a {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  transition: color 0.3s ease;
}
.footer__col a:hover { color: var(--light); }

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}
.footer__contact-list svg { flex-shrink: 0; margin-top: 1px; color: var(--green-light); }
.footer__contact-list a:hover { color: var(--light); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 11px;
  color: rgba(122, 138, 132, 0.45);
  letter-spacing: 0.04em;
}

/* ── 22. ANIMATION BASE STATES ───────────────────────────────
   Important content is visible by default. Motion-only hidden states live
   under body.motion-ready so the page remains readable if JavaScript fails. */
.js-fade-in,
.js-card-reveal,
.js-why-row,
.js-proj-media,
.js-proj-info {
  opacity: 1;
  transform: none;
}

/* Projects page: UAE portfolio */
.projects-page {
  background: #f1f4cf;
}

.projects-page .header {
  background: rgba(8, 10, 11, 0.18);
}

.projects-hero .about-inner__outline {
  font-size: clamp(76px, 15vw, 238px);
}

.projects-intro,
.projects-feature-list,
.projects-units,
.projects-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.projects-intro {
  padding: clamp(80px, 9vw, 140px) 0 clamp(54px, 6vw, 86px);
  background: #f1f4cf;
  color: #111416;
}

.projects-intro__word,
.projects-feature__mark,
.projects-unit__word {
  position: absolute;
  width: max-content;
  color: transparent;
  font-family: var(--ff-body);
  font-weight: 800;
  line-height: 0.76;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(62, 92, 80, 0.09);
  text-stroke: 1px rgba(62, 92, 80, 0.09);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.projects-intro__word {
  right: -2vw;
  top: 10%;
  font-size: clamp(150px, 30vw, 460px);
}

.projects-intro__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.55fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
}

.projects-intro .section-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.projects-intro__title {
  max-width: 900px;
  color: #42514f;
  font-family: var(--ff-body);
  font-size: clamp(40px, 5.9vw, 92px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0);
}

.projects-intro__title.is-typing::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.82em;
  margin-left: 0.08em;
  background: currentColor;
  transform: translateY(0.08em);
  animation: projects-type-caret 0.72s steps(1) infinite;
}

@keyframes projects-type-caret {
  50% { opacity: 0; }
}

.projects-intro__text,
.projects-feature__body p,
.projects-unit__copy p,
.projects-cta__content p {
  color: rgba(17, 20, 22, 0.76);
  font-size: clamp(16px, 1.35vw, 21px);
  font-weight: 400;
  line-height: 1.68;
}

.projects-feature-list {
  padding: clamp(16px, 3vw, 36px) 0 clamp(84px, 10vw, 150px);
  background: #f1f4cf;
}

.projects-feature {
  position: relative;
  padding: clamp(34px, 5vw, 78px) 0;
}

.projects-feature__mark {
  left: -4vw;
  top: 2%;
  font-size: clamp(210px, 38vw, 640px);
}

.projects-feature--offset .projects-feature__mark {
  left: auto;
  right: -5vw;
}

.projects-feature__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(20px, 3vw, 36px);
}

.projects-feature__media,
.projects-unit__media,
.projects-cta__media {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(62, 92, 80, 0.34), rgba(8, 10, 11, 0.72)),
    var(--dark);
  box-shadow: 0 32px 90px rgba(8, 10, 11, 0.13);
}

.projects-feature__media {
  min-height: clamp(470px, 56vw, 760px);
  border-radius: 34px;
}

.projects-feature--offset .projects-feature__media {
  width: min(1140px, 92%);
  margin-left: auto;
}

.projects-feature__media img,
.projects-unit__media img,
.projects-cta__media img {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}

.projects-feature__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.7) 0%, rgba(8, 10, 11, 0.28) 48%, rgba(8, 10, 11, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 10, 11, 0.68), transparent 58%);
  pointer-events: none;
  z-index: 1;
}

.projects-feature__caption {
  position: absolute;
  left: clamp(26px, 5vw, 76px);
  bottom: clamp(28px, 5vw, 74px);
  z-index: 2;
  width: min(680px, calc(100% - 52px));
  color: var(--light);
}

.projects-feature__caption p {
  margin-bottom: 12px;
  color: #f5f4d7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.projects-feature__caption h2 {
  color: #f5f4d7;
  font-family: var(--ff-body);
  font-size: clamp(42px, 6.4vw, 104px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 18px 50px rgba(8, 10, 11, 0.42);
}

.projects-feature__body {
  width: min(820px, 100%);
  display: grid;
  gap: 22px;
}

.projects-feature--offset .projects-feature__body {
  margin-left: auto;
  width: min(760px, 92%);
}

.projects-pill-btn {
  width: max-content;
  min-height: 64px;
  gap: 16px;
  padding: 0 30px 0 10px;
  border-radius: 999px;
  background: rgba(62, 92, 80, 0.96);
  box-shadow: 0 18px 44px rgba(62, 92, 80, 0.18);
}

.projects-pill-btn__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f5f4d7;
  color: var(--green-dark);
  flex: 0 0 46px;
}

.projects-units {
  padding: clamp(70px, 8vw, 126px) 0 clamp(86px, 9vw, 138px);
  background: #f1f4cf;
  color: #42514f;
}

.projects-units__head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: clamp(42px, 6vw, 80px);
}

.projects-units__head span {
  height: 1px;
  background: rgba(66, 81, 79, 0.22);
}

.projects-units__head h2 {
  color: #42514f;
  font-family: var(--ff-body);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

.projects-units__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(54px, 7vw, 98px);
}

.projects-unit {
  position: relative;
  display: grid;
  gap: 22px;
}

.projects-unit__word {
  right: -2vw;
  top: -4%;
  font-family: var(--ff-display);
  font-size: clamp(150px, 24vw, 360px);
  font-weight: 700;
  text-transform: lowercase;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  color: rgba(62, 92, 80, 0.1);
}

.projects-unit--right .projects-unit__word {
  right: auto;
  left: -4vw;
}

.projects-unit__media {
  width: min(1140px, 74vw);
  min-height: clamp(320px, 31vw, 500px);
  border-radius: 24px;
  box-shadow: none;
}

.projects-unit--right .projects-unit__media {
  margin-left: auto;
}

.projects-unit__copy {
  width: min(720px, 100%);
}

.projects-unit--right .projects-unit__copy {
  margin-left: auto;
}

.projects-unit__copy h3 {
  color: #263331;
  font-family: var(--ff-body);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}

.projects-cta {
  min-height: clamp(560px, 72svh, 760px);
  display: flex;
  align-items: center;
  background: var(--dark);
  color: var(--light);
  isolation: isolate;
}

.projects-cta__media {
  position: absolute;
  inset: 0;
  border-radius: 0;
  box-shadow: none;
  z-index: 0;
}

.projects-cta__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 22% 22%, rgba(62, 92, 80, 0.35), transparent 44%),
    linear-gradient(90deg, rgba(8, 10, 11, 0.82), rgba(8, 10, 11, 0.42) 54%, rgba(8, 10, 11, 0.74));
  z-index: 1;
  pointer-events: none;
}

.projects-cta__content {
  position: relative;
  z-index: 2;
  padding-top: clamp(90px, 9vw, 140px);
  padding-bottom: clamp(90px, 9vw, 140px);
}

.projects-cta__content h2 {
  width: min(940px, 100%);
  color: #f5f4d7;
  font-family: var(--ff-body);
  font-size: clamp(42px, 6.7vw, 106px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.projects-cta__content p {
  width: min(660px, 100%);
  color: rgba(245, 242, 237, 0.82);
}

.projects-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

body.motion-ready.projects-page .about-inner__title-text {
  transform: translateY(115%);
}

body.motion-ready.projects-page .about-inner__outline,
body.motion-ready.projects-page .js-projects-reveal,
body.motion-ready.projects-page .js-projects-hero-subtitle,
body.motion-ready.projects-page .projects-feature__media.js-projects-image-reveal .projects-feature__caption,
body.motion-ready.projects-page .js-projects-depth {
  opacity: 0;
}

body.motion-ready.projects-page .js-projects-hero-subtitle {
  transform: translateY(24px);
}

body.motion-ready.projects-page .js-projects-reveal,
body.motion-ready.projects-page .projects-feature__media.js-projects-image-reveal .projects-feature__caption {
  transform: translateY(34px);
}

body.motion-ready.projects-page .projects-feature__media.js-projects-image-reveal,
body.motion-ready.projects-page .projects-unit__media,
body.motion-ready.projects-page .projects-cta__media {
  clip-path: inset(0 0 100% 0);
}

body.motion-ready.projects-page .projects-feature__media.js-projects-image-reveal img,
body.motion-ready.projects-page .projects-unit__media img,
body.motion-ready.projects-page .projects-cta__media img {
  transform: scale(1.12);
}

body.motion-ready.projects-page .projects-marquee .projects-feature__media {
  clip-path: inset(0 0 100% 0);
}

body.motion-ready.projects-page .projects-marquee .projects-feature__media img {
  transform: scale(1.1);
}

body.motion-ready.projects-page .projects-marquee .projects-feature__body {
  opacity: 0;
  transform: translateY(18px);
}

body.projects-page.projects-failsafe .about-inner__title-text,
body.projects-page.projects-failsafe .about-inner__outline,
body.projects-page.projects-failsafe .js-projects-reveal,
body.projects-page.projects-failsafe .projects-feature__caption,
body.projects-page.projects-failsafe .js-projects-depth {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

body.projects-page.projects-failsafe .projects-feature__media,
body.projects-page.projects-failsafe .projects-unit__media,
body.projects-page.projects-failsafe .projects-cta__media {
  opacity: 1 !important;
  visibility: visible !important;
  clip-path: inset(0 0 0 0) !important;
}

body.projects-page.projects-failsafe .projects-feature__media img,
body.projects-page.projects-failsafe .projects-unit__media img,
body.projects-page.projects-failsafe .projects-cta__media img {
  transform: none !important;
}

body.projects-page.projects-failsafe .projects-marquee .projects-feature__body {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 992px) {
  .projects-intro__inner {
    grid-template-columns: 1fr;
  }

  .projects-feature__media {
    min-height: clamp(430px, 64vw, 600px);
    border-radius: 28px;
  }

  .projects-feature--offset .projects-feature__media,
  .projects-feature--offset .projects-feature__body,
  .projects-unit__media,
  .projects-unit--right .projects-unit__media,
  .projects-unit--right .projects-unit__copy {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .projects-intro {
    padding-top: 72px;
  }

  .projects-intro__title {
    font-size: clamp(36px, 11vw, 58px);
  }

  .projects-feature {
    padding: 34px 0 46px;
  }

  .projects-feature__media {
    min-height: 440px;
    border-radius: 22px;
  }

  .projects-feature__caption {
    left: 22px;
    bottom: 24px;
    width: calc(100% - 44px);
  }

  .projects-feature__caption h2 {
    font-size: clamp(36px, 11vw, 58px);
    line-height: 0.96;
  }

  .projects-feature__caption p {
    letter-spacing: 0.18em;
  }

  .projects-pill-btn {
    width: 100%;
    max-width: 290px;
  }

  .projects-units__head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .projects-units__head span {
    display: none;
  }

  .projects-unit__media {
    min-height: 310px;
    border-radius: 20px;
  }

  .projects-unit__word {
    font-size: clamp(120px, 34vw, 210px);
  }

  .projects-cta__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-cta__buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .projects-feature__media {
    min-height: 390px;
  }

  .projects-feature__body p,
  .projects-unit__copy p,
  .projects-cta__content p {
    font-size: 15px;
  }
}

/* Projects page refinement: intro image panel and two-row continuous showcase */
.projects-intro {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(82px, 8vw, 124px) 0;
}

.projects-intro__inner {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
  align-items: center;
}

.projects-intro__copy {
  position: relative;
  z-index: 2;
}

.projects-intro__media {
  position: relative;
  min-height: clamp(430px, 47vw, 680px);
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(62, 92, 80, 0.34), rgba(8, 10, 11, 0.76)),
    var(--dark);
  box-shadow: 0 32px 86px rgba(8, 10, 11, 0.13);
}

.projects-intro__media img {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
}

.projects-intro__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 11, 0.1), rgba(8, 10, 11, 0.74)),
    linear-gradient(90deg, rgba(62, 92, 80, 0.34), transparent 68%);
  z-index: 1;
}

.projects-intro__overlay-text {
  position: absolute;
  left: clamp(24px, 4vw, 54px);
  bottom: clamp(26px, 4vw, 58px);
  z-index: 2;
  color: #f5f4d7;
}

.projects-intro__overlay-text span {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.projects-intro__overlay-text strong {
  display: block;
  max-width: 520px;
  font-size: clamp(34px, 5.2vw, 76px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.projects-type-word,
.projects-type-char {
  display: inline-block;
}

.projects-type-word {
  overflow: hidden;
  white-space: nowrap;
}

.projects-feature-list {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 18px);
  padding: clamp(24px, 3vw, 42px) 0;
}

.projects-marquee__head {
  position: relative;
  z-index: 3;
}

.projects-marquee__head .section-label {
  margin-bottom: 6px;
}

.projects-marquee__head h2 {
  width: min(760px, 100%);
  color: #42514f;
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.projects-marquee {
  position: relative;
  display: grid;
  gap: clamp(10px, 1.3vw, 16px);
  overflow: hidden;
  padding: 0;
}

.projects-marquee__row {
  overflow-x: auto;
  overflow-y: visible;
  width: 100%;
  cursor: grab;
  scrollbar-width: none;
  touch-action: pan-x;
  user-select: none;
}

.projects-marquee__row::-webkit-scrollbar {
  display: none;
}

.projects-marquee__row.is-dragging {
  cursor: grabbing;
}

.projects-marquee__row.is-dragging .projects-marquee__track {
  animation-play-state: paused;
}

.projects-marquee__track {
  display: flex;
  align-items: flex-start;
  gap: clamp(18px, 2vw, 28px);
  width: max-content;
  will-change: transform;
  animation: projects-marquee-left 34s linear infinite;
}

.projects-marquee__row--right .projects-marquee__track {
  animation-name: projects-marquee-right;
}

.projects-marquee:hover .projects-marquee__track {
  animation-play-state: paused;
}

.projects-feature-list .projects-feature {
  flex: 0 0 clamp(330px, 28vw, 430px);
  padding: 0;
}

.projects-feature-list .projects-feature__inner,
.projects-feature-list .projects-feature--offset .projects-feature__body,
.projects-feature-list .projects-feature__body {
  width: 100%;
  margin: 0;
}

.projects-feature-list .projects-feature__media,
.projects-feature-list .projects-feature--offset .projects-feature__media {
  width: 100%;
  min-height: 0;
  height: clamp(135px, 12.6vw, 188px);
  border-radius: 16px;
  box-shadow: 0 18px 54px rgba(8, 10, 11, 0.12);
}

.projects-feature-list .projects-feature__caption {
  left: clamp(16px, 1.8vw, 24px);
  bottom: clamp(16px, 1.8vw, 22px);
  width: calc(100% - 40px);
}

.projects-feature-list .projects-feature__caption p {
  margin-bottom: 5px;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.projects-feature-list .projects-feature__caption h2 {
  max-width: 92%;
  font-size: clamp(24px, 2.45vw, 34px);
  line-height: 0.92;
}

.projects-feature-list .projects-feature__body {
  display: grid;
  gap: 7px;
  padding-top: 8px;
}

.projects-feature-list .projects-feature__body p {
  max-width: 92%;
  font-size: clamp(11px, 0.85vw, 13px);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.projects-feature-list .projects-pill-btn {
  min-height: 32px;
  gap: 8px;
  padding: 0 13px 0 4px;
  font-size: 8px;
}

.projects-feature-list .projects-pill-btn__icon {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
}

.projects-feature-list .projects-pill-btn__icon svg {
  width: 13px;
  height: 13px;
}

.projects-marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(60px, 10vw, 180px);
  z-index: 4;
  pointer-events: none;
}

.projects-marquee__fade--left {
  left: 0;
  background: linear-gradient(90deg, #f1f4cf, rgba(241, 244, 207, 0));
}

.projects-marquee__fade--right {
  right: 0;
  background: linear-gradient(270deg, #f1f4cf, rgba(241, 244, 207, 0));
}

@keyframes projects-marquee-left {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - clamp(9px, 1vw, 14px)), 0, 0); }
}

@keyframes projects-marquee-right {
  from { transform: translate3d(calc(-50% - clamp(9px, 1vw, 14px)), 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

body.motion-ready.projects-page .projects-intro__media {
  clip-path: inset(0 0 100% 0);
}

body.motion-ready.projects-page .projects-intro__media img {
  transform: scale(1.12);
}

body.motion-ready.projects-page .projects-type-char {
  opacity: 0;
  transform: translateY(0.86em);
}

body.projects-page.projects-failsafe .projects-intro__media {
  opacity: 1 !important;
  visibility: visible !important;
  clip-path: inset(0 0 0 0) !important;
}

body.projects-page.projects-failsafe .projects-intro__media img,
body.projects-page.projects-failsafe .projects-type-char,
body.projects-page.projects-failsafe .js-projects-type {
  opacity: 1 !important;
  transform: none !important;
  clip-path: inset(0 0 0 0) !important;
}

@media (max-width: 992px) {
  .projects-intro {
    min-height: auto;
  }

  .projects-intro__inner {
    grid-template-columns: 1fr;
  }

  .projects-feature-list {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .projects-intro__media {
    min-height: 390px;
    border-radius: 24px;
  }

  .projects-feature-list {
    min-height: auto;
    gap: 28px;
    padding: 58px 0 72px;
  }

  .projects-marquee {
    display: grid;
    gap: 26px;
    overflow: visible;
    padding: 0 var(--gutter);
    touch-action: pan-y;
  }

  .projects-marquee__fade {
    display: none;
  }

  .projects-marquee__row {
    overflow: visible;
    cursor: auto;
    touch-action: pan-y;
    user-select: auto;
  }

  .projects-marquee__track {
    width: 100%;
    display: grid;
    gap: 26px;
    animation: none !important;
    transform: none !important;
    touch-action: pan-y;
  }

  .projects-feature[aria-hidden="true"] {
    display: none;
  }

  .projects-feature-list .projects-feature {
    width: 100%;
    flex-basis: auto;
  }

  .projects-feature-list .projects-feature__media,
  .projects-feature-list .projects-feature--offset .projects-feature__media {
    height: clamp(250px, 64vw, 390px);
    border-radius: 16px;
  }

  .projects-feature-list .projects-feature__caption h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .projects-feature-list .projects-feature__body p {
    -webkit-line-clamp: 2;
    font-size: 14px;
  }

  .projects-feature-list .projects-pill-btn {
    min-height: 42px;
    font-size: 9px;
    justify-content: flex-start;
    gap: 14px;
    padding: 0 18px 0 8px;
  }

  .projects-feature-list .projects-pill-btn__icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
}

.js-split-lines .clip-outer {
  overflow: visible;
}

.js-split-lines .clip-inner {
  transform: none;
}

.img-reveal {
  clip-path: inset(0 0 0 0);
}

/* ── 22B. REPAIR + UPGRADE OVERRIDES ─────────────────────────
   Content must be visible without JS. Hidden animation states are only
   activated after main.js adds body.motion-ready. */
.preloader {
  display: none;
}

body.loading .preloader {
  display: flex;
}

.h-word,
.js-fade-in,
.js-card-reveal,
.js-why-row,
.js-proj-media,
.js-proj-info {
  opacity: 1;
  transform: none;
}

.img-reveal {
  clip-path: inset(0 0 0 0);
}

.js-split-lines .clip-inner {
  transform: none;
}

body.motion-ready .js-fade-in,
body.motion-ready .js-card-reveal,
body.motion-ready .js-why-row {
  opacity: 0;
}

body.motion-ready .js-fade-in {
  transform: translateY(36px);
}

body.motion-ready .js-card-reveal {
  transform: translateY(48px);
}

body.motion-ready .js-why-row {
  transform: translateY(30px);
}

body.motion-ready .js-proj-media,
body.motion-ready .js-proj-info {
  opacity: 0;
}

body.motion-ready .img-reveal {
  clip-path: inset(0 0 100% 0);
}

body.motion-ready .js-split-lines .clip-outer {
  overflow: hidden;
}

body.motion-ready .js-split-lines .clip-inner {
  transform: none;
}

body.motion-ready .about .js-fade-in,
body.motion-ready .about .js-split-lines,
body.motion-ready .about .js-card-reveal,
body.motion-ready .about .js-why-row {
  opacity: 1;
  transform: none;
}

body.motion-ready .about .img-reveal {
  clip-path: inset(0 0 0 0);
}

body.motion-ready .h-word {
  transform: translateY(110%);
  opacity: 0;
}

body.motion-ready .hero__eyebrow,
body.motion-ready .hero__foot,
body.motion-ready .hero__scroll,
body.motion-ready .hero__stats {
  opacity: 0;
  transform: translateY(22px);
}

.hero {
  min-height: 720px;
  isolation: isolate;
}

.hero__media {
  z-index: 0;
}

.hero__bg {
  transform-origin: center;
  filter: saturate(0.92) contrast(1.06);
}

.hero__overlay {
  background:
    radial-gradient(circle at 50% 48%, rgba(8, 10, 11, 0.08) 0%, rgba(8, 10, 11, 0.34) 48%, rgba(8, 10, 11, 0.78) 100%),
    linear-gradient(to bottom, rgba(8, 10, 11, 0.46) 0%, rgba(8, 10, 11, 0.14) 34%, rgba(8, 10, 11, 0.68) 78%, rgba(8, 10, 11, 0.98) 100%);
}

.hero__tint {
  background:
    radial-gradient(ellipse at 24% 58%, rgba(62, 92, 80, 0.28) 0%, transparent 58%),
    linear-gradient(90deg, rgba(8, 10, 11, 0.56), transparent 42%, rgba(8, 10, 11, 0.46));
}

.hero__content {
  z-index: 4;
  width: 100%;
  padding-top: 96px;
  padding-bottom: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  justify-content: center;
  margin-bottom: 22px;
}

.hero__title {
  width: min(980px, 100%);
  margin: 0 auto 24px;
  text-align: center;
  font-size: clamp(92px, 15vw, 210px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow: 0 22px 80px rgba(0, 0, 0, 0.48);
}

.hero__brand-main {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__brand-sub {
  margin-top: 0.18em;
  font-family: var(--ff-body);
  font-size: clamp(22px, 3.1vw, 42px);
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.9);
  transform-origin: center;
}

.h-clip {
  padding-bottom: 0.08em;
}

.hero__foot {
  width: min(640px, 100%);
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__sub {
  color: rgba(245, 242, 237, 0.74);
  max-width: 640px;
}

.hero__stats {
  z-index: 5;
  background: rgba(8, 10, 11, 0.78);
  box-shadow: 0 -24px 80px rgba(8, 10, 11, 0.32);
}

.hero__scroll {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 4;
  margin-top: 30px;
  align-items: center;
  gap: 12px;
  transform: none;
}

.hero__scroll .scroll-label {
  writing-mode: horizontal-tb;
}

.scroll-line {
  height: 44px;
}

.services__grid {
  gap: 18px;
  border: 0;
}

.svc-card {
  min-height: 430px;
  justify-content: flex-end;
  border: 0;
  border-radius: 8px;
  isolation: isolate;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.svc-card__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.svc-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1s var(--ease);
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(8, 10, 11, 0.88) 0%, rgba(8, 10, 11, 0.48) 54%, rgba(62, 92, 80, 0.18) 100%),
    linear-gradient(135deg, rgba(62, 92, 80, 0.38), transparent 58%);
  pointer-events: none;
}

.svc-card:hover .svc-card__bg img {
  transform: scale(1.12);
}

.svc-card__icon,
.svc-card__body,
.svc-card__num {
  position: relative;
  z-index: 1;
}

.svc-card__icon {
  color: rgba(245, 242, 237, 0.9);
}

.svc-card__title {
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--light);
}

.svc-card__desc {
  color: rgba(245, 242, 237, 0.74);
}

.svc-card__num {
  color: rgba(245, 242, 237, 0.22);
}

.about {
  padding: clamp(72px, 8vw, 116px) 0;
}

.about__grid {
  gap: clamp(40px, 6vw, 86px);
}

.about__visual {
  min-height: 560px;
}

.about__img-main,
.about__img-accent {
  overflow: hidden;
  border-radius: 8px;
}

.about__text {
  padding-top: 0;
}

.about__body {
  color: #5f6e68;
}

.about__stats {
  margin: 34px 0;
}

.future-showcase {
  background: var(--light);
  color: var(--text-dark);
  padding: clamp(86px, 10vw, 150px) 0 clamp(92px, 10vw, 150px);
  overflow: hidden;
}

.future-showcase__bg-word {
  position: absolute;
  top: clamp(48px, 6vw, 86px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  font-family: var(--ff-display);
  font-size: clamp(76px, 15vw, 230px);
  font-weight: 600;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(62, 92, 80, 0.12);
  text-stroke: 1px rgba(62, 92, 80, 0.12);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.future-showcase .container {
  position: relative;
  z-index: 1;
}

.future-showcase__intro {
  width: min(860px, 100%);
  margin: 0 auto clamp(48px, 6vw, 78px);
  text-align: center;
}

.future-showcase__label {
  justify-content: center;
}

.future-showcase__title {
  font-family: var(--ff-display);
  font-size: clamp(48px, 8vw, 118px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--text-dark);
  margin-bottom: 26px;
}

.future-showcase__copy {
  width: min(680px, 100%);
  margin: 0 auto 34px;
  font-size: clamp(14px, 1.35vw, 17px);
  font-weight: 300;
  line-height: 1.78;
  color: #65736e;
}

.future-showcase__slider {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.future-showcase__viewport {
  position: relative;
  height: clamp(460px, 58vw, 680px);
  overflow: hidden;
  border-radius: 28px;
  background: var(--dark);
  box-shadow: 0 34px 100px rgba(8, 10, 11, 0.16);
}

.future-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: scale(1.015);
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease), transform 1.1s var(--ease);
}

.future-card.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.future-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.4s var(--ease);
}

.future-card.is-active .future-card__img {
  transform: scale(1);
}

.future-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.82) 0%, rgba(8, 10, 11, 0.48) 42%, rgba(8, 10, 11, 0.12) 100%),
    linear-gradient(to top, rgba(8, 10, 11, 0.56), transparent 55%);
}

.future-card__content {
  position: absolute;
  left: clamp(28px, 5vw, 72px);
  bottom: clamp(28px, 5vw, 70px);
  width: min(470px, calc(100% - 56px));
  color: var(--light);
}

.future-card__kicker {
  display: block;
  margin-bottom: 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-light);
}

.future-card__title {
  font-family: var(--ff-display);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.future-card__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(245, 242, 237, 0.74);
  margin-bottom: 28px;
}

.future-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--light);
  color: var(--dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.future-card__cta:hover {
  background: var(--green);
  color: var(--light);
}

.future-showcase__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}

.future-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(62, 92, 80, 0.28);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.future-arrow:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--light);
}

.future-count {
  min-width: 76px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* ── 23. REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .js-fade-in,
  .js-card-reveal,
  .js-why-row,
  .js-proj-media,
  .js-proj-info {
    opacity: 1 !important;
    transform: none !important;
  }
  .img-reveal { clip-path: inset(0%) !important; }
  .js-split-lines .clip-inner { transform: none !important; }
  .h-word { transform: none !important; }
  .ticker__track { animation: none !important; }
}

/* ── 24. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid .svc-card:nth-child(2) { border-right: none; }
  .services__grid .svc-card:nth-child(3) { border-top: 1px solid rgba(62, 92, 80, 0.18); }
  .services__grid .svc-card:nth-child(4) { border-top: 1px solid rgba(62, 92, 80, 0.18); border-right: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .future-showcase__viewport { border-radius: 22px; }
}

@media (max-width: 992px) {
  .header__nav { display: none; }
  .hdr-tel { display: none; }
  .burger { display: flex; }

  .about__grid { grid-template-columns: 1fr; gap: 80px; }
  .about__visual { max-width: 500px; margin: 0 auto; }
  .about__img-accent { right: -14px; bottom: -22px; }
  .about__badge { left: -12px; }

  .services__head { grid-template-columns: 1fr; gap: 24px; }
  .services__intro { max-width: 100%; }

  .proj { grid-template-columns: 1fr; }
  .proj--rev { direction: ltr; }
  .proj__img { min-height: 320px; }
  .proj__info { padding: 48px 32px; border-top: 1px solid var(--sand-dark); }
  .proj__ghost { font-size: clamp(60px, 12vw, 100px); }

  .projects__head { flex-direction: column; gap: 16px; }

  .why__head { grid-template-columns: 1fr; gap: 24px; }

  .numstrip__inner { flex-wrap: wrap; gap: 40px; }
  .numstrip__div { display: none; }
  .numstrip__item { width: calc(50% - 20px); }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }

  .hero__foot { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero__ctas { width: 100%; }
  .hero__title { font-size: clamp(82px, 16vw, 142px); }
  .hero__eyebrow { justify-content: center; }
  .future-showcase__intro { text-align: left; margin-left: 0; }
  .future-showcase__label { justify-content: flex-start; }
  .future-card__shade {
    background:
      linear-gradient(to top, rgba(8, 10, 11, 0.88) 0%, rgba(8, 10, 11, 0.46) 54%, rgba(8, 10, 11, 0.16) 100%);
  }
  .future-card__content { width: calc(100% - 56px); }
}

@media (max-width: 768px) {
  .hero {
    min-height: 760px;
    align-items: center;
  }

  .hero__content {
    padding-top: 96px;
    padding-bottom: 210px;
  }

  .hero__title {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: clamp(70px, 21vw, 108px);
    line-height: 0.9;
  }

  .hero__brand-sub {
    font-size: clamp(16px, 5vw, 24px);
    letter-spacing: 0.24em;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px var(--gutter);
    gap: 0;
  }

  .hstat {
    width: auto;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(62, 92, 80, 0.12);
  }

  .hstat:nth-of-type(1), .hstat:nth-of-type(2) {
    border-top: 1px solid rgba(62, 92, 80, 0.12);
  }

  .hstat__divider { display: none; }
  .hero__scroll { display: flex; }

  .services__grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none; border-bottom: 1px solid rgba(62, 92, 80, 0.18); min-height: 360px; }
  .svc-card:last-child { border-bottom: none; }
  .services__grid .svc-card:nth-child(3),
  .services__grid .svc-card:nth-child(4) { border-top: none; }

  .why-row { grid-template-columns: 48px 1fr; gap: 16px; }

  .numstrip__item { width: 100%; }

  .footer__top { grid-template-columns: 1fr; }

  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cta-section__btns { flex-direction: column; align-items: flex-start; }
  .cta-section__btns .btn { width: 100%; max-width: 280px; justify-content: center; }

  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; max-width: 280px; justify-content: center; }

  .about__stats { gap: 24px; }

  .about {
    padding: 68px 0 84px;
  }

  .about__grid {
    gap: 54px;
  }

  .about__visual {
    min-height: auto;
    padding-bottom: 54px;
  }

  .about__img-accent {
    width: 48%;
    right: 0;
    bottom: 0;
  }

  .about__badge {
    top: 18px;
    left: 14px;
  }

  .future-showcase {
    padding: 74px 0 86px;
  }

  .future-showcase__bg-word {
    top: 42px;
    font-size: clamp(70px, 24vw, 138px);
    white-space: nowrap;
  }

  .future-showcase__title {
    font-size: clamp(44px, 13vw, 74px);
  }

  .future-showcase__viewport {
    height: 560px;
    border-radius: 18px;
  }

  .future-card__content {
    left: 24px;
    bottom: 28px;
    width: calc(100% - 48px);
  }

  .future-card__title {
    font-size: clamp(40px, 13vw, 62px);
  }

  .future-showcase__nav {
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(58px, 20vw, 82px);
  }
  .hero__title { line-height: 0.95; }

  .hero__brand-sub {
    font-size: clamp(13px, 4.8vw, 19px);
    letter-spacing: 0.18em;
  }

  .hero__sub {
    font-size: 13px;
  }

  .hero__content {
    padding-bottom: 232px;
  }

  .future-showcase__copy,
  .future-card__text {
    font-size: 13px;
  }

  .future-arrow {
    width: 44px;
    height: 44px;
  }

  .mob-menu__panel {
    width: 100%;
    border-left: none;
  }
}

/* ── ABOUT SHOWCASE FINAL REPAIR ─────────────────────────────
   Scoped to the second section only. Content is visible by default;
   GSAP handles temporary animation states at runtime. */
.about-showcase {
  min-height: 100svh;
  padding: clamp(84px, 9vw, 138px) 0 clamp(86px, 10vw, 150px);
  background:
    radial-gradient(circle at 74% 18%, rgba(245, 242, 237, 0.08), transparent 34%),
    linear-gradient(135deg, #2d3b38 0%, #263330 48%, #1e2a27 100%);
  color: var(--light);
  overflow: hidden;
  isolation: isolate;
}

.about-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255,255,255,0.04), transparent 36%),
    radial-gradient(ellipse at 30% 70%, rgba(62, 92, 80, 0.24), transparent 52%);
  pointer-events: none;
  z-index: -2;
}

.about-showcase__bg-word {
  position: absolute;
  left: 50%;
  top: 16%;
  transform: translateX(-50%);
  width: max-content;
  max-width: none;
  font-family: var(--ff-body);
  font-size: clamp(72px, 15vw, 220px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 242, 237, 0.12);
  text-stroke: 1px rgba(245, 242, 237, 0.12);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: -1;
}

.about-showcase .container {
  position: relative;
  z-index: 1;
}

.about-showcase__content,
.about-showcase .about__text {
  width: min(890px, 100%);
  margin: 0 auto clamp(46px, 6vw, 76px);
  padding: 0;
  text-align: center;
  opacity: 1;
  transform: none;
}

.about-showcase__title {
  font-family: var(--ff-body);
  font-size: clamp(42px, 6.9vw, 92px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #f5f4d7;
  margin: 0 auto 28px;
}

.about-showcase__copy,
.about-showcase .about__body {
  width: min(720px, 100%);
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 400;
  line-height: 1.78;
  color: rgba(245, 242, 237, 0.82);
}

.about-showcase__button {
  min-width: 184px;
  border-radius: 999px;
  border-color: rgba(245, 242, 237, 0.72);
  color: var(--light);
  background: transparent;
}

.about-showcase__button:hover {
  background: var(--light);
  color: var(--dark);
  border-color: var(--light);
}

.about-showcase__media,
.about-showcase .about__visual {
  position: relative;
  width: min(900px, 100%);
  min-height: 0;
  margin: 0 auto;
  padding: 0 0 clamp(48px, 6vw, 72px);
  opacity: 1;
  transform: none;
}

.about-showcase__frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(8, 10, 11, 0.28);
  box-shadow: 0 34px 100px rgba(8, 10, 11, 0.28);
  clip-path: inset(0 0 0 0);
}

.about-showcase__frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-showcase__frame--main,
.about-showcase .about__img-main {
  width: min(760px, 86%);
  aspect-ratio: 16 / 11;
  margin-left: auto;
  border-radius: 34px;
}

.about-showcase__frame--main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 10, 11, 0.08), rgba(8, 10, 11, 0.34));
  pointer-events: none;
}

.about-showcase__frame--float,
.about-showcase .about__img-accent {
  position: absolute;
  left: clamp(0px, 4vw, 56px);
  bottom: clamp(64px, 7vw, 96px);
  width: min(260px, 32vw);
  aspect-ratio: 4 / 5;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(8, 10, 11, 0.34);
}

.about-showcase__cta {
  position: absolute;
  left: 50%;
  bottom: clamp(6px, 2vw, 22px);
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border-radius: 999px;
  background: rgba(245, 244, 215, 0.96);
  color: var(--dark);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 42px rgba(8, 10, 11, 0.28);
}

.about-showcase__cta:hover {
  background: var(--green);
  color: var(--light);
}

@media (max-width: 768px) {
  .about-showcase {
    min-height: auto;
    padding: 64px 0 78px;
  }

  .about-showcase__bg-word {
    top: 31%;
    font-size: clamp(70px, 26vw, 140px);
    opacity: 0.78;
  }

  .about-showcase__content,
  .about-showcase .about__text {
    text-align: left;
    margin-bottom: 42px;
  }

  .about-showcase__title {
    font-size: clamp(34px, 9vw, 54px);
    line-height: 1.02;
  }

  .about-showcase__copy,
  .about-showcase .about__body {
    margin-left: 0;
    margin-right: 0;
    font-size: 15px;
  }

  .about-showcase__media,
  .about-showcase .about__visual {
    width: 100%;
    padding-bottom: 70px;
  }

  .about-showcase__frame--main,
  .about-showcase .about__img-main {
    width: 92%;
    margin-left: auto;
    aspect-ratio: 4 / 4.8;
    border-radius: 24px;
  }

  .about-showcase__frame--float,
  .about-showcase .about__img-accent {
    left: 0;
    bottom: 88px;
    width: min(170px, 42vw);
    border-radius: 20px;
  }

  .about-showcase__cta {
    bottom: 18px;
    left: 54%;
    min-height: 46px;
    padding: 0 24px;
  }
}

/* About composition adjustment: title sits directly over the image, Rayn-style. */
@media (min-width: 769px) {
  .about-showcase {
    min-height: 112svh;
    padding: clamp(18px, 2.2vw, 34px) 0 0;
  }

  .about-showcase__bg-word {
    top: 30%;
    left: 45%;
    font-size: clamp(170px, 20vw, 330px);
    -webkit-text-stroke-color: rgba(245, 242, 237, 0.11);
    text-stroke-color: rgba(245, 242, 237, 0.11);
  }

  .about-showcase__content,
  .about-showcase .about__text {
    position: relative;
    z-index: 4;
    width: 100%;
    margin: 0;
    text-align: left;
  }

  .about-showcase__title {
    width: min(1280px, 78vw);
    margin: 0 0 -0.28em auto;
    font-size: clamp(58px, 6.2vw, 112px);
    line-height: 0.92;
    letter-spacing: 0.045em;
    color: #f5f4d7;
  }

  .about-showcase__copy,
  .about-showcase .about__body {
    position: absolute;
    left: 0;
    top: clamp(310px, 28vw, 470px);
    width: min(430px, 30vw);
    margin: 0;
    text-align: left;
    font-size: clamp(15px, 1.08vw, 18px);
    line-height: 1.72;
    color: rgba(245, 242, 237, 0.9);
    text-shadow: 0 12px 42px rgba(8, 10, 11, 0.36);
  }

  .about-showcase__button {
    position: absolute;
    left: 0;
    top: clamp(560px, 45vw, 690px);
  }

  .about-showcase__media,
  .about-showcase .about__visual {
    width: min(650px, 42vw);
    height: clamp(820px, 124vh, 1180px);
    margin: 0 var(--gutter) 0 auto;
    padding: 0;
    z-index: 2;
  }

  .about-showcase__frame--main,
  .about-showcase .about__img-main {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    margin: 0;
    border-radius: 34px 34px 0 0;
  }

  .about-showcase__frame--float,
  .about-showcase .about__img-accent {
    left: clamp(-190px, -12vw, -92px);
    bottom: clamp(140px, 16vw, 260px);
    width: min(330px, 21vw);
    height: min(430px, 33vw);
    aspect-ratio: auto;
    border-radius: 30px;
    z-index: 3;
  }

  .about-showcase__cta {
    left: clamp(-42px, -2vw, 18px);
    bottom: clamp(78px, 9vw, 150px);
    transform: none;
    z-index: 5;
  }
}

@media (max-width: 768px) {
  .about-showcase__content,
  .about-showcase .about__text {
    margin-bottom: -4px;
  }

  .about-showcase__title {
    margin-bottom: 24px;
  }

  .about-showcase__media,
  .about-showcase .about__visual {
    margin-top: 24px;
  }
}


/* Phase 1 polish: flicker-safe motion, local image fallbacks, and future carousel */
.hero__media,
.about-showcase__frame,
.svc-card__bg,
.future-card,
.proj__media,
.cta-section__media {
  background:
    linear-gradient(135deg, rgba(62, 92, 80, 0.34), rgba(8, 10, 11, 0.72)),
    var(--dark);
}

.image-missing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(201, 169, 110, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(62, 92, 80, 0.48), rgba(8, 10, 11, 0.88));
  pointer-events: none;
}

img.is-missing {
  display: none !important;
}

.hero__bg,
.about-showcase__frame img,
.svc-card__bg img,
.future-card__img,
.proj__img,
.cta-section__bg {
  color: transparent;
  font-size: 0;
}

body.motion-ready .services .js-split-lines,
body.motion-ready .projects .js-split-lines,
body.motion-ready .why .js-split-lines,
body.motion-ready .cta-section .js-split-lines {
  opacity: 0;
  transform: translateY(54px);
}

body.motion-ready .js-proj-media {
  opacity: 1;
  clip-path: inset(0 0 100% 0);
}

body.motion-ready .js-proj-info {
  opacity: 0;
  transform: translateY(38px);
}

body.motion-ready .svc-card__icon,
body.motion-ready .svc-card__body,
body.motion-ready .svc-card__num {
  opacity: 0;
  transform: translateY(22px);
}

body.motion-ready .future-showcase__slider {
  opacity: 0;
  transform: translateY(70px) scale(0.985);
}

body.motion-ready .future-showcase__bg-word {
  opacity: 0;
}

body.motion-ready .future-showcase__title {
  opacity: 0;
}

body.motion-ready .future-showcase__title[data-future-title-ready="true"] {
  opacity: 1;
}

body.motion-ready .about-showcase__title,
body.motion-ready .about-showcase__copy,
body.motion-ready .about-showcase__button,
body.motion-ready .about-showcase__cta {
  opacity: 0;
  transform: translateY(32px);
}

body.motion-ready .about-showcase__title {
  transform: translateY(60px);
}

body.motion-ready .about-showcase__frame--main,
body.motion-ready .about-showcase__frame--float {
  clip-path: inset(0 0 100% 0);
}

body.motion-ready .img-reveal,
body.motion-ready .svc-card__bg,
body.motion-ready .future-card,
body.motion-ready .about-showcase__frame,
body.motion-ready.about-page .about-story__media,
body.motion-ready.about-page .about-split__image,
body.motion-ready.about-page .about-experience__card,
body.motion-ready.about-page .about-cta__media {
  clip-path: inset(0 0 100% 0);
}

body.motion-ready .img-reveal img,
body.motion-ready .svc-card__bg img,
body.motion-ready .future-card__img,
body.motion-ready .proj__media img,
body.motion-ready .about-showcase__frame img,
body.motion-ready.about-page .about-story__media img,
body.motion-ready.about-page .about-split__image img,
body.motion-ready.about-page .about-experience__card img,
body.motion-ready.about-page .about-cta__media img {
  transform: scale(1.12);
}

.future-title-word {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
}

.future-title-char {
  display: inline-block;
}

body.motion-ready .future-title-char {
  opacity: 0;
  transform: translateY(0.82em);
  clip-path: inset(0 0 100% 0);
}

body.motion-ready .future-card__content {
  opacity: 0;
  transform: translateY(18px);
}

.future-showcase {
  padding: clamp(78px, 8vw, 124px) 0 clamp(88px, 9vw, 136px);
}

.future-showcase__bg-word {
  top: clamp(42px, 5vw, 74px);
  font-size: clamp(82px, 14vw, 214px);
}

.future-showcase__intro {
  margin-bottom: clamp(34px, 4.5vw, 58px);
}

.future-showcase__title {
  font-size: clamp(46px, 7.1vw, 102px);
  margin-bottom: 22px;
}

.future-showcase__copy {
  margin-bottom: 28px;
}

.future-showcase__slider {
  width: min(1260px, 100%);
  overflow: visible;
  user-select: none;
}

.future-showcase__slider:focus {
  outline: none;
}

.future-showcase__slider:focus-visible {
  outline: 1px solid rgba(62, 92, 80, 0.38);
  outline-offset: 10px;
}

.future-showcase__viewport {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  height: auto;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: grab;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  will-change: transform;
}

.future-showcase__slider.is-dragging .future-showcase__viewport {
  cursor: grabbing;
}

.future-card {
  position: relative;
  inset: auto;
  flex: 0 0 clamp(760px, 74%, 980px);
  height: clamp(390px, 42vw, 540px);
  opacity: 0.42;
  visibility: visible;
  border-radius: 26px;
  background-color: var(--dark);
  transform: scale(0.91);
  box-shadow: 0 28px 82px rgba(8, 10, 11, 0.14);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease),
    filter 0.55s var(--ease),
    box-shadow 0.55s var(--ease);
  filter: saturate(0.78);
}

.future-card.is-prev,
.future-card.is-next {
  opacity: 0.56;
  transform: scale(0.94);
  filter: saturate(0.86);
}

.future-card.is-away {
  opacity: 0.22;
  transform: scale(0.88);
}

.future-card.is-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
  z-index: 2;
  box-shadow: 0 34px 96px rgba(8, 10, 11, 0.18);
}

.future-card__img {
  height: 100%;
  transform: scale(1.06);
}

.future-card.is-active .future-card__img {
  transform: scale(1.03);
}

.future-card__shade {
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.82) 0%, rgba(8, 10, 11, 0.44) 44%, rgba(8, 10, 11, 0.1) 100%),
    linear-gradient(to top, rgba(8, 10, 11, 0.58), transparent 58%);
}

.future-card__content {
  left: clamp(28px, 4.4vw, 58px);
  bottom: clamp(28px, 4.2vw, 56px);
  width: min(430px, calc(100% - 56px));
}

.future-card__title {
  font-size: clamp(40px, 5vw, 70px);
}

.future-card__cta {
  border-radius: 999px;
}

.future-showcase__nav {
  margin-top: 24px;
}

@media (max-width: 1200px) {
  .future-card {
    flex-basis: 76%;
  }
}

@media (max-width: 992px) {
  .future-card {
    flex-basis: 82%;
    height: clamp(420px, 58vw, 540px);
  }
}

@media (max-width: 768px) {
  .future-showcase {
    padding: 70px 0 82px;
  }

  .future-showcase__slider {
    width: calc(100% + 28px);
    margin-left: -8px;
  }

  .future-showcase__viewport {
    gap: 14px;
  }

  .future-card {
    flex-basis: 88%;
    height: 500px;
    border-radius: 20px;
  }

  .future-card.is-prev,
  .future-card.is-next {
    opacity: 0.46;
    transform: scale(0.96);
  }

  .future-card__content {
    left: 24px;
    bottom: 28px;
    width: calc(100% - 48px);
  }
}

@media (max-width: 480px) {
  .future-card {
    flex-basis: 90%;
    height: 470px;
  }

  .future-showcase__nav {
    gap: 12px;
  }
}

/* About page: Rayn-inspired premium inner page */
.about-page {
  background: var(--light);
}

.about-page .header {
  background: rgba(8, 10, 11, 0.18);
}

.about-inner,
.about-story,
.about-split,
.about-experience,
.about-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about-inner {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--light);
}

.about-inner__media,
.about-cta__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(62, 92, 80, 0.34), rgba(8, 10, 11, 0.76)),
    var(--dark);
}

.about-inner__img,
.about-cta__img {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  will-change: transform;
}

.about-inner__overlay,
.about-cta__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(62, 92, 80, 0.2), transparent 48%),
    linear-gradient(180deg, rgba(8, 10, 11, 0.56), rgba(11, 29, 27, 0.8));
  z-index: 1;
}

.about-inner__outline,
.about-story__outline,
.about-experience__pattern {
  position: absolute;
  width: max-content;
  font-family: var(--ff-body);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 242, 237, 0.16);
  text-stroke: 1px rgba(245, 242, 237, 0.16);
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

.about-inner__outline {
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  font-size: clamp(72px, 14vw, 220px);
  opacity: 0.82;
}

.about-inner__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-top: 90px;
}

.about-inner__title,
.about-story__title,
.about-split__title,
.about-experience__title,
.about-cta__title {
  font-family: var(--ff-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-inner__title {
  font-size: clamp(58px, 8.5vw, 138px);
  line-height: 0.9;
  color: var(--light);
  margin: 0 auto 28px;
}

.about-inner__title-mask {
  display: block;
  overflow: hidden;
  line-height: inherit;
}

.about-inner__title-text {
  display: inline-block;
  will-change: transform;
}

.about-inner__subtitle {
  width: min(870px, 100%);
  margin: 0 auto;
  color: rgba(245, 242, 237, 0.78);
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.75;
}

.about-dark-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(62, 92, 80, 0.2), transparent 34%),
    linear-gradient(135deg, #2f413d 0%, #23312f 48%, #142524 100%);
  color: var(--light);
}

.about-story {
  min-height: 104svh;
  padding: clamp(78px, 8vw, 132px) 0 clamp(82px, 8vw, 128px);
}

.about-story__outline {
  left: -4vw;
  bottom: 21%;
  font-size: clamp(88px, 17vw, 260px);
  opacity: 0.55;
}

.about-story__inner {
  min-height: 78svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
}

.about-story__content {
  position: relative;
  z-index: 3;
  align-self: start;
  padding-top: clamp(18px, 3vw, 54px);
}

.about-story__title {
  max-width: 980px;
  font-size: clamp(42px, 6.1vw, 96px);
  line-height: 0.96;
  color: #f5f4d7;
  margin: 0 0 clamp(180px, 26vw, 360px);
}

.about-story__text {
  width: min(980px, 62vw);
  color: rgba(245, 242, 237, 0.88);
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 500;
  line-height: 1.72;
  text-shadow: 0 18px 44px rgba(8, 10, 11, 0.34);
}

.about-story__media {
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 10%;
  width: min(58vw, 940px);
  border-radius: 34px 0 0 0;
  overflow: hidden;
  background: rgba(8, 10, 11, 0.32);
  box-shadow: 0 34px 100px rgba(8, 10, 11, 0.24);
  z-index: 1;
}

.about-story__media::after,
.about-split__image::after,
.about-experience__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 10, 11, 0.14), rgba(8, 10, 11, 0.48));
  pointer-events: none;
}

.about-story__media img,
.about-split__image img,
.about-experience__card img {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}

.about-floating-cta {
  position: absolute;
  left: 50%;
  bottom: clamp(34px, 4.6vw, 72px);
  z-index: 4;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 30px 0 18px;
  border-radius: 999px;
  background: rgba(245, 244, 215, 0.16);
  color: #f5f4d7;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.about-floating-cta__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5f4d7;
  color: var(--green-dark);
}

.about-split {
  background: #f1f4cf;
  color: #111416;
  padding: clamp(76px, 8vw, 132px) 0;
}

.about-split__mark {
  position: absolute;
  left: -3vw;
  top: 8%;
  font-family: var(--ff-body);
  font-size: clamp(260px, 48vw, 740px);
  font-weight: 800;
  line-height: 0.75;
  color: transparent;
  -webkit-text-stroke: 1px rgba(62, 92, 80, 0.08);
  text-stroke: 1px rgba(62, 92, 80, 0.08);
  z-index: -1;
}

.about-split__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
}

.about-split--values .about-split__inner {
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 0.98fr);
}

.about-split__title {
  color: #42514f;
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: 1;
  margin: 0 0 28px;
}

.about-split__text,
.about-values__list {
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.58;
  color: #101414;
}

.about-split__text {
  width: min(720px, 100%);
}

.about-split__arrows {
  display: flex;
  gap: 20px;
  margin-top: clamp(34px, 4vw, 58px);
}

.about-split__arrows span,
.about-split__arrows button {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(66, 81, 79, 0.72);
  border-radius: 50%;
  color: #42514f;
  background: transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

.about-split__arrows button:hover {
  background: #42514f;
  color: #f1f4cf;
  transform: translateY(-2px);
}

.about-split__image {
  position: relative;
  min-height: clamp(430px, 48vw, 650px);
  overflow: hidden;
  border-radius: 34px;
  background: var(--dark);
  box-shadow: 0 30px 76px rgba(8, 10, 11, 0.12);
}

.about-split--mission .about-split__image {
  border-radius: 34px 34px 8px 8px;
}

.about-values__content {
  align-self: center;
}

.about-values__list {
  display: grid;
  gap: 12px;
  padding-left: 1.1em;
}

.about-values__list strong {
  color: #42514f;
  font-weight: 800;
}

.about-values-panel {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--dark);
  color: var(--light);
}

.about-values-panel__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(62, 92, 80, 0.34), rgba(8, 10, 11, 0.72)),
    var(--dark);
  z-index: -2;
}

.about-values-panel__media img {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}

.about-values-panel__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.74), rgba(62, 92, 80, 0.5) 48%, rgba(201, 169, 110, 0.28)),
    linear-gradient(180deg, rgba(8, 10, 11, 0.25), rgba(8, 10, 11, 0.55));
  z-index: -1;
}

.about-values-panel__inner {
  padding-top: clamp(80px, 9vw, 130px);
  padding-bottom: clamp(80px, 9vw, 130px);
}

.about-values-panel__title {
  font-family: var(--ff-body);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  line-height: 1;
  color: var(--light);
  margin-bottom: clamp(34px, 4vw, 56px);
}

.about-values-panel__list {
  width: min(1120px, 100%);
  border: 1px solid rgba(245, 242, 237, 0.72);
  backdrop-filter: blur(10px);
  background: rgba(8, 10, 11, 0.1);
}

.about-value-panel {
  border-bottom: 1px solid rgba(245, 242, 237, 0.72);
  color: var(--light);
}

.about-value-panel:last-child {
  border-bottom: 0;
}

.about-value-panel__button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 18px;
  color: var(--light);
  font-size: clamp(16px, 1.4vw, 21px);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.about-value-panel__button span {
  width: 16px;
  flex: 0 0 16px;
  font-size: 27px;
  line-height: 1;
  color: #f5f4d7;
}

.about-value-panel p {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px 0 48px;
  color: rgba(245, 242, 237, 0.92);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.65;
  transition: max-height 0.55s var(--ease), padding 0.55s var(--ease);
}

.about-value-panel.is-open p {
  max-height: 150px;
  padding-bottom: 16px;
}

.about-experience {
  padding: clamp(80px, 8vw, 132px) 0 clamp(54px, 6vw, 90px);
}

.about-experience__pattern {
  right: -3vw;
  top: 8%;
  font-size: clamp(88px, 15vw, 220px);
  opacity: 0.42;
}

.about-experience__inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 98px);
  align-items: start;
}

.about-experience__card {
  position: relative;
  min-height: clamp(460px, 48vw, 620px);
  border-radius: 28px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 34px 96px rgba(8, 10, 11, 0.28);
}

.about-experience__brand {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 72px);
  color: var(--light);
}

.about-experience__brand span {
  font-family: var(--ff-display);
  font-size: clamp(72px, 9vw, 140px);
  line-height: 0.78;
  color: #f5f4d7;
}

.about-experience__brand small {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.about-experience__brand em {
  margin-top: auto;
  font-family: var(--ff-display);
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: 0.78;
  color: #f5f4d7;
}

.about-experience__title {
  color: #f5f4d7;
  font-size: clamp(42px, 5.2vw, 86px);
  line-height: 1;
  margin: 0 0 32px;
}

.about-experience__text {
  width: min(820px, 100%);
  color: rgba(245, 242, 237, 0.9);
  font-size: clamp(16px, 1.28vw, 21px);
  font-weight: 500;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 70px);
  margin-top: clamp(56px, 7vw, 98px);
}

.about-stat {
  color: #f5f4d7;
}

.about-stat span {
  display: flex;
  align-items: baseline;
  gap: 0.08em;
  white-space: nowrap;
  font-family: var(--ff-body);
  font-size: clamp(48px, 5.5vw, 90px);
  font-weight: 800;
  line-height: 0.92;
}

.about-stat small {
  display: block;
  margin-top: 14px;
  color: rgba(245, 242, 237, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.45;
}

.about-cta {
  min-height: 680px;
  display: flex;
  align-items: center;
  color: var(--light);
  background: var(--dark);
}

.about-cta__content {
  position: relative;
  z-index: 2;
}

.about-cta__title {
  width: min(880px, 100%);
  color: var(--light);
  font-size: clamp(46px, 7vw, 104px);
  line-height: 0.96;
  margin: 0 0 24px;
}

.about-cta__text {
  width: min(560px, 100%);
  color: rgba(245, 242, 237, 0.72);
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.78;
  margin-bottom: 38px;
}

.about-cta__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

body.motion-ready.about-page .js-about-hero-subtitle,
body.motion-ready.about-page .js-about-reveal,
body.motion-ready.about-page .js-about-value,
body.motion-ready.about-page .js-about-stat {
  opacity: 0;
  transform: translateY(36px);
}

body.motion-ready.about-page .js-about-image-reveal {
  clip-path: inset(0 0 100% 0);
}

body.motion-ready.about-page .js-about-image-reveal img {
  transform: scale(1.12);
}

body.motion-ready.about-page .js-about-depth {
  opacity: 0;
}

body.motion-ready.about-page .js-about-value-panel {
  opacity: 0;
  transform: translateY(24px);
}

body.motion-ready.about-page .about-inner__title-text {
  transform: translateY(115%);
}

body.motion-ready.about-page .about-inner__outline {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(30px) scale(0.85);
}

@media (max-width: 1100px) {
  .about-story__inner,
  .about-split__inner,
  .about-split--values .about-split__inner,
  .about-experience__inner {
    grid-template-columns: 1fr;
  }

  .about-story__title {
    margin-bottom: 34px;
  }

  .about-story__text {
    width: min(760px, 100%);
  }

  .about-story__media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 520px;
    margin-top: 36px;
    border-radius: 28px;
  }

  .about-split--values .about-split__image {
    order: 2;
  }

  .about-values__content {
    order: 1;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .about-inner {
    min-height: 760px;
  }

  .about-inner__content {
    padding-top: 72px;
    text-align: left;
  }

  .about-inner__title {
    font-size: clamp(54px, 16vw, 86px);
  }

  .about-inner__outline {
    left: 42%;
    font-size: clamp(86px, 24vw, 160px);
  }

  .about-story,
  .about-split,
  .about-experience {
    padding: 68px 0;
  }

  .about-story__title,
  .about-experience__title,
  .about-cta__title {
    font-size: clamp(38px, 12vw, 64px);
  }

  .about-story__media,
  .about-split__image,
  .about-experience__card {
    min-height: 420px;
    border-radius: 24px;
  }

  .about-floating-cta {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 32px;
  }

  .about-split__arrows span,
  .about-split__arrows button {
    width: 66px;
    height: 66px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-cta {
    min-height: 620px;
  }

  .about-cta__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-cta__buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .about-values-panel {
    min-height: auto;
  }

  .about-values-panel__list {
    width: 100%;
  }

  .about-value-panel__button {
    min-height: 64px;
    align-items: flex-start;
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .about-value-panel p {
    padding-left: 48px;
  }
}

/* NEWS & EVENTS */
.news-page .header,
.news-article-page .header {
  background: rgba(8, 10, 11, 0.18);
}

.news-hero .about-inner__outline {
  font-size: clamp(74px, 13vw, 214px);
}

.news-feed {
  position: relative;
  padding: clamp(72px, 8vw, 126px) 0 clamp(80px, 9vw, 142px);
  background:
    radial-gradient(circle at 80% 0%, rgba(201, 169, 110, 0.15), transparent 28%),
    linear-gradient(135deg, #314540 0%, #223331 48%, #132423 100%);
  color: var(--light);
  overflow: hidden;
}

.news-feed__outline,
.news-related__outline {
  position: absolute;
  left: -4vw;
  top: clamp(24px, 6vw, 84px);
  font-family: var(--ff-body);
  font-size: clamp(98px, 18vw, 280px);
  font-weight: 800;
  line-height: 0.82;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 242, 237, 0.08);
  text-stroke: 1px rgba(245, 242, 237, 0.08);
  pointer-events: none;
  user-select: none;
}

.news-filter {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(490px, 100%);
  min-height: 68px;
  margin: 0 auto clamp(48px, 6vw, 82px);
  padding: 5px;
  border: 1px solid rgba(245, 242, 237, 0.16);
  border-radius: 999px;
  background: rgba(245, 244, 215, 0.13);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.news-filter::before {
  content: "";
  position: absolute;
  inset: 5px auto 5px 5px;
  width: calc(50% - 5px);
  border-radius: 999px;
  background: #f5f4d7;
  transform: translateX(calc(var(--active-tab, 0) * 100%));
  transition: transform 0.55s var(--ease), background 0.55s var(--ease);
}

.news-filter__btn {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 999px;
  color: var(--light);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.4s var(--ease);
}

.news-filter__btn.is-active {
  color: var(--green-dark);
}

.news-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.6vw, 34px);
}

.news-card {
  position: relative;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(245, 242, 237, 0.08);
  box-shadow: 0 28px 80px rgba(8, 10, 11, 0.22);
  isolation: isolate;
  transform: translateY(0);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), background 0.55s var(--ease);
}

.news-card:hover {
  transform: translateY(-10px);
  background: rgba(245, 242, 237, 0.12);
  box-shadow: 0 38px 98px rgba(8, 10, 11, 0.34);
}

.news-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--dark);
}

.news-card__media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease);
}

.news-card:hover .news-card__media img {
  transform: scale(1.1);
}

.news-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 11, 0.08), rgba(8, 10, 11, 0.86)),
    linear-gradient(90deg, rgba(62, 92, 80, 0.58), rgba(8, 10, 11, 0.18));
}

.news-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  padding: clamp(28px, 3vw, 42px);
  color: var(--light);
}

.news-card__top,
.news-card__event {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 18px;
  color: rgba(245, 242, 237, 0.84);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.news-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border: 1px solid rgba(245, 244, 215, 0.48);
  border-radius: 999px;
  color: #f5f4d7;
  background: rgba(245, 244, 215, 0.1);
  backdrop-filter: blur(12px);
}

.news-card__title {
  font-family: var(--ff-body);
  font-size: clamp(27px, 2.4vw, 40px);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--light);
  margin: 0 0 16px;
}

.news-card__excerpt {
  color: rgba(245, 242, 237, 0.78);
  font-size: 15px;
  line-height: 1.72;
  margin-bottom: 24px;
}

.news-card__link {
  align-self: flex-start;
  color: #f5f4d7;
}

.news-load {
  display: flex;
  justify-content: center;
  margin-top: clamp(42px, 5vw, 70px);
}

.news-article-hero {
  min-height: 92svh;
}

.news-article-hero .about-inner__content {
  text-align: left;
  align-self: end;
  padding-top: 170px;
  padding-bottom: clamp(64px, 8vw, 120px);
}

.news-article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  color: #f5f4d7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-article-wrap {
  padding: clamp(72px, 8vw, 128px) 0;
  background: #f1f4cf;
  color: #111416;
}

.news-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 900px) 310px;
  gap: clamp(38px, 6vw, 82px);
  align-items: start;
}

.news-article-content {
  font-size: clamp(17px, 1.34vw, 21px);
  line-height: 1.86;
  color: #111416;
}

.news-article-content > * + * {
  margin-top: 26px;
}

.news-article-content h2 {
  margin-top: 48px;
  font-family: var(--ff-body);
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: #42514f;
}

.news-article-content blockquote {
  padding: clamp(28px, 4vw, 46px);
  border-left: 3px solid var(--green);
  background: rgba(62, 92, 80, 0.08);
  color: #42514f;
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 800;
  line-height: 1.28;
}

.news-article-content ul {
  display: grid;
  gap: 12px;
  padding-left: 1.15em;
  list-style: disc;
}

.news-article-content figure {
  overflow: hidden;
  border-radius: 28px;
  background: var(--dark);
  box-shadow: 0 28px 72px rgba(8, 10, 11, 0.14);
}

.news-article-content figure img {
  width: 100%;
  min-height: 420px;
}

.news-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.news-sidebar__block {
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(62, 92, 80, 0.16);
  background: rgba(245, 242, 237, 0.45);
  box-shadow: 0 24px 70px rgba(8, 10, 11, 0.08);
}

.news-sidebar__title {
  margin: 0 0 16px;
  color: #42514f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-sidebar__link {
  display: block;
  padding: 13px 0;
  border-top: 1px solid rgba(62, 92, 80, 0.16);
  color: #111416;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.news-sidebar__link:hover {
  color: var(--green);
  transform: translateX(4px);
}

.news-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-share a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(62, 92, 80, 0.24);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

.news-share a:hover {
  transform: translateY(-3px);
  background: var(--green);
  color: var(--light);
}

.news-related {
  position: relative;
  padding: clamp(72px, 8vw, 126px) 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(62, 92, 80, 0.2), transparent 34%),
    linear-gradient(135deg, #2f413d 0%, #23312f 48%, #142524 100%);
  color: var(--light);
  overflow: hidden;
}

.news-related__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.news-related__title {
  font-family: var(--ff-body);
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
  color: #f5f4d7;
}

body.motion-ready.news-page .js-news-reveal,
body.motion-ready.news-article-page .js-news-reveal {
  opacity: 0;
  transform: translateY(34px);
}

body.motion-ready.news-page .about-inner__title-text,
body.motion-ready.news-article-page .about-inner__title-text {
  transform: translateY(115%);
}

body.motion-ready.news-page .about-inner__outline,
body.motion-ready.news-article-page .about-inner__outline,
body.motion-ready.news-page .js-about-hero-subtitle,
body.motion-ready.news-article-page .js-about-hero-subtitle {
  opacity: 0;
}

body.motion-ready.news-page .news-card,
body.motion-ready.news-article-page .news-card {
  opacity: 0;
  transform: translateY(34px);
}

body.motion-ready.news-article-page .news-article-content > * {
  opacity: 0;
  transform: translateY(28px);
}

@media (max-width: 1100px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-article-layout {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    min-height: 520px;
    border-radius: 24px;
  }

  .news-filter {
    min-height: 62px;
  }

  .news-filter__btn {
    min-height: 52px;
  }

  .news-article-hero .about-inner__content {
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .news-related__head {
    align-items: start;
    flex-direction: column;
  }
}

/* CONTACT PAGE */
.contact-page .header {
  background: rgba(8, 10, 11, 0.18);
}

.contact-hero .about-inner__outline {
  font-size: clamp(78px, 15vw, 238px);
}

.contact-touch {
  position: relative;
  padding: clamp(78px, 8vw, 132px) 0;
  overflow: hidden;
}

.contact-touch__outline,
.contact-offices__mark {
  position: absolute;
  width: max-content;
  font-family: var(--ff-body);
  font-size: clamp(92px, 17vw, 262px);
  font-weight: 800;
  line-height: 0.82;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 242, 237, 0.08);
  text-stroke: 1px rgba(245, 242, 237, 0.08);
  pointer-events: none;
  user-select: none;
}

.contact-touch__outline {
  left: -4vw;
  bottom: 10%;
}

.contact-touch__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: start;
}

.contact-section-title {
  width: min(880px, 100%);
  font-family: var(--ff-body);
  font-size: clamp(42px, 6.1vw, 92px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #f5f4d7;
  margin: 0 0 26px;
}

.contact-section-text {
  width: min(720px, 100%);
  color: rgba(245, 242, 237, 0.84);
  font-size: clamp(16px, 1.35vw, 21px);
  font-weight: 500;
  line-height: 1.76;
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(34px, 4vw, 56px);
}

.contact-detail-card,
.contact-office-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 242, 237, 0.12);
  border-radius: 24px;
  background: rgba(245, 242, 237, 0.08);
  box-shadow: 0 24px 72px rgba(8, 10, 11, 0.16);
  transition: transform 0.48s var(--ease), background 0.48s var(--ease), border-color 0.48s var(--ease), box-shadow 0.48s var(--ease);
}

.contact-detail-card::after,
.contact-office-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: #f5f4d7;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.48s var(--ease);
}

.contact-detail-card:hover,
.contact-office-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 244, 215, 0.34);
  background: rgba(245, 242, 237, 0.12);
  box-shadow: 0 34px 92px rgba(8, 10, 11, 0.28);
}

.contact-detail-card:hover::after,
.contact-office-card:hover::after {
  transform: scaleX(1);
}

.contact-detail-card a {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.contact-card__kicker,
.contact-office-card span,
.contact-map__content span {
  color: #f5f4d7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card__value {
  color: var(--light);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.1;
  margin: 26px 0 12px;
}

.contact-card__note {
  color: rgba(245, 242, 237, 0.72);
  font-size: 13px;
  line-height: 1.62;
}

.contact-form {
  padding: clamp(26px, 3vw, 40px);
  border-radius: 28px;
  border: 1px solid rgba(245, 242, 237, 0.16);
  background: rgba(245, 242, 237, 0.1);
  box-shadow: 0 34px 96px rgba(8, 10, 11, 0.2);
  backdrop-filter: blur(18px);
}

.contact-form,
.contact-form__row {
  display: grid;
  gap: 16px;
}

.contact-form__row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: rgba(245, 242, 237, 0.84);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(245, 242, 237, 0.16);
  border-radius: 16px;
  background: rgba(8, 10, 11, 0.24);
  color: var(--light);
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
  outline: none;
  padding: 16px 18px;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(245, 244, 215, 0.58);
  background: rgba(8, 10, 11, 0.34);
  box-shadow: 0 0 0 4px rgba(245, 244, 215, 0.08);
}

.contact-form__status {
  min-height: 22px;
  color: #f5f4d7;
  font-size: 13px;
  line-height: 1.55;
}

.contact-story,
.contact-map {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  color: var(--light);
}

.contact-story__media,
.contact-map__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(62, 92, 80, 0.34), rgba(8, 10, 11, 0.72)),
    var(--dark);
}

.contact-story__media img,
.contact-map__media img {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}

.contact-story__overlay,
.contact-map__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.78), rgba(62, 92, 80, 0.48) 52%, rgba(8, 10, 11, 0.38)),
    linear-gradient(180deg, rgba(8, 10, 11, 0.1), rgba(8, 10, 11, 0.58));
}

.contact-story__inner,
.contact-map__panel {
  position: relative;
  z-index: 2;
}

.contact-story__content {
  width: min(760px, 100%);
}

.contact-offices {
  position: relative;
  padding: clamp(76px, 8vw, 132px) 0;
  background: #f1f4cf;
  color: #111416;
  overflow: hidden;
}

.contact-offices__mark {
  right: -4vw;
  top: 8%;
  -webkit-text-stroke-color: rgba(62, 92, 80, 0.09);
  text-stroke-color: rgba(62, 92, 80, 0.09);
}

.contact-offices .contact-section-title {
  color: #42514f;
}

.contact-offices .contact-section-text {
  color: #101414;
}

.contact-section-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  margin-bottom: clamp(36px, 5vw, 68px);
}

.contact-section-head .contact-section-text {
  width: min(560px, 100%);
}

.contact-office-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.contact-office-card {
  min-height: 330px;
  padding: clamp(26px, 3vw, 38px);
  border-color: rgba(62, 92, 80, 0.14);
  background: rgba(245, 242, 237, 0.5);
  color: #111416;
  display: flex;
  flex-direction: column;
}

.contact-office-card span {
  color: var(--green);
}

.contact-office-card h3 {
  margin: 30px 0 12px;
  font-family: var(--ff-body);
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: #42514f;
}

.contact-office-card p {
  color: rgba(17, 20, 22, 0.76);
  font-size: 15px;
  line-height: 1.72;
  flex: 1;
}

.contact-office-card small {
  display: block;
  margin-top: 22px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-map__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.contact-map__content {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(245, 242, 237, 0.16);
  border-radius: 28px;
  background: rgba(8, 10, 11, 0.28);
  backdrop-filter: blur(18px);
}

.contact-map__content h2 {
  margin: 20px 0 16px;
  font-family: var(--ff-body);
  font-size: clamp(36px, 4.8vw, 72px);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
  color: #f5f4d7;
}

.contact-map__content p {
  color: rgba(245, 242, 237, 0.78);
  font-size: 16px;
  line-height: 1.76;
}

.contact-map__canvas {
  position: relative;
  min-height: clamp(380px, 46vw, 620px);
  border: 1px solid rgba(245, 242, 237, 0.2);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(8, 10, 11, 0.15) 0%, rgba(8, 10, 11, 0.05) 50%, rgba(8, 10, 11, 0.2) 100%),
    url("https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  overflow: hidden;
  box-shadow: 0 34px 96px rgba(8, 10, 11, 0.22);
}

.contact-map__pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #f5f4d7;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 46px rgba(8, 10, 11, 0.28);
  z-index: 2;
}

.contact-map__pin::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 18px;
  height: 18px;
  background: inherit;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 3px;
  z-index: -1;
}

.contact-map__pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c9443e;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(201, 68, 62, 0.25), 0 0 0 8px rgba(201, 68, 62, 0.1);
  animation: contact-pin-pulse 2.4s ease-in-out infinite;
}

@keyframes contact-pin-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201, 68, 62, 0.25), 0 0 0 8px rgba(201, 68, 62, 0.1); }
  50% { box-shadow: 0 0 0 8px rgba(201, 68, 62, 0.2), 0 0 0 16px rgba(201, 68, 62, 0.06); }
}

.contact-map__canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 30%, rgba(8, 10, 11, 0.18) 100%);
  z-index: 1;
  pointer-events: none;
}

.contact-map__pin--uae {
  left: 24%;
  top: 34%;
}

.contact-map__pin--cairo {
  left: 52%;
  top: 50%;
}

.contact-map__pin--capital {
  right: 10%;
  top: 38%;
}

.contact-stats {
  padding: clamp(48px, 6vw, 86px) 0 clamp(72px, 7vw, 110px);
}

body.motion-ready.contact-page .about-inner__title-text {
  transform: translateY(115%);
}

body.motion-ready.contact-page .js-contact-hero-subtitle,
body.motion-ready.contact-page .js-contact-reveal,
body.motion-ready.contact-page .contact-detail-card,
body.motion-ready.contact-page .contact-office-card,
body.motion-ready.contact-page .js-contact-stat {
  opacity: 0;
  transform: translateY(34px);
}

body.motion-ready.contact-page .js-contact-depth {
  opacity: 0;
}

body.motion-ready.contact-page .about-inner__outline {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(30px) scale(0.86);
}

body.motion-ready.contact-page .js-contact-image-reveal {
  clip-path: inset(0 0 100% 0);
}

body.motion-ready.contact-page .js-contact-image-reveal img {
  transform: scale(1.12);
}

@media (max-width: 1100px) {
  .contact-touch__inner,
  .contact-map__panel {
    grid-template-columns: 1fr;
  }

  .contact-detail-grid,
  .contact-office-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section-head {
    display: block;
  }
}

@media (max-width: 768px) {
  .contact-detail-grid,
  .contact-office-grid,
  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-touch,
  .contact-offices {
    padding: 68px 0;
  }

  .contact-story,
  .contact-map {
    min-height: 680px;
  }

  .contact-map__content {
    padding: 24px;
  }

  .contact-map__pin {
    min-width: 78px;
    height: 38px;
    font-size: 10px;
  }
}

/* ── NAV DROPDOWN ──────────────────────────────────────────── */
.hdr-dropdown {
  position: relative;
}

.hdr-dropdown > .hdr-link {
  cursor: default;
}

.hdr-dropdown > .hdr-link::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 5px;
  transition: transform 0.3s var(--ease);
}

.hdr-dropdown:hover > .hdr-link::before {
  transform: rotate(-135deg) translateY(-1px);
}

.hdr-dropdown__menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  padding: 24px 28px;
  background: rgba(8, 10, 11, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(62, 92, 80, 0.18);
  border-radius: 16px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}

.hdr-dropdown:hover .hdr-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.hdr-dropdown__menu::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.hdr-dropdown__group {
  padding: 8px 0;
}

.hdr-dropdown__group + .hdr-dropdown__group {
  border-top: 1px solid rgba(62, 92, 80, 0.14);
  margin-top: 8px;
  padding-top: 16px;
}

.hdr-dropdown__label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 10px;
}

.hdr-dropdown__menu a {
  display: block;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(245, 242, 237, 0.72);
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.hdr-dropdown__menu a:hover {
  color: var(--light);
  transform: translateX(4px);
}

/* Mobile submenu */
.mob-link--parent {
  cursor: pointer;
}

.mob-link__arrow {
  margin-left: auto;
  font-family: var(--ff-body);
  font-size: 20px;
  color: var(--green-light);
  transition: transform 0.35s var(--ease);
}

.mob-link--parent.is-expanded .mob-link__arrow {
  transform: rotate(45deg);
}

.mob-submenu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
  overflow: hidden;
}

.mob-submenu > .mob-submenu__wrap {
  min-height: 0;
  overflow: hidden;
}

.mob-link--parent.is-expanded + .mob-submenu {
  grid-template-rows: 1fr;
}

.mob-submenu__label {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-light);
  padding: 14px 0 6px 48px;
}

.mob-submenu__label:first-child {
  padding-top: 8px;
}

.mob-sublink {
  display: block;
  padding: 10px 0 10px 48px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(245, 242, 237, 0.68);
  border-bottom: 1px solid rgba(62, 92, 80, 0.06);
  transition: color 0.25s var(--ease);
}

.mob-sublink:hover {
  color: var(--light);
}

@media (max-width: 992px) {
  .hdr-dropdown { display: none; }
}

/* ── BREADCRUMBS ───────────────────────────────────────────── */
.breadcrumb {
  position: relative;
  z-index: 2;
  padding: 18px 0 0;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb__list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.5);
}

.breadcrumb__list li + li::before {
  content: '/';
  color: rgba(245, 242, 237, 0.3);
}

.breadcrumb__list a {
  color: rgba(245, 242, 237, 0.6);
  transition: color 0.25s var(--ease);
}

.breadcrumb__list a:hover {
  color: var(--light);
}

.breadcrumb__list li:last-child {
  color: #f5f4d7;
}

/* ── PROJECT CATEGORY PAGE ─────────────────────────────────── */
.project-category-page .header {
  background: rgba(8, 10, 11, 0.18);
}

.project-category-intro,
.project-cat-intro {
  position: relative;
  padding: clamp(56px, 6vw, 96px) 0;
  background: var(--light, #f5f2ed);
  color: var(--dark, #080a0b);
  overflow: hidden;
  text-align: center;
}

.project-category-intro__outline {
  position: absolute;
  left: -4vw;
  top: clamp(24px, 6vw, 84px);
  font-family: var(--ff-body);
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 800;
  line-height: 0.82;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(8, 10, 11, 0.04);
  text-stroke: 1px rgba(8, 10, 11, 0.04);
  pointer-events: none;
  user-select: none;
}

.project-category-intro__head {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}

.project-category-intro__head .section-label {
  margin-bottom: 22px;
}

.project-category-intro__title,
.project-cat-intro__heading {
  font-family: var(--ff-display, 'Playfair Display', serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark, #080a0b);
  margin: 0 auto 18px;
  max-width: 680px;
}

.project-category-intro__text,
.project-cat-intro__text {
  color: rgba(8, 10, 11, 0.62);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.76;
  max-width: 580px;
  margin: 0 auto;
}

.project-category-grid,
.project-cat-grid {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 3vw, 40px) 0 clamp(60px, 8vw, 120px);
}

.project-category-grid,
.project-cat-grid__wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: clamp(22px, 2.6vw, 34px);
}

.project-category-page .about-cta {
  background:
    radial-gradient(circle at 20% 100%, rgba(62, 92, 80, 0.18), transparent 40%),
    linear-gradient(135deg, #1a2e28 0%, #0f1e1a 100%);
  padding: clamp(80px, 10vw, 140px) 0;
}

.project-category-page .about-cta__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.project-category-page .about-cta__title {
  font-family: var(--ff-display, 'Playfair Display', serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--light, #f5f2ed);
  margin: 0 0 20px;
}

.project-category-page .about-cta__text {
  color: rgba(245, 242, 237, 0.75);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  margin: 0 0 36px;
}

.project-category-page .about-cta__btn {
  display: inline-flex;
}

.project-cat-card {
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 40px rgba(8, 10, 11, 0.08);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.project-cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 98px rgba(8, 10, 11, 0.34);
}

.project-cat-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--dark);
}

.project-cat-card__media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease);
}

.project-cat-card:hover .project-cat-card__media img {
  transform: scale(1.08);
}

.project-cat-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 11, 0.06), rgba(8, 10, 11, 0.82)),
    linear-gradient(90deg, rgba(62, 92, 80, 0.42), rgba(8, 10, 11, 0.12));
}

.project-cat-card__body {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 3vw, 42px);
  color: var(--light);
}

.project-cat-card__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(245, 244, 215, 0.38);
  border-radius: 999px;
  color: #f5f4d7;
  background: rgba(245, 244, 215, 0.08);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.project-cat-card__title {
  font-family: var(--ff-body);
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 800;
  line-height: 1.04;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.project-cat-card__desc {
  color: rgba(245, 242, 237, 0.76);
  font-size: 14px;
  line-height: 1.68;
  margin-bottom: 20px;
}

.project-cat-card__link {
  align-self: flex-start;
  color: #f5f4d7;
}

/* ── INDIVIDUAL PROJECT PAGE ───────────────────────────────── */
.project-detail-page .header {
  background: rgba(8, 10, 11, 0.18);
}

.project-overview {
  position: relative;
  padding: clamp(72px, 8vw, 126px) 0;
  background: #f1f4cf;
  color: #111416;
  overflow: hidden;
}

.project-overview__outline {
  position: absolute;
  right: -4vw;
  top: 8%;
  font-family: var(--ff-body);
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 800;
  line-height: 0.82;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(62, 92, 80, 0.06);
  text-stroke: 1px rgba(62, 92, 80, 0.06);
  pointer-events: none;
  user-select: none;
}

.project-overview__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.project-overview__title {
  font-family: var(--ff-body);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
  color: #42514f;
  margin: 0 0 22px;
}

.project-overview__text {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.78;
  color: rgba(17, 20, 22, 0.78);
}

.project-info-grid {
  display: grid;
  gap: 16px;
}

.project-info-card {
  padding: 22px 26px;
  border-radius: 20px;
  border: 1px solid rgba(62, 92, 80, 0.12);
  background: rgba(245, 242, 237, 0.5);
}

.project-info-card__label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.project-info-card__value {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.48;
  color: #111416;
}

.project-features {
  position: relative;
  padding: clamp(72px, 8vw, 126px) 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(62, 92, 80, 0.16), transparent 34%),
    linear-gradient(135deg, #2f413d 0%, #23312f 48%, #142524 100%);
  color: var(--light);
  overflow: hidden;
}

.project-features__title {
  font-family: var(--ff-body);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
  color: #f5f4d7;
  margin: 0 0 clamp(36px, 5vw, 64px);
}

.project-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.project-feature-item {
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(245, 242, 237, 0.1);
  background: rgba(245, 242, 237, 0.06);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.project-feature-item:hover {
  transform: translateY(-4px);
  background: rgba(245, 242, 237, 0.1);
}

.project-feature-item__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 244, 215, 0.12);
  color: #f5f4d7;
  margin-bottom: 16px;
}

.project-feature-item__text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.42;
  color: rgba(245, 242, 237, 0.88);
}

.project-gallery-placeholder {
  padding: clamp(48px, 6vw, 86px) 0;
  background: #f1f4cf;
  text-align: center;
}

.project-gallery-placeholder__box {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px);
  border: 2px dashed rgba(62, 92, 80, 0.2);
  border-radius: 28px;
  color: #42514f;
}

.project-gallery-placeholder__box h3 {
  font-family: var(--ff-body);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.project-gallery-placeholder__box p {
  font-size: 15px;
  color: rgba(17, 20, 22, 0.6);
}

/* Project pillars section */
.project-pillars {
  position: relative;
  padding: clamp(72px, 8vw, 126px) 0;
  background: #f1f4cf;
  color: #111416;
  overflow: hidden;
}

.project-pillars__title {
  font-family: var(--ff-body);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
  color: #42514f;
  margin: 0 0 clamp(36px, 5vw, 64px);
}

.project-pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.project-pillar-card {
  padding: clamp(26px, 3vw, 38px);
  border-radius: 24px;
  border: 1px solid rgba(62, 92, 80, 0.12);
  background: rgba(245, 242, 237, 0.5);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.project-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 68px rgba(8, 10, 11, 0.1);
}

.project-pillar-card h3 {
  font-family: var(--ff-body);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: #42514f;
  margin: 0 0 12px;
}

.project-pillar-card p {
  font-size: 15px;
  line-height: 1.72;
  color: rgba(17, 20, 22, 0.72);
}

/* Animation states for project pages */
body.motion-ready.project-category-page .about-inner__title-text,
body.motion-ready.project-detail-page .about-inner__title-text {
  transform: translateY(115%);
}

body.motion-ready.project-category-page .about-inner__outline,
body.motion-ready.project-detail-page .about-inner__outline,
body.motion-ready.project-category-page .js-about-hero-subtitle,
body.motion-ready.project-detail-page .js-about-hero-subtitle {
  opacity: 0;
}

@media (max-width: 1100px) {
  .project-overview__inner {
    grid-template-columns: 1fr;
  }

  .project-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .project-cat-card {
    min-height: 380px;
    border-radius: 22px;
  }

  .project-features__grid {
    grid-template-columns: 1fr;
  }

  .project-pillars__grid {
    grid-template-columns: 1fr;
  }
}

/* ── ENHANCED PROJECT DETAIL PAGES ──────────────────────────── */

/* Hero category badge */
.project-hero__category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light, #c4d5a3);
  background: rgba(62, 92, 80, 0.35);
  border: 1px solid rgba(196, 213, 163, 0.2);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Project overview section - enhanced */
.project-detail-page .project-overview {
  background: var(--light, #f5f2ed);
  padding: clamp(72px, 8vw, 126px) 0;
}

.project-detail-page .project-overview__header {
  max-width: 800px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.project-detail-page .project-overview__title {
  font-family: var(--ff-body, 'Outfit', sans-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: var(--dark, #080a0b);
  margin: 12px 0 18px;
}

.project-detail-page .project-overview__desc {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.78;
  color: rgba(8, 10, 11, 0.7);
}

/* Enhanced info grid with icons */
.project-detail-page .project-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.project-detail-page .project-info-card {
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid rgba(62, 92, 80, 0.1);
  background: rgba(255, 255, 255, 0.6);
  transition: transform 0.4s var(--ease, ease), box-shadow 0.4s var(--ease, ease);
}

.project-detail-page .project-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(8, 10, 11, 0.08);
}

.project-info-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(62, 92, 80, 0.08);
  color: var(--green, #3e5c50);
  margin-bottom: 14px;
}

.project-info-card__icon svg {
  width: 22px;
  height: 22px;
}

/* Enhanced feature cards */
.project-detail-page .project-feature-card {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(245, 242, 237, 0.1);
  background: rgba(245, 242, 237, 0.06);
  transition: transform 0.4s var(--ease, ease), background 0.4s var(--ease, ease);
}

.project-detail-page .project-feature-card:hover {
  transform: translateY(-4px);
  background: rgba(245, 242, 237, 0.1);
}

.project-feature-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 244, 215, 0.12);
  color: #f5f4d7;
  margin-bottom: 16px;
}

.project-feature-card__icon svg {
  width: 22px;
  height: 22px;
}

.project-detail-page .project-feature-card__title {
  font-family: var(--ff-body, 'Outfit', sans-serif);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  color: rgba(245, 242, 237, 0.95);
}

.project-detail-page .project-feature-card__text {
  font-size: 14px;
  line-height: 1.68;
  color: rgba(245, 242, 237, 0.65);
}

/* Enhanced gallery */
.project-detail-page .project-gallery {
  padding: clamp(48px, 6vw, 86px) 0;
  background: var(--light, #f5f2ed);
}

.project-detail-page .project-gallery__title {
  font-family: var(--ff-body, 'Outfit', sans-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: var(--dark, #080a0b);
  margin: 12px 0 clamp(30px, 4vw, 48px);
}

.project-detail-page .project-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.project-detail-page .project-gallery__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.project-detail-page .project-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease, ease);
}

.project-detail-page .project-gallery__item:hover img {
  transform: scale(1.06);
}

.project-gallery__hover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(8, 10, 11, 0.4);
  opacity: 0;
  transition: opacity 0.35s var(--ease, ease);
}

.project-gallery__hover svg {
  width: 36px;
  height: 36px;
  color: #fff;
}

.project-detail-page .project-gallery__item:hover .project-gallery__hover {
  opacity: 1;
}

/* Lightbox */
.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.project-lightbox.is-open {
  display: flex;
}

.project-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 11, 0.92);
  cursor: pointer;
}

.project-lightbox__img-wrap {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
}

.project-lightbox__img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.project-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(8, 10, 11, 0.5);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.project-lightbox__close:hover {
  background: rgba(62, 92, 80, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
}

.project-lightbox__prev,
.project-lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(8, 10, 11, 0.5);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.project-lightbox__prev { left: 20px; }
.project-lightbox__next { right: 20px; }

.project-lightbox__prev:hover,
.project-lightbox__next:hover {
  background: rgba(62, 92, 80, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
}

.project-lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(8, 10, 11, 0.5);
  padding: 6px 18px;
  border-radius: 100px;
}

/* Building cards enhanced */
.project-buildings {
  padding: clamp(72px, 8vw, 126px) 0;
  background: var(--light, #f5f2ed);
}

.project-buildings__title {
  font-family: var(--ff-body, 'Outfit', sans-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: var(--dark, #080a0b);
  margin: 12px 0 clamp(30px, 4vw, 48px);
}

.project-buildings__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.project-building-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(62, 92, 80, 0.1);
  background: rgba(255, 255, 255, 0.6);
  transition: transform 0.4s var(--ease, ease), box-shadow 0.4s var(--ease, ease);
}

.project-building-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(8, 10, 11, 0.08);
}

.project-building-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(62, 92, 80, 0.1);
}

.project-building-card__name {
  font-family: var(--ff-body, 'Outfit', sans-serif);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark, #080a0b);
  margin: 0;
}

.project-building-card__badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green, #3e5c50);
  background: rgba(62, 92, 80, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
}

.project-building-card__details {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.68;
  color: rgba(8, 10, 11, 0.7);
}

.project-building-card__details li {
  padding: 4px 0;
}

.project-building-card__details strong {
  color: var(--dark, #080a0b);
  font-weight: 600;
}

/* Responsive for enhanced project pages */
@media (max-width: 768px) {
  .project-detail-page .project-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-detail-page .project-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .project-buildings__grid {
    grid-template-columns: 1fr;
  }

  .project-lightbox__prev { left: 8px; }
  .project-lightbox__next { right: 8px; }
}

@media (max-width: 480px) {
  .project-detail-page .project-info-grid {
    grid-template-columns: 1fr;
  }

  .project-detail-page .project-gallery__grid {
    grid-template-columns: 1fr;
  }
}

/* ── CEO Section (About page) ── */
.about-ceo {
  padding: 120px 0;
}

.about-ceo__inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.about-ceo__title {
  font-family: var(--ff-display, 'Playfair Display', serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--light, #f5f2ed);
  margin: 16px 0 32px;
}

.about-ceo__quote {
  margin: 0;
  padding: 0;
  border: none;
}

.about-ceo__quote p {
  font-family: var(--ff-body, 'Outfit', sans-serif);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245, 242, 237, 0.8);
  margin: 0 0 20px;
}

.about-ceo__quote p:last-child {
  margin-bottom: 0;
}

.about-ceo__sign {
  font-family: var(--ff-display, 'Playfair Display', serif);
  font-style: italic;
  font-size: 18px;
  color: var(--green, #3e5c50);
  margin-top: 32px;
}

.about-ceo__portrait {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-ceo__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-ceo {
    padding: 80px 0;
  }

  .about-ceo__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-ceo__portrait {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ── Partners Section (Homepage) ── */
.partners {
  padding: 100px 0;
  background: var(--light, #f5f2ed);
}

.partners__head {
  text-align: center;
  margin-bottom: 60px;
}

.partners__head .section-label {
  justify-content: center;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.partner-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.partner-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  color: var(--green, #3e5c50);
}

.partner-card__icon svg {
  width: 100%;
  height: 100%;
}

.partner-card__name {
  font-family: var(--ff-body, 'Outfit', sans-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark, #080a0b);
  margin: 0 0 8px;
}

.partner-card__role {
  font-family: var(--ff-body, 'DM Sans', sans-serif);
  font-size: 14px;
  color: rgba(8, 10, 11, 0.55);
  margin: 0;
}

@media (max-width: 768px) {
  .partners__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .partner-card {
    padding: 28px 16px;
  }
}

@media (max-width: 480px) {
  .partners__grid {
    grid-template-columns: 1fr;
  }
}
