@charset "UTF-8";

@font-face {
  font-family: "SF Mada";
  src: url("../fonts/SF Mada - [UrduFonts.com].ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* Gotham Book — place Gotham-Book.ttf in assets/fonts/ (copy from your “body text” folder). */
@font-face {
  font-family: "Gotham Book";
  src: url("../fonts/Gotham-Book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --wd-bg: #ffffff;
  --wd-surface: #f8f3f1;
  --wd-text: #241519;
  --wd-muted: #6f5b5e;
  --wd-border: #eadfdb;
  --wd-primary: #531620;
  --wd-primary-dark: #3f1018;
  --wd-primary-soft: #7c2a36;
  --wd-cream: #f4eee8;
  --wd-cream-2: #fbf7f3;
  --wd-gutter: clamp(16px, 4vw, 40px);
  --wd-shell: min(1180px, 100% - (var(--wd-gutter) * 2));
  --wd-radius: 10px;
  --wd-radius-sm: 6px;
  --wd-font: "Gotham Book", "Inter", system-ui, sans-serif;
  --wd-brand: "Gotham Book", "Inter", system-ui, sans-serif;
  --wd-header-h: 60px;
  --wd-safe-top: env(safe-area-inset-top, 0px);
  --wd-safe-bottom: env(safe-area-inset-bottom, 0px);
  --wd-safe-left: env(safe-area-inset-left, 0px);
  --wd-safe-right: env(safe-area-inset-right, 0px);
}

html[lang="ar"] {
  --wd-font: "Segoe UI", Tahoma, Arial, sans-serif;
  --wd-brand: "Segoe UI", Tahoma, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.wd-body.wd-theme-light {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  padding-bottom: var(--wd-safe-bottom);
  background: var(--wd-bg);
  color: var(--wd-text);
  font-family: var(--wd-font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: opacity 0.22s ease;
}

body.wd-body.wd-nav-open {
  overflow: hidden;
}

img,
video,
svg {
  max-width: 100%;
}

.wd-header {
  position: relative;
}

body.wd-body.wd-theme-light > main {
  flex: 1 0 auto;
}

body.wd-body.wd-page-leaving {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body.wd-body.wd-theme-light {
    animation: none;
    transition: none;
  }
}

.wd-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wd-shell {
  width: var(--wd-shell);
  margin-inline: auto;
}

/* ---- Header (clean, white) ---- */
.wd-headwrap--light {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: var(--wd-safe-top);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--wd-border);
  backdrop-filter: blur(8px);
}

.wd-headwrap--light.is-scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.wd-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  min-height: var(--wd-header-h);
}

.wd-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.wd-logo img {
  display: block;
  max-height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.wd-logo__text {
  font-family: var(--wd-brand);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--wd-text);
}

.wd-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius-sm);
  background: #fff;
  cursor: pointer;
}

.wd-nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--wd-text);
}

.wd-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.wd-nav__link {
  color: var(--wd-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.wd-nav__link:hover,
.wd-nav__link.is-active {
  border-bottom-color: var(--wd-text);
}

.wd-lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-inline-start: 8px;
  font-size: 13px;
  font-weight: 600;
}

.wd-lang a {
  color: var(--wd-muted);
  text-decoration: none;
}

.wd-lang a.is-active {
  color: var(--wd-text);
}

.wd-lang__sep {
  color: var(--wd-border);
}

.wd-header__cta {
  margin-inline-start: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--wd-text);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
}

.wd-header__cta:hover {
  opacity: 0.88;
}

@media (max-width: 900px) {
  .wd-nav-toggle {
    display: flex;
  }

  .wd-nav {
    display: none;
    position: absolute;
    inset-inline: max(var(--wd-gutter), calc((100% - var(--wd-shell)) / 2));
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  }

  .wd-nav.is-open {
    display: flex;
  }

  .wd-lang,
  .wd-header__cta {
    margin-inline-start: 0;
  }
}

/* ---- Media listing polish ---- */
.wd-media-page {
  padding-top: clamp(36px, 5vw, 64px);
}

.wd-media-tabs {
  gap: 8px;
  padding: 8px;
  margin-bottom: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(83, 22, 32, 0.12);
  border-radius: 999px;
  background: rgba(248, 243, 241, 0.9);
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 12px 34px rgba(83, 22, 32, 0.06);
}

.wd-media-tab {
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  margin: 0;
  color: var(--wd-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wd-media-tab:hover {
  color: var(--wd-primary);
  background: rgba(83, 22, 32, 0.07);
}

.wd-media-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--wd-primary), var(--wd-primary-soft));
  border: 0;
  box-shadow: 0 10px 24px rgba(83, 22, 32, 0.2);
}

.wd-media-grid {
  gap: clamp(18px, 2vw, 28px);
}

.wd-media-card__link {
  height: 100%;
  border: 1px solid rgba(83, 22, 32, 0.1);
  border-radius: calc(var(--wd-radius) + 4px);
  overflow: hidden;
  background: #fffdfb;
  box-shadow: 0 16px 44px rgba(83, 22, 32, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.wd-media-card__link:hover {
  transform: translateY(-5px);
  border-color: rgba(83, 22, 32, 0.2);
  box-shadow: 0 24px 68px rgba(83, 22, 32, 0.12);
}

.wd-media-card__img {
  margin: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 253, 251, 0.28), transparent 36%),
    linear-gradient(135deg, var(--wd-primary), var(--wd-primary-dark));
}

.wd-media-card__img img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

.wd-media-card__link:hover .wd-media-card__img img {
  transform: scale(1.04);
}

.wd-media-card__date,
.wd-media-card__title,
.wd-media-card__pill {
  margin-inline: 18px;
}

.wd-media-card__date {
  margin-top: 18px;
}

.wd-media-card__title {
  min-height: 3.8em;
  color: var(--wd-text);
}

.wd-media-card__pill {
  margin-bottom: 18px;
  background: var(--wd-surface);
  color: var(--wd-primary);
}

@media (max-width: 640px) {
  .wd-media-tabs {
    width: 100%;
    border-radius: var(--wd-radius);
  }

  .wd-media-tab {
    flex: 1;
    padding-inline: 12px;
  }
}

/* ---- Typography helpers ---- */
.wd-section-title {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.wd-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wd-muted);
}

/* ---- Buttons ---- */
.wd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--wd-radius-sm);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.wd-btn--animated {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}

.wd-btn--animated::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    115deg,
    transparent 28%,
    rgba(255, 255, 255, 0.42) 50%,
    transparent 72%
  );
  transform: translateX(-130%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.wd-btn--animated:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(83, 22, 32, 0.16);
}

.wd-btn--animated.wd-btn--outline-dark:hover {
  background: var(--wd-primary);
  border-color: var(--wd-primary);
  color: #fff;
}

.wd-btn--animated.wd-btn--outline-light:hover {
  background: rgba(255, 253, 251, 0.14);
  border-color: rgba(255, 253, 251, 0.72);
  color: #fffdfb;
}

.wd-btn--animated.wd-btn--navigate:hover {
  background: var(--wd-primary);
  border-color: var(--wd-primary);
  color: #fff;
}

.wd-btn--animated.wd-btn--solid-dark:hover,
.wd-btn--animated.wd-btn--send:hover {
  background: var(--wd-primary-dark);
  border-color: var(--wd-primary-dark);
  color: #fff;
}

.wd-btn--animated:hover::after {
  transform: translateX(130%);
}

.wd-btn--brochure:hover .wd-btn__icon {
  animation: wd-brochure-icon-bounce 0.55s ease;
}

.wd-btn--animated:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(83, 22, 32, 0.12);
}

.wd-btn--animated:focus-visible {
  outline: 2px solid var(--wd-primary);
  outline-offset: 3px;
}

@keyframes wd-brochure-icon-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(4px);
  }

  70% {
    transform: translateY(-1px);
  }
}

.wd-btn--outline-dark {
  border: 1px solid var(--wd-text);
  background: #fff;
  color: var(--wd-text);
}

.wd-btn--solid-dark {
  background: var(--wd-text);
  color: #fff;
}

.wd-btn--navigate {
  border: 1px solid var(--wd-text);
  background: #fff;
  color: var(--wd-text);
  padding: 10px 18px;
  font-size: 13px;
}

.wd-btn__nav-icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
  line-height: 1;
}

.wd-btn__nav-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.wd-btn--send {
  margin-top: 8px;
  padding: 14px 28px;
  border-radius: var(--wd-radius-sm);
}

/* ---- Home ---- */
.wd-home-hero {
  position: relative;
  padding: clamp(64px, 10vw, 118px) 0;
  background-color: var(--wd-surface);
  overflow: hidden;
}

.wd-home-hero--has-bg {
  min-height: clamp(560px, 76vh, 760px);
  display: flex;
  align-items: center;
}

.wd-home-hero--has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 48% at 18% 18%, rgba(255, 255, 255, 0.94), transparent 62%),
    linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
  pointer-events: none;
  z-index: 0;
}

.wd-home-hero--has-bg .wd-home-hero__inner {
  position: relative;
  z-index: 1;
  width: var(--wd-shell);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  padding: clamp(24px, 4vw, 44px) 0;
}

.wd-home-hero__content {
  position: relative;
  z-index: 2;
}

.wd-home-hero__visual {
  position: relative;
  min-height: clamp(360px, 50vh, 560px);
  border-radius: calc(var(--wd-radius) + 14px);
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 2px 5px rgba(10, 10, 10, 0.06),
    0 24px 58px rgba(10, 10, 10, 0.14),
    0 52px 110px rgba(10, 10, 10, 0.12);
  border: 1px solid rgba(10, 10, 10, 0.08);
}

.wd-home-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.58) 0%, transparent 42%),
    linear-gradient(to top, rgba(0, 0, 0, 0.14), transparent 48%);
  pointer-events: none;
}

.wd-home-hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.wd-home-hero__ribbon {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wd-muted);
}

.wd-home-hero__k {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wd-muted);
}

.wd-home-hero__title {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.wd-home-hero__lead {
  margin: 0;
  max-width: 640px;
  color: var(--wd-muted);
  font-size: 1.05rem;
}

.wd-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 760px) {
  .wd-home-hero--has-bg {
    min-height: auto;
  }

  .wd-home-hero--has-bg .wd-home-hero__inner {
    grid-template-columns: 1fr;
  }

  .wd-home-hero__visual {
    min-height: 280px;
    order: -1;
  }
}

.wd-home-about {
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid var(--wd-border);
}

.wd-home-about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

@media (max-width: 800px) {
  .wd-home-about__grid {
    grid-template-columns: 1fr;
  }
}

.wd-home-about__body p {
  margin: 0;
  color: var(--wd-muted);
  font-size: 1.02rem;
}

.wd-home-stats {
  padding: 36px 0 48px;
  background: var(--wd-surface);
  border-block: 1px solid var(--wd-border);
}

.wd-home-stats__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 900px) {
  .wd-home-stats__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.wd-home-stat__num {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
}

.wd-home-stat__label {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--wd-muted);
}

.wd-home-projects {
  padding: clamp(48px, 7vw, 88px) 0 clamp(64px, 10vw, 120px);
}

.wd-home-projects__head {
  margin-bottom: 36px;
  max-width: 720px;
}

.wd-home-projects__lead {
  margin: 12px 0 0;
  color: var(--wd-muted);
}

.wd-home-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 900px) {
  .wd-home-projects__grid {
    grid-template-columns: 1fr;
  }
}

.wd-proj-card {
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s;
}

.wd-proj-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.wd-proj-card__link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.wd-proj-card__media {
  aspect-ratio: 4 / 3;
  background: var(--wd-surface);
}

.wd-proj-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wd-proj-card__body {
  padding: 18px 18px 20px;
}

.wd-proj-card__body h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.wd-proj-card__body p {
  margin: 0;
  font-size: 14px;
  color: var(--wd-muted);
}

.wd-proj-card__actions,
.wd-proj-showcase__actions,
.wd-project-detail__aside-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.wd-proj-card__actions {
  padding: 0 18px 18px;
}

.wd-proj-showcase__actions {
  margin-top: 4px;
}

.wd-project-detail__aside-actions {
  margin-top: clamp(22px, 3vw, 30px);
}

.wd-btn--outline-light {
  border: 1px solid rgba(255, 253, 251, 0.42);
  background: transparent;
  color: #fffdfb;
}

.wd-btn--outline-light:hover {
  background: rgba(255, 253, 251, 0.1);
  color: #fffdfb;
}

.wd-btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

@media (prefers-reduced-motion: reduce) {
  .wd-btn--animated,
  .wd-btn--animated::after,
  .wd-btn--brochure .wd-btn__icon {
    transition: none;
  }

  .wd-btn--animated:hover {
    transform: none;
    box-shadow: none;
  }

  .wd-btn--brochure:hover .wd-btn__icon {
    animation: none;
  }
}

/* ---- Homepage redesign ---- */
.wd-page-home .wd-headwrap--light {
  position: sticky;
  width: 100%;
  background: #48171d;
  border-bottom-color: rgba(255, 253, 251, 0.12);
}

.wd-page-home .wd-headwrap--light.is-scrolled {
  background: #48171d;
  border-bottom-color: rgba(255, 253, 251, 0.12);
}

.wd-page-home main {
  overflow: hidden;
}

.wd-home-hero {
  position: relative;
  min-height: 80vh;
  padding: 0;
  display: flex;
  align-items: stretch;
  background: #1a1a1a;
  isolation: isolate;
  overflow: hidden;
}

.wd-page-home .wd-home-hero.wd-home-hero--video {
  width: 100%;
  height: min(56.25vw, calc(100svh - var(--wd-header-h) - var(--wd-safe-top)));
  min-height: clamp(220px, 56.25vw, calc(100svh - var(--wd-header-h) - var(--wd-safe-top)));
  max-height: none;
  padding: 0;
  margin: 0;
  background: #000;
  overflow: hidden;
}

.wd-home-hero__bg,
.wd-home-hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-position: center;
}

.wd-home-hero__bg {
  object-fit: cover;
  background: #0a0a0a;
  filter: saturate(0.95);
}

.wd-page-home .wd-home-hero--video .wd-home-hero__video {
  display: block;
  object-fit: cover;
  background: #000;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.wd-page-home .wd-home-hero--video .wd-home-hero__video.is-ready {
  opacity: 1;
}

.wd-home-hero__poster {
  z-index: 0;
}

.wd-page-home .wd-home-hero--video .wd-home-hero__shade {
  display: none !important;
}

.wd-home-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.wd-page-home .wd-home-hero--image .wd-home-hero__shade {
  background: linear-gradient(
    90deg,
    rgba(255, 253, 251, 0.78) 0%,
    rgba(255, 253, 251, 0.42) 38%,
    rgba(255, 253, 251, 0.12) 58%,
    transparent 72%
  );
}

.wd-home-hero__inner {
  position: relative;
  z-index: 2;
  width: var(--wd-shell);
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding:
    clamp(88px, 12.8vw, 152px)
    clamp(19px, 3.2vw, 51px)
    clamp(38px, 5.6vw, 66px);
}

.wd-home-hero__copy {
  max-width: min(760px, 100%);
}

.wd-home-hero__ribbon {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.wd-page-home .wd-home-hero--image .wd-home-hero__ribbon,
.wd-page-home .wd-home-hero--image .wd-home-hero__title,
.wd-page-home .wd-home-hero--image .wd-home-hero__lead {
  color: var(--wd-primary);
}

.wd-home-hero__title {
  margin: 0;
  max-width: 980px;
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.94;
  text-transform: none;
}

.wd-home-hero__lead {
  margin: 22px 0 0;
  max-width: 680px;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
}

.wd-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.wd-home-intro {
  position: relative;
  padding: clamp(70px, 9vw, 118px) 0;
  background: #fff;
}

.wd-home-intro__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.35fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: start;
}

.wd-home-intro__title h2,
.wd-home-section-head h2,
.wd-home-finder h2,
.wd-home-partners h2,
.wd-home-partners__title {
  margin: 0;
  font-size: clamp(28px, 3.7vw, 52px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.wd-home-intro__title .wd-btn {
  margin-top: 24px;
}

.wd-home-intro__body {
  display: grid;
  gap: 28px;
}

.wd-home-intro__body > p {
  margin: 0;
  max-width: 680px;
  color: var(--wd-muted);
  font-size: clamp(15px, 1.25vw, 18px);
}

.wd-home-intro__body .wd-home-stats {
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.wd-home-stat {
  padding-top: 22px;
  border-top: 1px solid var(--wd-border);
}

.wd-home-stat__num {
  color: #8a4a4f;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.wd-home-stat__label {
  margin: 8px 0 0;
  color: var(--wd-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wd-home-segments {
  background: #fff;
}

.wd-home-segments--pre-footer {
  border-top: 1px solid var(--wd-border);
}

.wd-home-segments__strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: clamp(420px, 58vh, 640px);
  overflow-x: auto;
  scrollbar-width: none;
}

.wd-home-segments__strip::-webkit-scrollbar {
  display: none;
}

.wd-home-segment {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  isolation: isolate;
}

.wd-home-segment::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent 58%);
  pointer-events: none;
}

.wd-home-segment img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.wd-home-segment:hover img {
  transform: scale(1.05);
}

.wd-home-segment .wd-proj-card__body {
  inset-inline: clamp(22px, 2.8vw, 32px);
  bottom: clamp(20px, 2.6vw, 28px);
}

.wd-home-segment .wd-proj-card__body h3 {
  font-size: clamp(20px, 2.4vw, 32px);
}

a.wd-home-segment--link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a.wd-home-segment--link:focus-visible {
  outline: 2px solid var(--wd-primary);
  outline-offset: 3px;
}

/* East / West branded covers — full width, natural height, no crop */
.wd-home-segments__strip:has(.wd-home-segment--brand-cover) {
  min-height: 0;
  align-items: start;
  overflow-x: visible;
}

.wd-home-segment--brand-cover {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
}

.wd-home-segment--brand-cover::after {
  display: none;
}

.wd-home-segment--brand-cover > picture,
.wd-home-segment--brand-cover img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  max-height: none;
  min-height: 0;
  object-fit: unset;
}

.wd-home-segment--brand-cover:hover img {
  transform: none;
}

.wd-proj-card--brand-cover .wd-proj-card__media {
  aspect-ratio: auto;
  min-height: 0;
  padding: 0;
  line-height: 0;
}

.wd-proj-card--brand-cover .wd-proj-card__media::after {
  display: none;
}

.wd-proj-card--brand-cover .wd-proj-card__media picture,
.wd-proj-card--brand-cover .wd-proj-card__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: unset;
}

.wd-proj-card--brand-cover:hover .wd-proj-card__media img {
  transform: none;
}

.wd-proj-card--brand-cover .wd-proj-card__body {
  position: static;
  inset: auto;
  padding: 14px 18px 18px;
  line-height: 1.35;
  color: var(--wd-text);
}

.wd-proj-card--brand-cover .wd-proj-card__body h3 {
  color: var(--wd-primary);
}

.wd-proj-showcase--brand-cover {
  min-height: 0;
}

.wd-proj-showcase--brand-cover .wd-proj-showcase__media {
  display: block;
  min-height: 0;
  padding: 0;
  line-height: 0;
}

.wd-proj-showcase--brand-cover .wd-proj-showcase__media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: unset;
}

.wd-projects-page .wd-proj-showcase--brand-cover {
  min-height: 0;
}

.wd-projects-page .wd-proj-showcase--brand-cover .wd-proj-showcase__media {
  min-height: 0;
}

.wd-projects-page .wd-proj-showcase--brand-cover .wd-proj-showcase__media img {
  height: auto;
  min-height: 0;
  object-fit: unset;
}

@media (max-width: 900px) {
  .wd-projects-page .wd-proj-showcase--brand-cover .wd-proj-showcase__media img,
  .wd-projects-page .wd-proj-showcase--brand-cover .wd-proj-showcase__placeholder {
    min-height: 0;
    max-height: none;
  }
}

@media (max-width: 560px) {
  .wd-home-segments__strip:has(.wd-home-segment--brand-cover) {
    grid-template-columns: 1fr;
  }
}

.wd-home-finder {
  padding: clamp(54px, 7vw, 88px) 0;
  background: #f0f0f1;
  text-align: center;
}

.wd-home-finder__card {
  padding: clamp(26px, 4vw, 42px);
  background: #fff;
  box-shadow: 0 18px 58px rgba(10, 10, 10, 0.06);
}

.wd-home-finder__tabs {
  display: flex;
  gap: 22px;
  margin: 28px 0 18px;
  color: var(--wd-muted);
  font-size: 13px;
  font-weight: 700;
}

.wd-home-finder__tabs .is-active {
  color: #8a4a4f;
}

.wd-home-finder__form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
}

.wd-home-finder__form select,
.wd-home-finder__form button {
  min-height: 48px;
  border-radius: var(--wd-radius-sm);
  font: inherit;
  font-size: 13px;
}

.wd-home-finder__form select {
  border: 1px solid var(--wd-border);
  padding: 0 14px;
  color: var(--wd-muted);
  background: var(--wd-surface);
}

.wd-home-finder__form button {
  border: 0;
  padding: 0 22px;
  background: var(--wd-text);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.wd-home-projects,
.wd-home-media {
  padding: clamp(70px, 9vw, 118px) 0;
  background: #fff;
}

.wd-home-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.wd-home-section-head--stacked {
  display: block;
  max-width: 720px;
}

.wd-home-section-head a {
  color: var(--wd-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.wd-home-projects__grid,
.wd-home-media__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wd-proj-card {
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
}

.wd-proj-card:hover {
  box-shadow: none;
}

.wd-proj-card__link {
  position: relative;
  color: inherit;
  text-decoration: none;
  display: block;
}

.wd-proj-card__media {
  position: relative;
  aspect-ratio: 1.22 / 1;
  background: var(--wd-surface);
  overflow: hidden;
}

.wd-proj-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent 58%);
}

.wd-proj-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.wd-proj-card:hover .wd-proj-card__media img {
  transform: scale(1.045);
}

.wd-proj-card__body {
  position: absolute;
  inset-inline: 22px;
  bottom: 20px;
  z-index: 2;
  padding: 0;
  color: #fff;
}

.wd-proj-card__body h3 {
  margin: 0 0 4px;
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: -0.04em;
}

.wd-proj-card__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.wd-home-partners {
  padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 9vw, 110px);
  background: linear-gradient(180deg, var(--wd-cream-2) 0%, #fff 100%);
  border-top: 1px solid var(--wd-border);
}

.wd-home-partners--under-about.wd-home-partners--centered {
  margin-top: clamp(40px, 5vw, 64px);
  padding: 0;
  background: transparent;
  border: none;
  text-align: center;
}

.wd-home-partners__brand {
  display: flex;
  justify-content: center;
  margin: 0 0 clamp(28px, 4vw, 48px);
  background: transparent;
}

.wd-home-partners__brand-link {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: opacity 0.25s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.wd-home-partners__brand-link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.wd-home-partners__brand-logo,
.wd-home-partners__brand img,
.wd-home-partners__brand picture {
  display: block;
  background: transparent;
}

.wd-home-partners__brand-logo,
.wd-home-partners__brand img {
  width: auto;
  max-width: min(92vw, 560px);
  height: auto;
  max-height: clamp(100px, 18vw, 180px);
  object-fit: contain;
}

.wd-home-partners--carousel .wd-home-partners__carousel {
  margin-top: clamp(8px, 1.5vw, 16px);
}

.wd-home-partners__viewport {
  overflow: hidden;
  max-width: min(100%, 1280px);
  margin-inline: auto;
  padding: clamp(24px, 3.5vw, 40px) 0;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.wd-home-partners__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(56px, 9vw, 112px);
  width: max-content;
  animation: wd-partners-marquee 20s linear infinite;
  will-change: transform;
}

.wd-home-partners--carousel .wd-home-partner--slide {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}

.wd-home-partners--carousel .wd-home-partner__tile {
  min-height: clamp(120px, 18vw, 200px);
  min-width: clamp(220px, 32vw, 380px);
  padding: clamp(12px, 2vw, 20px);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.wd-home-partners--carousel .wd-home-partner__tile::after {
  display: none;
}

.wd-home-partners--carousel .wd-home-partner__tile:hover {
  background: transparent;
  border: none;
  box-shadow: none;
}

.wd-home-partners--carousel .wd-home-partner__tile img {
  max-width: min(100%, 400px);
  max-height: clamp(100px, 18vw, 200px);
  width: auto;
  height: auto;
  transform: scale(1.08);
  transform-origin: center center;
  filter: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.wd-home-partners--carousel .wd-home-partner__tile:hover img {
  transform: scale(1.28);
  filter: none;
}

@keyframes wd-partners-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wd-home-partners__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 920px;
    gap: clamp(20px, 4vw, 32px);
  }

  .wd-home-partners__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .wd-home-partners--carousel .wd-home-partner--slide:nth-child(n + 4) {
    display: none;
  }
}

.wd-home-partners__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.wd-home-partners__head .wd-eyebrow {
  margin-bottom: 12px;
}

.wd-home-partners__grid {
  list-style: none;
  margin: 0;
  padding: clamp(28px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 168px), 1fr));
  gap: clamp(16px, 2.4vw, 24px);
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--wd-border);
  border-radius: calc(var(--wd-radius) + 6px);
  box-shadow: 0 22px 60px rgba(83, 22, 32, 0.07);
}

.wd-home-partner {
  margin: 0;
  padding: 0;
}

.wd-home-partner__tile {
  margin: 0;
  min-height: clamp(96px, 12vw, 120px);
  padding: clamp(18px, 2.5vw, 26px);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  border: 1px solid var(--wd-text);
  border-radius: var(--wd-radius);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.28s ease,
    border-color 0.28s ease;
}

.wd-home-partner__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    115deg,
    transparent 28%,
    rgba(255, 255, 255, 0.42) 50%,
    transparent 72%
  );
  transform: translateX(-130%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.wd-home-partner__tile:hover {
  transform: translateY(-2px);
  background: var(--wd-primary);
  border-color: var(--wd-primary);
  box-shadow: 0 12px 28px rgba(83, 22, 32, 0.16);
}

.wd-home-partner__tile:hover::after {
  transform: translateX(130%);
}

.wd-home-partner__tile img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: min(100%, 150px);
  max-height: 52px;
  object-fit: contain;
  filter: grayscale(0.15);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.28s ease;
}

.wd-home-partner__tile:hover img {
  transform: scale(1.12);
  filter: brightness(0) invert(1);
}

.wd-home-partner__fallback {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--wd-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.wd-home-cta-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: clamp(260px, 34vw, 420px);
}

.wd-home-cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(30px, 6vw, 70px);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}

.wd-home-cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.16));
}

.wd-home-cta-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.wd-home-cta-card:hover img {
  transform: scale(1.045);
}

.wd-home-cta-card span,
.wd-home-cta-card b {
  position: relative;
  z-index: 2;
}

.wd-home-cta-card span {
  max-width: 540px;
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.wd-home-cta-card b {
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--wd-text);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.wd-home-news-card a {
  display: grid;
  color: inherit;
  text-decoration: none;
}

.wd-home-news-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
}

.wd-home-news-card time {
  color: var(--wd-muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.wd-home-news-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.35;
}

.wd-home-news-card span {
  width: fit-content;
  padding: 5px 8px;
  background: var(--wd-surface);
  color: var(--wd-muted);
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .wd-home-intro__grid {
    grid-template-columns: 1fr;
  }

  .wd-home-intro__body .wd-home-stats,
  .wd-home-projects__grid,
  .wd-home-media__grid,
  .wd-home-finder__form,
  .wd-home-cta-split {
    grid-template-columns: 1fr;
  }

  .wd-home-segments__strip:not(:has(.wd-home-segment--brand-cover)) {
    grid-template-columns: repeat(2, minmax(260px, 72vw));
  }
}

/* ---- Contact page ---- */
.wd-contact-map {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--wd-border);
  background: #e8ecef;
}

.wd-contact-map__frame {
  display: block;
  width: 100%;
  height: min(52vh, 420px);
  border: 0;
}

.wd-contact-map__image {
  display: block;
  width: 100%;
  height: min(72vh, 600px);
  object-fit: cover;
  object-position: center 40%;
}

.wd-contact-map--placeholder .wd-contact-map__placeholder {
  display: block;
  width: 100%;
  height: min(42vh, 360px);
  object-fit: cover;
  object-position: center 20%;
}

.wd-contact-page {
  padding: clamp(40px, 6vw, 72px) 0 clamp(64px, 10vw, 100px);
  background: #fff;
}

.wd-contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

@media (max-width: 900px) {
  .wd-contact-page__grid {
    grid-template-columns: 1fr;
  }
}

.wd-contact-page__aside {
  position: sticky;
  top: calc(var(--wd-header-h, 72px) + 20px);
}

@media (max-width: 900px) {
  .wd-contact-page__aside {
    position: static;
  }
}

.wd-office-block {
  padding: 22px 22px 20px;
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius);
  background: #fafafa;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
}

.wd-office-block + .wd-office-block {
  margin-top: 18px;
}

.wd-office-block__title {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wd-text);
}

.wd-office-block__addr {
  margin: 0 0 16px;
  color: var(--wd-muted);
  font-size: 15px;
  line-height: 1.65;
}

.wd-btn--navigate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.wd-contact-connect {
  margin-top: 24px;
  padding: 22px;
  border-radius: var(--wd-radius);
  border: 1px solid var(--wd-border);
  background: #fff;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
}

.wd-contact-phone-block,
.wd-contact-email-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.wd-contact-email-block {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--wd-border);
}

.wd-contact-phone-block__icon,
.wd-contact-email-block__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wd-surface);
  line-height: 1;
}

.wd-contact-phone-block__icon svg,
.wd-contact-email-block__icon svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: var(--wd-primary);
}

.wd-contact-phone-block__label,
.wd-contact-email-block__label {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wd-muted);
}

.wd-contact-phone-block__num,
.wd-contact-email-block__addr {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--wd-text);
  text-decoration: none;
  line-height: 1.2;
}

.wd-contact-phone-block__num {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

.wd-contact-email-block__addr {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  word-break: break-word;
}

.wd-contact-phone-block__num:hover,
.wd-contact-email-block__addr:hover {
  text-decoration: underline;
}

.wd-contact-page__form-wrap {
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--wd-border);
  border-radius: calc(var(--wd-radius) + 4px);
  background: #fff;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.wd-contact-form-title {
  margin: 0 0 28px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wd-cursor-bar {
  animation: wd-blink 1s step-end infinite;
  margin-inline-start: 2px;
}

@keyframes wd-blink {
  50% {
    opacity: 0;
  }
}

.wd-contact-form__grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

@media (max-width: 600px) {
  .wd-contact-form__grid2 {
    grid-template-columns: 1fr;
  }
}

.wd-field {
  display: block;
  margin-bottom: 16px;
}

.wd-field__label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wd-field input,
.wd-field textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid rgba(83, 22, 32, 0.16);
  border-radius: var(--wd-radius-sm);
  background: rgba(248, 243, 241, 0.82);
  font-family: inherit;
  font-size: 15px;
  color: var(--wd-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wd-contact-form .wd-field input:focus,
.wd-contact-form .wd-field textarea:focus {
  outline: none;
  border-color: rgba(83, 22, 32, 0.48);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(83, 22, 32, 0.08);
}

.wd-field textarea {
  resize: vertical;
  min-height: 140px;
}

.wd-field input::placeholder,
.wd-field textarea::placeholder {
  color: #9a9a9a;
}

.wd-form__status {
  margin-top: 12px;
  font-size: 14px;
  color: var(--wd-muted);
}

.wd-form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Media listing ---- */
.wd-media-page {
  padding: clamp(28px, 4vw, 48px) 0 clamp(64px, 10vw, 100px);
}

.wd-back-link {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--wd-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.wd-back-link:hover {
  text-decoration: underline;
}

.wd-back-link--light {
  color: rgba(255, 253, 251, 0.86);
}

.wd-media-tabs {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid var(--wd-border);
  margin-bottom: 36px;
}

.wd-media-tab {
  background: none;
  border: none;
  padding: 12px 0;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  color: var(--wd-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.wd-media-tab.is-active {
  color: var(--wd-text);
  border-bottom-color: var(--wd-text);
}

.wd-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

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

.wd-media-card[data-category] {
  transition: opacity 0.25s;
}

.wd-media-card.is-hidden {
  display: none;
}

.wd-media-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.wd-media-card__img {
  border-radius: var(--wd-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--wd-surface);
  margin-bottom: 12px;
}

.wd-media-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wd-media-card__date {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--wd-muted);
}

.wd-media-card__title {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

.wd-media-card__pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--wd-surface);
  color: var(--wd-muted);
}

/* ---- Media post ---- */
.wd-post-page {
  padding: clamp(28px, 4vw, 48px) 0 clamp(72px, 12vw, 120px);
}

.wd-post-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

@media (max-width: 900px) {
  .wd-post-layout {
    grid-template-columns: 1fr;
  }
}

.wd-post-page__pill {
  margin-bottom: 16px;
}

.wd-post-page__title {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.15;
}

.wd-post-page__meta {
  margin: 0 0 22px;
  font-size: 14px;
  color: var(--wd-muted);
}

.wd-post-page__body {
  color: var(--wd-text);
  font-size: 1.02rem;
}

.wd-carousel {
  position: relative;
}

.wd-carousel__slides {
  position: relative;
  border-radius: var(--wd-radius);
  overflow: hidden;
  background: var(--wd-surface);
  aspect-ratio: 4 / 3;
}

.wd-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.wd-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.wd-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wd-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.wd-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #c8c8c8;
  cursor: pointer;
}

.wd-carousel__dot.is-active {
  background: var(--wd-text);
}

/* ---- Footer ---- */
.wd-footer--dark {
  flex-shrink: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, var(--wd-primary-dark) 0%, var(--wd-primary) 100%);
  color: #fbf7f3;
  padding: 40px 0 28px;
}

.wd-footer--dark .wd-footer__heading {
  color: #fff;
}

.wd-footer--dark .wd-footer__list,
.wd-footer--dark .wd-footer__bar,
.wd-footer--dark .wd-footer__rights {
  color: rgba(251, 247, 243, 0.78);
}

.wd-footer--dark .wd-footer__soc {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
}

.wd-footer--dark .wd-footer__soc:hover {
  background: #fff;
  border-color: #fff;
  color: var(--wd-primary);
  transform: translateY(-2px);
}

.wd-footer--dark .wd-footer__soc:focus-visible {
  outline-color: #fff;
}

.wd-footer__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 32px;
}

@media (max-width: 800px) {
  .wd-footer__row {
    grid-template-columns: 1fr;
  }
}

.wd-footer__heading {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wd-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--wd-muted);
  font-size: 14px;
}

.wd-footer__list li + li {
  margin-top: 8px;
}

.wd-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--wd-muted);
}

.wd-footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wd-footer__soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--wd-border);
  border-radius: 50%;
  background: #fff;
  color: var(--wd-text);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.wd-footer__soc:hover {
  background: var(--wd-text);
  color: #fff;
  border-color: var(--wd-text);
  transform: translateY(-2px);
}

.wd-footer__soc:focus-visible {
  outline: 2px solid var(--wd-text);
  outline-offset: 3px;
}

.wd-icon-soc {
  display: block;
  width: 18px;
  height: 18px;
}

html[dir="rtl"] .wd-media-tabs {
  flex-direction: row-reverse;
}
/* About + Projects pages */
.wd-rule {
  display: block;
  width: 48px;
  height: 0;
  border: none;
  border-top: 2px solid var(--wd-primary);
  margin: 10px 0 18px;
  margin-inline-start: 0;
  margin-inline-end: auto;
}

.wd-page-intro {
  padding: clamp(32px, 5vw, 56px) 0 clamp(24px, 4vw, 40px);
}

/* Projects listing: no back-to-home link */
.wd-page-projects .wd-page-intro .wd-back-link {
  display: none !important;
}

.wd-page-intro__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 720px;
}

.wd-page-intro__lead {
  margin: 0;
  max-width: 640px;
  color: var(--wd-muted);
}

/* About hero */
.wd-about-hero {
  position: relative;
  min-height: clamp(520px, 78dvh, 760px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-color: var(--wd-surface);
  background-image:
    radial-gradient(circle at 78% 20%, rgba(255, 253, 251, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(72, 22, 31, 0.84), rgba(32, 14, 18, 0.56)),
    var(--about-hero-img, none);
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
}

.wd-about-hero:not(.wd-about-hero--photo)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(26, 12, 15, 0.82) 0%, rgba(44, 20, 25, 0.66) 38%, rgba(44, 20, 25, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 253, 251, 0.04) 0%, rgba(255, 253, 251, 0) 22%, rgba(15, 8, 10, 0.28) 100%);
  pointer-events: none;
}

.wd-about-hero::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -80px;
  width: clamp(260px, 32vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 253, 251, 0.18) 0%, rgba(255, 253, 251, 0.02) 58%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.wd-about-hero__inner {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  width: min(56%, 720px);
  max-width: 720px;
  margin-inline-start: max(var(--wd-gutter), clamp(40px, 5vw, 120px));
  margin-inline-end: auto;
  padding:
    calc(clamp(88px, 12vw, 148px) + var(--wd-safe-top))
    0
    clamp(64px, 8vw, 108px);
  text-align: start;
}

.wd-page-about .wd-about-hero:not(.wd-about-hero--photo) .wd-about-hero__inner {
  width: calc(100% - (clamp(56px, 6vw, 120px) * 2));
  max-width: none;
  margin-inline: auto;
}

.wd-about-hero__k {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 244, 238, 0.88);
}

.wd-about-hero__title {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(36px, 5.2vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: #fffdfb;
  text-wrap: balance;
}

.wd-about-hero__body {
  margin: 28px 0 0;
  max-width: 42ch;
  color: rgba(255, 248, 244, 0.84);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.72;
}

/* Photo hero — mobile: cream slice of image behind text (no building, no blur) */
.wd-page-about .wd-about-hero--photo {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  background: #f1e8d5;
  overflow: hidden;
}

.wd-about-hero--photo::before {
  display: none;
}

.wd-about-hero__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #f1e8d5;
}

.wd-about-hero__visual::after {
  display: none;
}

.wd-about-hero--photo .wd-about-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 24% 42%;
  transform: scale(3);
  transform-origin: 24% 42%;
}

.wd-about-hero--photo .wd-about-hero__shade {
  display: none;
}

.wd-page-about .wd-about-hero--photo .wd-about-hero__inner {
  position: relative;
  z-index: 2;
  inset: auto;
  width: auto;
  max-width: none;
  max-height: none;
  margin: 0;
  padding:
    calc(var(--wd-header-h) + clamp(24px, 5vw, 40px) + var(--wd-safe-top))
    clamp(20px, 5vw, var(--wd-gutter))
    clamp(36px, 7vw, 52px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  text-align: start;
}

.wd-page-about .wd-about-hero--photo .wd-about-hero__k {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: var(--wd-primary-soft);
  text-shadow: none;
}

.wd-page-about .wd-about-hero--photo .wd-about-hero__title {
  margin: 0;
  max-width: 100%;
  color: var(--wd-primary);
  font-weight: 800;
  font-size: clamp(28px, 7.2vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: none;
}

.wd-page-about .wd-about-hero--photo .wd-about-hero__body {
  margin: 16px 0 0;
  max-width: none;
  color: rgba(63, 16, 24, 0.88);
  font-size: clamp(14px, 3.8vw, 16px);
  line-height: 1.68;
  text-shadow: none;
}

/* Photo hero — desktop: full-width overlay */
@media (min-width: 761px) {
  .wd-page-about .wd-about-hero--photo {
    position: relative;
    display: block;
    width: 100%;
    height: clamp(420px, 56.25vw, min(82dvh, 880px));
    min-height: 420px;
    aspect-ratio: unset;
    max-height: none;
    background: #ebe4db;
  }

  .wd-about-hero--photo .wd-about-hero__visual {
    display: block;
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    max-height: none;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    background: #ebe4db;
  }

  .wd-about-hero--photo .wd-about-hero__visual::after {
    display: none;
  }

  .wd-about-hero--photo .wd-about-hero__bg {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    object-position: 72% 42%;
    transform: none;
    transform-origin: center;
  }

  .wd-about-hero--photo .wd-about-hero__shade {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      to inline-start,
      rgba(255, 253, 251, 0.94) 0%,
      rgba(255, 253, 251, 0.62) 30%,
      rgba(255, 253, 251, 0.12) 48%,
      transparent 64%
    );
  }

  .wd-page-about .wd-about-hero--photo .wd-about-hero__inner {
    position: relative;
    inset: auto;
    width: min(48%, 680px);
    max-width: 680px;
    margin-inline-start: max(var(--wd-gutter), clamp(32px, 4vw, 96px));
    margin-inline-end: auto;
    padding:
      calc(var(--wd-header-h) + clamp(24px, 3vw, 40px) + var(--wd-safe-top))
      0
      clamp(48px, 6vw, 72px);
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  .wd-page-about .wd-about-hero--photo .wd-about-hero__k {
    text-shadow:
      0 1px 0 rgba(255, 253, 251, 0.95),
      0 2px 10px rgba(83, 22, 32, 0.14);
  }

  .wd-page-about .wd-about-hero--photo .wd-about-hero__title {
    max-width: 14ch;
    font-size: clamp(36px, 5.2vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    text-shadow:
      0 1px 0 rgba(255, 253, 251, 1),
      0 2px 0 rgba(255, 248, 244, 0.55),
      0 6px 18px rgba(83, 22, 32, 0.16);
  }

  .wd-page-about .wd-about-hero--photo .wd-about-hero__body {
    margin-top: 28px;
    max-width: 42ch;
    font-size: clamp(15px, 1.25vw, 19px);
    line-height: 1.72;
    text-shadow:
      0 1px 0 rgba(255, 253, 251, 0.9),
      0 3px 14px rgba(83, 22, 32, 0.12);
  }

  html[dir="rtl"] .wd-page-about .wd-about-hero--photo .wd-about-hero__bg,
  html[lang="ar"] .wd-page-about .wd-about-hero--photo .wd-about-hero__bg {
    transform: scaleX(-1);
    object-position: 72% center;
  }
}

@media (max-width: 760px) {
  .wd-about-hero {
    min-height: 0;
    align-items: stretch;
    justify-content: flex-start;
  }

  .wd-about-hero:not(.wd-about-hero--photo)::after {
    background:
      linear-gradient(180deg, rgba(44, 20, 25, 0.24) 0%, rgba(44, 20, 25, 0.72) 42%, rgba(26, 12, 15, 0.9) 100%);
  }

  .wd-about-hero:not(.wd-about-hero--photo) {
    min-height: clamp(480px, 78dvh, 640px);
    align-items: flex-end;
  }

  .wd-about-hero--photo .wd-about-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 24% 42%;
    transform: scale(3);
    transform-origin: 24% 42%;
  }

  html[dir="rtl"] .wd-page-about .wd-about-hero--photo .wd-about-hero__bg,
  html[lang="ar"] .wd-page-about .wd-about-hero--photo .wd-about-hero__bg {
    transform: scale(3);
    transform-origin: 24% 42%;
    object-position: 24% 42%;
  }

  html[dir="rtl"] .wd-page-about .wd-about-hero--photo .wd-about-hero__k,
  html[lang="ar"] .wd-page-about .wd-about-hero--photo .wd-about-hero__k {
    letter-spacing: 0;
  }

  html[dir="rtl"] .wd-page-about .wd-about-hero--photo .wd-about-hero__title,
  html[lang="ar"] .wd-page-about .wd-about-hero--photo .wd-about-hero__title {
    letter-spacing: 0;
    line-height: 1.18;
  }
}

@media (max-width: 1280px) and (min-width: 761px) {
  .wd-page-about .wd-about-hero--photo .wd-about-hero__inner {
    width: min(52%, 640px);
  }
}

@media (max-width: 1024px) and (min-width: 761px) {
  .wd-page-about .wd-about-hero--photo .wd-about-hero__inner {
    width: min(58%, 580px);
  }

  .wd-page-about .wd-about-hero--photo .wd-about-hero__title {
    max-width: 12ch;
    font-size: clamp(32px, 4.8vw, 56px);
  }
}

@media (max-height: 720px) and (min-width: 761px) {
  .wd-page-about .wd-about-hero--photo {
    height: clamp(380px, 88dvh, 640px);
  }

  .wd-page-about .wd-about-hero--photo .wd-about-hero__inner {
    padding-top: calc(var(--wd-header-h) + 16px + var(--wd-safe-top));
    padding-bottom: clamp(28px, 5vw, 44px);
  }
}

/* Strengths */
.wd-about-cap {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 9vw, 112px) 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf8 58%, var(--wd-cream-2) 100%);
}

.wd-about-cap::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(83, 22, 32, 0.18), transparent);
  pointer-events: none;
}

.wd-about-cap__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.wd-about-cap__head {
  position: sticky;
  top: 96px;
  padding-inline-start: clamp(18px, 2vw, 26px);
  border-inline-start: 3px solid var(--wd-primary);
  text-align: start;
}

.wd-about-cap__head .wd-section-title {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.12;
}

@media (max-width: 900px) {
  .wd-about-cap__grid {
    grid-template-columns: 1fr;
  }

  .wd-about-cap__head {
    position: static;
  }
}

.wd-about-cap__items {
  counter-reset: wd-strength;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid rgba(83, 22, 32, 0.12);
  border-radius: var(--wd-radius-sm);
  overflow: hidden;
  background: rgba(83, 22, 32, 0.12);
  box-shadow: 0 24px 70px rgba(36, 21, 25, 0.07);
}

@media (max-width: 640px) {
  .wd-about-cap__items {
    grid-template-columns: 1fr;
  }
}

.wd-about-cap__item {
  counter-increment: wd-strength;
  position: relative;
  min-height: 238px;
  padding: 76px clamp(20px, 2.6vw, 30px) clamp(22px, 3vw, 30px);
  text-align: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 251, 0.94));
  transition: background 0.22s ease, transform 0.22s ease;
}

.wd-about-cap__item::before {
  content: counter(wd-strength, decimal-leading-zero);
  position: absolute;
  top: 24px;
  inset-inline-start: clamp(20px, 2.6vw, 30px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(83, 22, 32, 0.16);
  border-radius: 50%;
  background: #fff;
  color: var(--wd-primary);
  font-size: 0.78rem;
  font-weight: 700;
}

.wd-about-cap__item:hover {
  transform: translateY(-2px);
  background: #fff;
}

.wd-about-cap__item h3 {
  margin: 0 0 12px;
  color: var(--wd-text);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.2;
  font-weight: 700;
}

.wd-about-cap__item p {
  margin: 0;
  color: var(--wd-muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

@media (max-width: 640px) {
  .wd-about-cap__item {
    min-height: 0;
    padding: 72px 20px 24px;
  }
}

/* VMV strip — vision / mission / values */
.wd-about-vmv {
  position: relative;
  --vmv-panel-w: min(86vw, 640px);
  padding: clamp(48px, 7vw, 88px) 0 clamp(32px, 5vw, 56px);
  background: linear-gradient(180deg, #f3f3f3 0%, #fafafa 45%, #fff 100%);
  overflow: visible;
}

.wd-about-vmv::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(10, 10, 10, 0.04), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(10, 10, 10, 0.03), transparent 50%);
  pointer-events: none;
}

.wd-about-vmv__track {
  position: relative;
  z-index: 1;
  display: flex;
  direction: ltr;
  gap: clamp(14px, 2vw, 22px);
  padding-block: clamp(24px, 4vw, 46px) clamp(50px, 6vw, 78px);
  padding-inline: max(20px, calc((100vw - var(--vmv-panel-w)) / 2));
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(20px, calc((100vw - var(--vmv-panel-w)) / 2));
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.wd-about-vmv__track::-webkit-scrollbar {
  display: none;
}

.wd-about-vmv__panel {
  position: relative;
  flex: 0 0 var(--vmv-panel-w);
  scroll-snap-align: center;
  min-height: clamp(390px, 48vh, 500px);
  border-radius: calc(var(--wd-radius) + 6px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow:
    0 3px 7px rgba(10, 10, 10, 0.08),
    0 26px 62px rgba(10, 10, 10, 0.18),
    0 62px 124px rgba(10, 10, 10, 0.12);
  border: 1px solid rgba(10, 10, 10, 0.08);
  isolation: isolate;
  transform: translateZ(0);
}

.wd-about-vmv__panel-bg {
  display: none;
}

.wd-about-vmv__panel-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.wd-about-vmv__panel--dark {
  color: #fff;
}

.wd-about-vmv__panel--dark .wd-about-vmv__panel-overlay,
.wd-about-vmv__panel--light .wd-about-vmv__panel-overlay {
  background: #48171d;
}

.wd-about-vmv__panel--dark,
.wd-about-vmv__panel--light {
  color: #fffdfb;
  background: #48171d;
}

.wd-about-vmv__panel--light {
  color: #fffdfb;
}

.wd-about-vmv__panel-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
}

.wd-about-vmv__panel-index {
  position: absolute;
  top: clamp(20px, 3vw, 32px);
  inset-inline-end: clamp(20px, 3vw, 32px);
  font-family: var(--wd-brand);
  font-size: clamp(56px, 10vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.12;
  user-select: none;
}

.wd-about-vmv__panel--dark .wd-about-vmv__panel-index {
  color: #fff;
  opacity: 0.2;
}

.wd-about-vmv__panel-copy {
  position: relative;
  max-width: min(100%, 480px);
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--wd-radius);
}

.wd-about-vmv__panel--light .wd-about-vmv__panel-copy {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 8px 22px rgba(10, 10, 10, 0.08),
    0 22px 54px rgba(10, 10, 10, 0.08);
  backdrop-filter: blur(10px);
}

.wd-about-vmv__panel--dark .wd-about-vmv__panel-copy {
  padding-inline-start: 0;
  padding-inline-end: 0;
  padding-bottom: 0;
}

.wd-about-vmv__panel-title {
  margin: 0 0 12px;
  font-family: var(--wd-brand);
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.wd-about-vmv__panel-accent {
  display: block;
  width: 48px;
  height: 3px;
  margin: 0 0 18px;
  margin-inline-start: 0;
  margin-inline-end: auto;
  background: currentColor;
  border-radius: 2px;
  opacity: 0.85;
}

.wd-about-vmv__panel--dark .wd-about-vmv__panel-accent {
  background: #fff;
}

.wd-about-vmv__panel-body {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.wd-about-vmv__panel--dark .wd-about-vmv__panel-body {
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.6;
  max-width: 36ch;
}

.wd-about-vmv__footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 0;
  padding-top: 4px;
  text-align: center;
}

.wd-about-vmv__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.wd-about-vmv__dot {
  width: 36px;
  height: 4px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #d4d4d4;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.wd-about-vmv__dot:hover {
  background: #a8a8a8;
  transform: scaleY(1.25);
}

.wd-about-vmv__dot.is-active {
  width: 56px;
  background: var(--wd-text);
}

.wd-about-vmv__dot:focus-visible {
  outline: 2px solid var(--wd-text);
  outline-offset: 4px;
}

.wd-about-vmv__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
}

.wd-about-vmv__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid var(--wd-text);
  background: var(--wd-text);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.wd-about-vmv__arrow-icon {
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-top: -2px;
}

.wd-about-vmv__arrow:hover:not(:disabled) {
  background: #fff;
  color: var(--wd-text);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.12);
}

.wd-about-vmv__arrow:active:not(:disabled) {
  transform: translateY(0);
}

.wd-about-vmv__arrow:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  background: #fff;
  color: var(--wd-muted);
  border-color: var(--wd-border);
  box-shadow: none;
}

.wd-about-vmv__arrow:focus-visible {
  outline: 2px solid var(--wd-text);
  outline-offset: 3px;
}

html[dir="rtl"] .wd-about-vmv__panel {
  direction: rtl;
  text-align: start;
}

html[dir="rtl"] .wd-about-vmv__panel-copy {
  text-align: start;
}

@media (max-width: 720px) {
  .wd-about-vmv {
    --vmv-panel-w: min(88vw, 100%);
  }

  .wd-about-vmv__panel {
    min-height: 380px;
  }

  .wd-about-vmv__footer {
    flex-direction: column-reverse;
    align-items: center;
  }

  .wd-about-vmv__controls {
    justify-content: center;
  }

  .wd-about-vmv__dots {
    justify-content: center;
  }
}

/* Management / Team splits */
.wd-about-split {
  padding: clamp(40px, 6vw, 72px) 0;
}

.wd-about-split--mgmt {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--wd-cream-2) 0%, #ffffff 100%);
}

.wd-about-split--mgmt::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(83, 22, 32, 0.16), transparent);
  pointer-events: none;
}

.wd-about-split--mgmt .wd-about-split__grid {
  position: relative;
}

.wd-about-split--mgmt .wd-about-split__text {
  width: 100%;
  padding: clamp(8px, 1vw, 12px) 0;
  text-align: start;
}

.wd-about-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.wd-about-split__grid--reverse .wd-about-split__text {
  order: 1;
}

.wd-about-split__grid--reverse .wd-about-split__media {
  order: 2;
}

@media (max-width: 900px) {
  .wd-about-split__grid,
  .wd-about-split__grid--reverse {
    grid-template-columns: 1fr;
  }

  .wd-about-split__grid--reverse .wd-about-split__text,
  .wd-about-split__grid--reverse .wd-about-split__media {
    order: unset;
  }
}

.wd-about-split__media img {
  width: 100%;
  display: block;
  border-radius: var(--wd-radius-sm);
}

.wd-about-split--mgmt .wd-about-split__media {
  position: relative;
}

.wd-about-split--mgmt .wd-about-split__media::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(83, 22, 32, 0.16);
  border-radius: var(--wd-radius-sm);
  background: var(--wd-primary);
  opacity: 0.06;
  z-index: -1;
}

.wd-about-split--mgmt .wd-about-split__media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(36, 21, 25, 0.12);
}

.wd-about-split--mgmt .wd-about-split__media--photo img {
  aspect-ratio: 5 / 4;
  object-position: center;
}

.wd-about-split__placeholder {
  aspect-ratio: 4/3;
  background: #e0e0e0;
  border-radius: var(--wd-radius-sm);
}

.wd-about-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wd-text);
  color: #fff;
  text-decoration: none;
  margin-bottom: 16px;
}

.wd-about-split__title {
  margin: 0 0 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.wd-about-split__text p {
  margin: 0;
  color: var(--wd-muted);
  max-width: 480px;
}

.wd-about-split--mgmt .wd-about-why {
  width: 100%;
  max-width: none;
}

.wd-about-why__intro {
  margin: 0 0 clamp(22px, 3vw, 32px);
  color: var(--wd-text);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.1;
  font-weight: 700;
}

.wd-about-why__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(83, 22, 32, 0.14);
}

.wd-about-why__list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 58px;
  padding-block: 14px;
  padding-inline: 42px 0;
  border-bottom: 1px solid rgba(83, 22, 32, 0.14);
  color: var(--wd-text);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 600;
  text-align: start;
}

.wd-about-why__list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 3px;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(83, 22, 32, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--wd-primary) 0 3px, transparent 4px);
  transform: translateY(-50%);
}

@media (max-width: 680px) {
  .wd-about-split--mgmt .wd-about-split__text {
    padding: 0;
  }

  .wd-about-why__list li {
    min-height: 50px;
  }
}

/* Founders — full-width 2×2 grid */
.wd-about-founders {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 9vw, 104px);
  background: var(--wd-cream-2);
}

.wd-about-founders::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(83, 22, 32, 0.14), transparent);
  pointer-events: none;
}

.wd-about-founders__head {
  margin: 0 0 clamp(36px, 5vw, 52px);
  padding-inline-start: clamp(18px, 2vw, 26px);
  border-inline-start: 3px solid var(--wd-primary);
  max-width: 28rem;
  text-align: start;
}

.wd-about-founders__head .wd-eyebrow {
  margin-bottom: 8px;
}

.wd-about-founders__title {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.wd-about-founders__head .wd-rule {
  margin-top: 10px;
  margin-bottom: 18px;
}

.wd-about-founders__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
  width: 100%;
}

.wd-about-founders__card {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(83, 22, 32, 0.09);
  border-radius: var(--wd-radius);
  box-shadow: 0 16px 48px rgba(36, 21, 25, 0.06);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.wd-about-founders__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(36, 21, 25, 0.09);
}

.wd-about-founders__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: clamp(220px, 28vw, 340px);
  overflow: hidden;
  background: linear-gradient(160deg, #f0ebe6 0%, #e2d8d2 100%);
}

.wd-about-founders__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  transition: transform 0.45s ease;
}

.wd-about-founders__card:not(.is-placeholder):hover .wd-about-founders__photo img {
  transform: scale(1.03);
}

.wd-about-founders__card.is-placeholder .wd-about-founders__photo img {
  object-fit: contain;
  object-position: center;
  padding: 12%;
  opacity: 0.92;
}

.wd-about-founders__meta {
  padding: clamp(16px, 2vw, 20px) clamp(18px, 2.4vw, 24px) clamp(18px, 2.4vw, 22px);
  border-top: 1px solid rgba(83, 22, 32, 0.07);
  text-align: center;
}

.wd-about-founders__name {
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--wd-text);
}

.wd-about-founders__role {
  margin: 6px 0 0;
  font-size: clamp(0.86rem, 1.1vw, 0.95rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--wd-muted);
}

@media (max-width: 720px) {
  .wd-about-founders__head {
    max-width: none;
  }

  .wd-about-founders__grid {
    gap: 16px;
  }

  .wd-about-founders__photo {
    min-height: 200px;
  }
}

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

/* Projects page */
.wd-projects-page {
  padding: 0 0 clamp(72px, 12vw, 120px);
}

.wd-projects-page__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 48px);
}

.wd-projects-page .wd-proj-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  min-height: clamp(320px, 36vw, 400px);
  padding: 0;
  border: 1px solid rgba(83, 22, 32, 0.12);
  border-radius: var(--wd-radius);
  overflow: hidden;
  background: #fffdfb;
  box-shadow: 0 14px 42px rgba(83, 22, 32, 0.08);
}

.wd-projects-page .wd-proj-showcase__media {
  position: relative;
  min-height: 100%;
  border-radius: 0;
  overflow: hidden;
  background: var(--wd-surface);
}

.wd-projects-page .wd-proj-showcase__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 32vw, 400px);
  display: block;
  aspect-ratio: auto;
  object-fit: cover;
}

.wd-projects-page .wd-proj-showcase__placeholder {
  min-height: clamp(280px, 32vw, 400px);
  aspect-ratio: auto;
  background: #ececec;
}

.wd-projects-page .wd-proj-showcase__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(28px, 4vw, 44px);
  min-height: 100%;
}

.wd-projects-page .wd-proj-showcase__body h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.1;
  color: var(--wd-primary);
}

.wd-projects-page .wd-proj-showcase__sub {
  margin: 0 0 16px;
  font-weight: 600;
  color: var(--wd-muted);
  line-height: 1.45;
}

.wd-projects-page .wd-proj-showcase__desc {
  margin: 0;
  flex: 1 1 auto;
  color: var(--wd-muted);
  line-height: 1.65;
  max-width: 56ch;
}

.wd-projects-page .wd-proj-showcase__actions {
  margin-top: auto;
  padding-top: clamp(20px, 3vw, 28px);
  align-items: flex-end;
}

@media (max-width: 900px) {
  .wd-projects-page .wd-proj-showcase {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .wd-projects-page .wd-proj-showcase__media img,
  .wd-projects-page .wd-proj-showcase__placeholder {
    min-height: 220px;
    max-height: 280px;
  }

  .wd-projects-page .wd-proj-showcase__body {
    padding: clamp(24px, 5vw, 32px);
  }
}

/* Project detail */
.wd-project-detail-hero {
  padding: clamp(56px, 8vw, 104px) 0;
  background:
    linear-gradient(90deg, rgba(72, 23, 29, 0.96) 0%, rgba(83, 22, 32, 0.88) 48%, rgba(83, 22, 32, 0.72) 100%),
    var(--wd-primary);
  color: #fffdfb;
}

.wd-project-detail-hero--east {
  background: #e4e0d9;
  color: var(--wd-text);
}

.wd-project-detail-hero--east .wd-back-link--light {
  color: var(--wd-primary-soft);
}

.wd-project-detail-hero--east .wd-back-link--light:hover {
  color: var(--wd-primary);
}

.wd-project-detail-hero--east .wd-project-detail-hero__copy .wd-eyebrow {
  color: var(--wd-primary-soft);
}

.wd-project-detail-hero--east .wd-project-detail-hero__copy h1 {
  color: var(--wd-primary);
}

.wd-project-detail-hero--east .wd-project-detail-hero__media {
  border-color: rgba(83, 22, 32, 0.14);
  background: rgba(255, 253, 251, 0.5);
  box-shadow: 0 28px 72px rgba(83, 22, 32, 0.1);
}

.wd-project-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.wd-project-detail-hero__copy h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.wd-project-detail-hero__copy .wd-eyebrow {
  color: rgba(255, 253, 251, 0.76);
}

.wd-project-detail-hero__media {
  border: 1px solid rgba(255, 253, 251, 0.18);
  border-radius: var(--wd-radius-sm);
  overflow: hidden;
  background: rgba(255, 253, 251, 0.08);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.18);
}

.wd-project-detail-hero__media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.wd-project-detail {
  padding: clamp(64px, 9vw, 112px) 0;
  background: linear-gradient(180deg, #fffdfb 0%, var(--wd-cream-2) 100%);
}

.wd-project-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.wd-project-detail__aside {
  position: sticky;
  top: 108px;
  padding-inline-start: clamp(18px, 2vw, 26px);
  border-inline-start: 3px solid var(--wd-primary);
}

.wd-project-detail__aside h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1.1;
}

.wd-project-detail__content {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(24px, 3vw, 34px);
  align-items: start;
}

.wd-project-detail__body {
  color: var(--wd-muted);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.82;
}

.wd-project-gallery-wrap {
  grid-column: 1 / -1;
  margin-top: clamp(30px, 4vw, 44px);
}

.wd-project-detail__story {
  grid-column: 1 / -1;
}

.wd-project-gallery__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.wd-project-gallery__modes {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wd-project-gallery__mode {
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid rgba(83, 22, 32, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--wd-primary);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.wd-project-gallery__mode.is-active {
  background: var(--wd-primary);
  border-color: var(--wd-primary);
  color: #fffdfb;
}

.wd-project-gallery__count {
  margin: 0;
  color: var(--wd-muted);
  font-weight: 600;
}

.wd-project-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.wd-project-gallery__item {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--wd-radius-sm);
  border: 1px solid rgba(83, 22, 32, 0.1);
  background: #fff;
  box-shadow: 0 18px 44px rgba(83, 22, 32, 0.08);
  cursor: pointer;
  appearance: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.wd-project-gallery__item:hover {
  border-color: rgba(83, 22, 32, 0.34);
  box-shadow: 0 18px 44px rgba(83, 22, 32, 0.14);
  transform: translateY(-2px);
}

.wd-project-gallery__item img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.wd-lightbox[hidden] {
  display: none !important;
}

html.wd-lightbox-open,
html.wd-lightbox-open body {
  overflow: hidden;
}

.wd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 28px);
}

.wd-lightbox__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(12, 6, 8, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.wd-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(96vw, 1400px);
  max-width: 96vw;
  max-height: 96vh;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

.wd-lightbox__figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: 96vh;
  margin: 0;
  pointer-events: auto;
}

.wd-lightbox__dialog img,
.wd-lightbox__figure img {
  width: auto;
  height: auto;
  max-width: min(96vw, 1400px);
  max-height: 96vh;
  margin: 0 auto;
  display: block;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.wd-lightbox__close,
.wd-lightbox__nav {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 251, 0.2);
  border-radius: 999px;
  background: rgba(36, 21, 25, 0.72);
  color: #fffdfb;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.wd-lightbox__close {
  top: clamp(8px, 2vw, 18px);
  right: clamp(8px, 2vw, 18px);
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}

.wd-lightbox__nav {
  top: 50%;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  font-size: 26px;
  line-height: 1;
}

.wd-lightbox__nav--prev {
  left: clamp(8px, 2vw, 18px);
}

.wd-lightbox__nav--next {
  right: clamp(8px, 2vw, 18px);
}

html[dir="rtl"] .wd-lightbox__close {
  right: auto;
  left: clamp(8px, 2vw, 18px);
}

html[dir="rtl"] .wd-lightbox__nav--prev {
  left: auto;
  right: clamp(8px, 2vw, 18px);
}

html[dir="rtl"] .wd-lightbox__nav--next {
  right: auto;
  left: clamp(8px, 2vw, 18px);
}

.wd-lightbox__close:hover,
.wd-lightbox__nav:hover {
  background: rgba(83, 22, 32, 0.92);
  border-color: rgba(255, 253, 251, 0.34);
}

.wd-lightbox__close:disabled,
.wd-lightbox__nav:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.wd-lightbox__caption {
  position: absolute;
  left: 50%;
  bottom: -36px;
  transform: translateX(-50%);
  margin: 0;
  max-width: min(90vw, 720px);
  color: rgba(255, 253, 251, 0.88);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wd-project-gallery__item.is-hidden {
  display: none;
}

.wd-project-highlights {
  margin-top: clamp(30px, 4vw, 46px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(83, 22, 32, 0.14);
  border-radius: var(--wd-radius-sm);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 54px rgba(83, 22, 32, 0.07);
}

.wd-project-highlights h3 {
  margin: 0 0 18px;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.wd-project-highlights ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wd-project-highlights li {
  position: relative;
  padding: 13px 14px 13px 42px;
  border: 1px solid rgba(83, 22, 32, 0.12);
  border-radius: var(--wd-radius-sm);
  background: #fff;
  color: var(--wd-text);
  font-weight: 600;
}

.wd-project-highlights li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--wd-primary);
  transform: translateY(-50%);
}

html[dir="rtl"] .wd-project-highlights li {
  padding: 13px 42px 13px 14px;
}

html[dir="rtl"] .wd-project-highlights li::before {
  right: 16px;
  left: auto;
}

@media (max-width: 900px) {
  .wd-project-detail-hero__grid,
  .wd-project-detail__grid {
    grid-template-columns: 1fr;
  }

  .wd-project-detail__aside {
    position: static;
  }

  .wd-project-detail__content {
    grid-template-columns: 1fr;
  }

  .wd-project-gallery-wrap,
  .wd-project-detail__story {
    grid-column: auto;
    grid-row: auto;
  }

  .wd-project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .wd-project-gallery__toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .wd-project-gallery {
    grid-template-columns: 1fr;
  }

  .wd-lightbox {
    padding: 10px;
  }

  .wd-lightbox__dialog,
  .wd-lightbox__figure {
    max-height: 92vh;
  }

  .wd-lightbox__dialog img,
  .wd-lightbox__figure img {
    max-width: 100%;
    max-height: 92vh;
  }

  .wd-lightbox__nav {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    font-size: 22px;
  }

  .wd-lightbox__caption {
    bottom: -30px;
    font-size: 12px;
  }
}

/* ---- Wejood brand palette override ---- */
:root {
  --wd-bg: #fffdfb;
  --wd-surface: #f8f3f1;
  --wd-text: #241519;
  --wd-muted: #715c5f;
  --wd-border: #eadfdb;
  --wd-primary: #531620;
  --wd-primary-dark: #3f1018;
  --wd-primary-soft: #7c2a36;
  --wd-cream: #f4eee8;
  --wd-cream-2: #fbf7f3;
}

body.wd-body.wd-theme-light {
  background: var(--wd-bg);
  color: var(--wd-text);
}

.wd-headwrap--light {
  background: rgba(255, 253, 251, 0.94);
  border-bottom-color: rgba(83, 22, 32, 0.12);
}

.wd-headwrap--light.is-scrolled,
.wd-page-home .wd-headwrap--light.is-scrolled {
  background: rgba(255, 253, 251, 0.97);
  box-shadow: 0 10px 32px rgba(83, 22, 32, 0.08);
}

.wd-logo img {
  border-radius: 2px;
}

.wd-nav__link.is-active,
.wd-header__cta,
.wd-btn--solid-dark,
.wd-btn--send,
.wd-home-finder__form button,
.wd-home-cta-card b,
.wd-about-vmv__arrow,
.wd-contact-form .wd-btn,
.wd-admin-btn,
.wd-footer__soc:hover {
  background: var(--wd-primary);
  border-color: var(--wd-primary);
  color: #fff;
}

.wd-header__cta:hover,
.wd-btn--solid-dark:hover,
.wd-home-finder__form button:hover,
.wd-home-cta-card b:hover,
.wd-about-vmv__arrow:hover:not(:disabled) {
  background: var(--wd-primary-dark);
  border-color: var(--wd-primary-dark);
  color: #fff;
}

.wd-btn--outline-dark,
.wd-btn--navigate,
.wd-about-vmv__arrow:disabled {
  border-color: var(--wd-primary);
  color: var(--wd-primary);
}

.wd-nav__link:hover,
.wd-lang a.is-active,
.wd-lang__btn.is-active,
.wd-back-link,
.wd-footer--light .wd-footer__soc,
.wd-home-section-head a,
.wd-media-tab.is-active {
  color: var(--wd-primary);
}

.wd-eyebrow,
.wd-home-stat__num,
.wd-home-finder__tabs .is-active,
.wd-media-card__pill,
.wd-post-page__pill {
  color: var(--wd-primary-soft);
}

.wd-home-intro,
.wd-home-projects,
.wd-home-media,
.wd-home-partners,
.wd-about-cap,
.wd-projects-page,
.wd-media-page,
.wd-post-page,
.wd-contact-page {
  background: var(--wd-bg);
}

.wd-about-cap {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf8 58%, var(--wd-cream-2) 100%);
}

.wd-home-finder,
.wd-about-vmv,
.wd-about-split--mgmt,
.wd-contact-map,
.wd-page-intro--contact {
  background: linear-gradient(180deg, var(--wd-surface) 0%, var(--wd-cream-2) 100%);
}

.wd-about-split--mgmt {
  background:
    linear-gradient(180deg, var(--wd-cream-2) 0%, #ffffff 100%);
}

.wd-home-finder__card,
.wd-home-partners__grid,
.wd-office-block,
.wd-contact-connect,
.wd-contact-page__form-wrap,
.wd-media-card__link,
.wd-about-vmv__panel--light .wd-about-vmv__panel-copy {
  background: rgba(255, 253, 251, 0.94);
  border-color: rgba(83, 22, 32, 0.12);
  box-shadow: 0 18px 58px rgba(83, 22, 32, 0.08);
}

.wd-home-intro__body > p,
.wd-proj-card__body p,
.wd-home-news-card time,
.wd-footer__list,
.wd-form__status,
.wd-field input::placeholder,
.wd-field textarea::placeholder {
  color: var(--wd-muted);
}

.wd-rule,
.wd-about-vmv__dot.is-active {
  border-color: var(--wd-primary);
  background: var(--wd-primary);
}

.wd-about-vmv__panel--dark .wd-about-vmv__panel-overlay,
.wd-about-vmv__panel--light .wd-about-vmv__panel-overlay {
  background: #48171d;
}

.wd-proj-card__media::after,
.wd-home-cta-card::after {
  background:
    linear-gradient(to top, rgba(83, 22, 32, 0.72), rgba(83, 22, 32, 0.12) 62%);
}

.wd-field input:focus,
.wd-field textarea:focus,
.wd-contact-form .wd-field input:focus,
.wd-contact-form .wd-field textarea:focus {
  border-color: rgba(83, 22, 32, 0.32);
  box-shadow: 0 0 0 3px rgba(83, 22, 32, 0.08);
}

/* ---- Premium Wejood navbar ---- */
.wd-headwrap--light {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 4px 0;
  background: rgba(255, 253, 251, 0.94);
  border-bottom: 1px solid rgba(83, 22, 32, 0.08);
  box-shadow: none;
  backdrop-filter: blur(12px) saturate(1.02);
  -webkit-backdrop-filter: blur(12px) saturate(1.02);
  transition: padding 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.wd-page-home .wd-headwrap--light {
  position: sticky;
  width: 100%;
  background: #48171d;
  border-bottom-color: rgba(255, 253, 251, 0.12);
  box-shadow: none;
}

.wd-headwrap--light.is-scrolled,
.wd-page-home .wd-headwrap--light.is-scrolled {
  padding: 6px 0;
  background: #48171d;
  border-bottom-color: rgba(255, 253, 251, 0.12);
  box-shadow: 0 8px 24px rgba(72, 22, 31, 0.14);
}

.wd-header__inner {
  min-height: var(--wd-header-h);
  padding: 0;
  gap: 12px;
}

.wd-logo {
  position: relative;
  min-width: 88px;
  text-decoration: none;
}

.wd-logo::after {
  display: none;
}

.wd-logo img {
  max-height: 50px;
  max-width: 180px;
  border-radius: 0;
  box-shadow: none;
}

.wd-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 10px;
  min-width: 0;
}

.wd-nav__links {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.wd-page-home:not(.x) .wd-headwrap--light:not(.is-scrolled) .wd-nav__links {
  background: transparent;
  border-color: transparent;
}

.wd-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  color: var(--wd-primary);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.wd-nav__link:hover,
.wd-nav__link:active {
  color: var(--wd-primary-dark);
  background: rgba(83, 22, 32, 0.06);
  transform: none;
}

.wd-nav__link.is-active {
  color: #fff;
  background: var(--wd-primary);
  box-shadow: none;
}

.wd-nav__link:focus-visible {
  outline: 2px solid var(--wd-primary);
  outline-offset: 3px;
}

.wd-nav__tools {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.wd-lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 2px;
  border: 1px solid rgba(83, 22, 32, 0.1);
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  font-size: 10px;
}

.wd-lang__sep {
  display: none;
}

.wd-lang a,
.wd-lang__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--wd-muted);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, background 0.2s ease;
}

.wd-lang a:hover,
.wd-lang__btn:hover {
  color: var(--wd-primary);
}

.wd-lang a.is-active,
.wd-lang__btn.is-active {
  color: #fff;
  background: var(--wd-primary);
  box-shadow: none;
}

.wd-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid var(--wd-primary);
  border-radius: 999px;
  background: var(--wd-primary);
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.wd-header__cta:hover {
  opacity: 1;
  transform: none;
  box-shadow: none;
  filter: none;
  background: var(--wd-primary-dark);
  border-color: var(--wd-primary-dark);
}

.wd-nav-toggle {
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border-color: rgba(83, 22, 32, 0.12);
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.wd-nav-toggle:hover {
  border-color: rgba(83, 22, 32, 0.22);
  transform: none;
  background: rgba(83, 22, 32, 0.04);
}

.wd-nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: var(--wd-primary);
  transition: transform 0.24s ease, opacity 0.2s ease, width 0.2s ease;
}

.wd-headwrap--light:has(.wd-nav.is-open) .wd-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.wd-headwrap--light:has(.wd-nav.is-open) .wd-nav-toggle span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.wd-headwrap--light:has(.wd-nav.is-open) .wd-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1100px) {
  .wd-nav__link {
    padding-inline: 12px;
    letter-spacing: 0.06em;
  }

  .wd-header__cta {
    padding-inline: 15px;
  }
}

@media (max-width: 900px) {
  .wd-headwrap--light,
  .wd-page-home .wd-headwrap--light {
    position: sticky;
    padding: 4px 0;
    background: rgba(255, 253, 251, 0.97);
    border-bottom-color: rgba(83, 22, 32, 0.1);
  }

  .wd-nav-toggle {
    display: inline-flex;
  }

  .wd-nav {
    display: none;
    position: absolute;
    inset-inline: max(16px, calc((100% - var(--wd-shell)) / 2));
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(83, 22, 32, 0.14);
    border-radius: 22px;
    background: rgba(255, 253, 251, 0.98);
    box-shadow: 0 24px 62px rgba(83, 22, 32, 0.16);
    backdrop-filter: blur(16px);
    animation: wd-mobile-nav-in 0.24s ease;
  }

  @keyframes wd-mobile-nav-in {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .wd-nav.is-open {
    display: flex;
  }

  .wd-nav__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .wd-nav__link {
    justify-content: space-between;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(83, 22, 32, 0.08);
    border-radius: 8px;
    background: var(--wd-surface);
  }

  .wd-nav__link::after {
    content: "→";
    font-size: 13px;
    opacity: 0.65;
  }

  html[dir="rtl"] .wd-nav__link::after {
    content: "←";
  }

  .wd-nav__tools {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--wd-border);
  }

  .wd-lang {
    width: 100%;
  }

  .wd-lang a,
  .wd-lang__btn {
    flex: 1;
  }

  .wd-header__cta {
    width: 100%;
  }
}

/* ---- Clean editorial media page ---- */
.wd-media-page {
  padding: clamp(34px, 5vw, 70px) 0 clamp(78px, 10vw, 120px);
  background:
    radial-gradient(circle at 8% 0%, rgba(83, 22, 32, 0.045), transparent 30%),
    linear-gradient(180deg, #fffdfb 0%, #fbf7f3 100%);
}

.wd-media-page__head {
  max-width: 720px;
  margin: 22px 0 clamp(24px, 4vw, 42px);
}

.wd-media-page__head h1 {
  margin: 0;
  color: var(--wd-text);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.wd-media-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  margin-bottom: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(83, 22, 32, 0.12);
  border-radius: 14px;
  background: rgba(255, 253, 251, 0.82);
  box-shadow: none;
}

.wd-media-tab {
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(43, 35, 35, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.wd-media-tab:hover {
  background: rgba(83, 22, 32, 0.055);
  color: var(--wd-primary);
}

.wd-media-tab.is-active {
  background: #fff;
  color: var(--wd-primary);
  box-shadow: 0 8px 22px rgba(83, 22, 32, 0.09);
}

/* ---- Arabic homepage typography tuning ---- */
html[dir="rtl"] .wd-page-home .wd-home-hero__copy {
  max-width: min(720px, 100%);
}

html[dir="rtl"] .wd-page-home .wd-home-hero__title {
  max-width: 720px;
  font-size: clamp(36px, 5.6vw, 74px);
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

html[dir="rtl"] .wd-page-home .wd-home-hero__lead {
  max-width: 560px;
  line-height: 1.85;
}

html[dir="rtl"] .wd-page-home .wd-home-intro__title h2 {
  max-width: 11ch;
  font-size: clamp(24px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

html[dir="rtl"] .wd-page-home .wd-home-intro__body > p {
  line-height: 1.9;
}

html[dir="rtl"] .wd-page-home .wd-home-stat__label {
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  html[dir="rtl"] .wd-page-home .wd-home-hero__title {
    max-width: 100%;
    font-size: clamp(28px, 8.8vw, 46px);
    line-height: 1.1;
  }

  html[dir="rtl"] .wd-page-home .wd-home-hero__lead,
  html[dir="rtl"] .wd-page-home .wd-home-intro__body > p {
    line-height: 1.8;
  }

  html[dir="rtl"] .wd-page-home .wd-home-intro__title h2 {
    max-width: 100%;
    font-size: clamp(22px, 7vw, 34px);
    line-height: 1.12;
  }
}

html[dir="rtl"] .wd-about-hero__k,
html[lang="ar"] .wd-page-about .wd-about-hero__k {
  letter-spacing: 0;
}

@media (min-width: 761px) {
  html[dir="rtl"] .wd-about-hero__title,
  html[lang="ar"] .wd-page-about .wd-about-hero__title {
    max-width: 16ch;
    font-size: clamp(32px, 4.6vw, 60px);
    line-height: 1.12;
    letter-spacing: 0;
    text-wrap: balance;
  }

  html[dir="rtl"] .wd-about-hero__body,
  html[lang="ar"] .wd-page-about .wd-about-hero__body {
    max-width: 44ch;
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.88;
  }
}


.wd-media-grid {
  gap: clamp(18px, 2.4vw, 32px);
}

.wd-media-card__link {
  display: grid;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(83, 22, 32, 0.1);
  border-radius: 22px;
  background: rgba(255, 253, 251, 0.96);
  box-shadow: 0 18px 48px rgba(43, 35, 35, 0.055);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.wd-media-card__link:hover {
  transform: translateY(-4px);
  border-color: rgba(83, 22, 32, 0.18);
  box-shadow: 0 26px 70px rgba(43, 35, 35, 0.09);
}

.wd-media-card__img {
  margin: 10px 10px 0;
  border-radius: 16px;
  background: #f6eee9;
}

.wd-media-card__date,
.wd-media-card__title,
.wd-media-card__pill {
  margin-inline: 22px;
}

.wd-media-card__date {
  margin-top: 22px;
  color: rgba(43, 35, 35, 0.56);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wd-media-card__title {
  min-height: 0;
  margin-bottom: 20px;
  color: var(--wd-text);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.wd-media-card__pill {
  width: fit-content;
  margin-top: auto;
  margin-bottom: 22px;
  border: 1px solid rgba(83, 22, 32, 0.12);
  background: transparent;
  color: var(--wd-primary);
}

@media (max-width: 640px) {
  .wd-media-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .wd-media-page__head h1 {
    font-size: clamp(2rem, 14vw, 3rem);
  }
}

/* ---- Header logo crop ---- */
.wd-logo {
  min-width: 0;
}

.wd-logo::after {
  display: none;
}

.wd-logo img {
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 50px;
  object-fit: contain;
  border-radius: 0;
}

@media (max-width: 760px) {
  .wd-logo img {
    max-width: 150px;
    max-height: 44px;
  }
}

/* ---- Original logo burgundy navbar ---- */
.wd-headwrap--light,
.wd-page-home .wd-headwrap--light,
.wd-headwrap--light.is-scrolled,
.wd-page-home .wd-headwrap--light.is-scrolled {
  position: sticky;
  top: 0;
  padding: 6px 0;
  background: #48171d;
  border-bottom-color: rgba(255, 253, 251, 0.12);
  box-shadow: 0 8px 24px rgba(72, 22, 31, 0.14);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.wd-header__inner {
  min-height: 60px;
}

.wd-logo {
  min-width: 0;
}

.wd-logo img {
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 50px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

/* Navbar logo mark — cream on burgundy header (same tone as legacy wejood-logo-header) */
.wd-headwrap--light .wd-logo__img {
  filter: brightness(0) invert(1);
}

.wd-nav__links {
  padding: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.wd-page-home:not(.x) .wd-headwrap--light:not(.is-scrolled) .wd-nav__links {
  border-color: transparent;
  background: transparent;
}

.wd-nav__link {
  color: rgba(255, 253, 251, 0.78);
  overflow: hidden;
}

.wd-nav__link::before,
.wd-lang a::before,
.wd-lang__btn::before {
  content: "";
  position: absolute;
  inset-inline: 14px;
  bottom: 7px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

.wd-nav__link:hover,
.wd-nav__link:active {
  color: #fffdfb;
  background: transparent;
  transform: none;
}

.wd-nav__link:hover::before,
.wd-lang a:hover::before,
.wd-lang__btn:hover::before {
  opacity: 0.78;
  transform: scaleX(1);
}

.wd-nav__link.is-active {
  color: #48161f;
  background: #f4eee8;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.wd-nav__link:focus-visible {
  outline-color: rgba(255, 253, 251, 0.8);
}

.wd-lang {
  padding: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.wd-lang a,
.wd-lang__btn {
  position: relative;
  overflow: hidden;
  color: rgba(255, 253, 251, 0.76);
}

.wd-lang a:hover,
.wd-lang__btn:hover,
.wd-lang a:active,
.wd-lang__btn:active {
  color: #fffdfb;
  background: transparent;
  transform: none;
}

.wd-lang a.is-active,
.wd-lang__btn.is-active {
  color: #48161f;
  background: #fffdfb;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.wd-header__cta {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 253, 251, 0.72);
  background: transparent;
  color: #fffdfb;
  box-shadow: none;
}

.wd-header__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fffdfb;
  transform: translateX(-102%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.wd-header__cta:hover {
  background: transparent;
  color: #48161f;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.wd-header__cta:hover::before {
  transform: translateX(0);
}

.wd-nav__link,
.wd-lang a,
.wd-lang__btn,
.wd-header__cta {
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.wd-nav-toggle {
  border-color: rgba(255, 253, 251, 0.18);
  background: rgba(255, 253, 251, 0.08);
  box-shadow: none;
}

.wd-nav-toggle span {
  background: #fffdfb;
}

@media (max-width: 900px) {
  .wd-headwrap--light,
  .wd-page-home .wd-headwrap--light,
  .wd-headwrap--light.is-scrolled,
  .wd-page-home .wd-headwrap--light.is-scrolled {
    background: #48161f;
    border-bottom-color: rgba(255, 253, 251, 0.12);
  }

  .wd-nav {
    border-color: rgba(255, 253, 251, 0.16);
    background: #48161f;
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.28);
  }

  .wd-nav__link {
    border-color: rgba(255, 253, 251, 0.12);
    background: rgba(255, 253, 251, 0.06);
    color: rgba(255, 253, 251, 0.84);
  }

  .wd-logo img {
    max-width: 150px;
    max-height: 44px;
  }
}

@media (max-width: 560px) {
  .wd-logo img {
    max-width: 132px;
    max-height: 40px;
  }
}

/* ---- Elegant vision / mission / values cards ---- */
.wd-about-vmv {
  --vmv-panel-w: min(84vw, 700px);
  padding: clamp(56px, 7vw, 94px) 0 clamp(40px, 5vw, 64px);
  background:
    radial-gradient(circle at 12% 10%, rgba(83, 22, 32, 0.045), transparent 30%),
    linear-gradient(180deg, #fffdfb 0%, #fbf7f3 100%);
}

.wd-about-vmv::before {
  background:
    linear-gradient(90deg, rgba(83, 22, 32, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(83, 22, 32, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 68%);
  opacity: 0.25;
}

.wd-about-vmv__track {
  gap: clamp(20px, 3vw, 34px);
  padding-block: clamp(26px, 4vw, 54px) clamp(38px, 5vw, 66px);
}

.wd-about-vmv__panel {
  min-height: clamp(390px, 48vh, 520px);
  border-radius: 22px;
  border: 1px solid rgba(83, 22, 32, 0.1);
  box-shadow:
    0 18px 54px rgba(83, 22, 32, 0.08),
    0 6px 18px rgba(36, 21, 25, 0.055);
  opacity: 0.72;
  transform: scale(0.97);
  transition:
    opacity 0.42s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s ease,
    border-color 0.42s ease;
}

.wd-about-vmv__panel.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(83, 22, 32, 0.16);
  box-shadow:
    0 24px 68px rgba(83, 22, 32, 0.11),
    0 8px 22px rgba(36, 21, 25, 0.07);
}

.wd-about-vmv__panel::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 253, 251, 0.16);
  border-radius: 16px;
  pointer-events: none;
}

.wd-about-vmv__panel--dark .wd-about-vmv__panel-overlay,
.wd-about-vmv__panel--light .wd-about-vmv__panel-overlay {
  background: #48171d;
}

.wd-about-vmv__panel--dark,
.wd-about-vmv__panel--light {
  background: #48171d;
  color: #fffdfb;
}

.wd-about-vmv__panel-inner {
  display: flex;
  align-items: flex-end;
  min-height: 100%;
  padding: clamp(28px, 4vw, 42px);
}

.wd-about-vmv__panel-index {
  top: clamp(18px, 3vw, 28px);
  inset-inline-end: clamp(20px, 3vw, 30px);
  font-size: clamp(64px, 9vw, 112px);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 253, 251, 0.16);
  opacity: 1;
}

.wd-about-vmv__panel-copy {
  max-width: min(100%, 560px);
  padding: 0;
  border-radius: 0;
  transform: translateY(10px);
  opacity: 0.78;
  transition:
    opacity 0.38s ease,
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.wd-about-vmv__panel.is-active .wd-about-vmv__panel-copy {
  opacity: 1;
  transform: translateY(0);
}

.wd-about-vmv__panel--light .wd-about-vmv__panel-copy {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.wd-about-vmv__panel--dark .wd-about-vmv__panel-copy {
  max-width: min(100%, 620px);
}

.wd-about-vmv__panel-title {
  margin-bottom: 12px;
  color: inherit;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.wd-about-vmv__panel-accent {
  width: 48px;
  height: 3px;
  margin: 0 0 18px;
  margin-inline-start: 0;
  margin-inline-end: auto;
  opacity: 0.85;
}

.wd-about-vmv__panel-body {
  max-width: 44ch;
  color: rgba(255, 253, 251, 0.88);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.78;
  letter-spacing: 0.01em;
}

.wd-about-vmv__panel-body::first-line {
  display: inline-block;
  color: #fffdfb;
  font-size: 1.08em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wd-about-vmv__panel--dark .wd-about-vmv__panel-body,
.wd-about-vmv__panel--light .wd-about-vmv__panel-body {
  color: rgba(255, 253, 251, 0.88);
}

.wd-about-vmv__panel--dark .wd-about-vmv__panel-body::first-line,
.wd-about-vmv__panel--light .wd-about-vmv__panel-body::first-line {
  color: #fffdfb;
}

.wd-about-vmv__panel--dark .wd-about-vmv__panel-index,
.wd-about-vmv__panel--light .wd-about-vmv__panel-index {
  color: rgba(255, 253, 251, 0.16);
}

.wd-about-vmv__panel--light .wd-about-vmv__panel-accent,
.wd-about-vmv__panel--dark .wd-about-vmv__panel-accent {
  background: rgba(255, 253, 251, 0.85);
}

.wd-about-vmv__panel-title {
  color: #fffdfb;
}

.wd-about-vmv__footer {
  gap: 22px;
}

.wd-about-vmv__dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(83, 22, 32, 0.32);
  background: transparent;
  position: relative;
  overflow: hidden;
  transition:
    width 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.24s ease,
    transform 0.24s ease;
}

.wd-about-vmv__dot:hover {
  background: rgba(83, 22, 32, 0.28);
  transform: scale(1.12);
}

.wd-about-vmv__dot.is-active {
  width: 34px;
  border-color: #48161f;
  background: #48161f;
}

.wd-about-vmv__arrow {
  width: 48px;
  height: 48px;
  border-color: rgba(72, 22, 31, 0.24);
  background: #fffdfb;
  color: #48161f;
  box-shadow: 0 14px 36px rgba(83, 22, 32, 0.12);
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.wd-about-vmv__arrow:hover:not(:disabled) {
  border-color: #48161f;
  background: #48161f;
  color: #fffdfb;
  transform: translateY(-3px);
}

@media (max-width: 720px) {
  .wd-about-vmv__panel {
    border-radius: 22px;
  }

  .wd-about-vmv__panel::after {
    inset: 10px;
    border-radius: 16px;
  }

  .wd-about-vmv__panel-title {
    font-size: clamp(1.3rem, 6.5vw, 1.7rem);
  }

  .wd-about-vmv__panel-body {
    font-size: 14px;
    line-height: 1.72;
  }
}

/* ---- Arabic Readability Adjustments ---- */
html[lang="ar"] body.wd-body {
  font-size: 21px;
  line-height: 1.86;
}

html[lang="ar"] h1, 
html[lang="ar"] h2, 
html[lang="ar"] h3,
html[lang="ar"] .wd-section-title,
html[lang="ar"] .wd-home-hero__title,
html[lang="ar"] .wd-about-vmv__panel-title {
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

html[lang="ar"] p,
html[lang="ar"] .wd-about-hero__body,
html[lang="ar"] .wd-about-cap__item p,
html[lang="ar"] .wd-about-vmv__panel-body {
  font-size: 1.24rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0;
}

html[lang="ar"] .wd-eyebrow,
html[lang="ar"] .wd-about-split__title {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
}

html[lang="ar"] .wd-about-why__intro {
  font-size: clamp(2rem, 3.4vw, 3.05rem);
  line-height: 1.25;
}

html[lang="ar"] .wd-about-why__list li {
  min-height: 68px;
  padding-block: 18px;
  padding-inline: 42px 0;
  font-size: clamp(21px, 1.75vw, 25px);
  line-height: 1.65;
  font-weight: 600;
}

html[lang="ar"] .wd-about-vmv__panel-title {
  font-size: clamp(1.7rem, 2.7vw, 2.45rem);
}

html[lang="ar"] .wd-about-vmv__panel-body {
  max-width: 48ch;
  font-size: clamp(19px, 1.55vw, 22px);
  line-height: 1.9;
}

html[lang="ar"] .wd-page-about .wd-about-vmv__panel-copy {
  text-align: right;
}


html[lang="ar"] .wd-btn,
html[lang="ar"] input,
html[lang="ar"] textarea,
html[lang="ar"] .wd-nav__link,
html[lang="ar"] .wd-media-tab {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}

/* VMV carousel — decorative background shapes */
.wd-about-vmv {
  isolation: isolate;
}

.wd-about-vmv__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.wd-about-vmv__shape {
  position: absolute;
  display: block;
}

.wd-about-vmv__shape--ring {
  width: clamp(260px, 36vw, 500px);
  aspect-ratio: 1;
  top: -20%;
  inset-inline-start: -12%;
  border: 2px solid rgba(72, 23, 29, 0.14);
  border-radius: 50%;
}

.wd-about-vmv__shape--blob {
  width: clamp(180px, 24vw, 340px);
  aspect-ratio: 1.12;
  bottom: 6%;
  inset-inline-end: -6%;
  border-radius: 62% 38% 58% 42% / 46% 54% 42% 58%;
  background: rgba(72, 23, 29, 0.07);
  transform: rotate(-22deg);
}

.wd-about-vmv__shape--dot {
  width: clamp(56px, 7vw, 96px);
  aspect-ratio: 1;
  top: 18%;
  inset-inline-end: 12%;
  border-radius: 50%;
  background: rgba(72, 23, 29, 0.09);
}

.wd-about-vmv__shape--arc {
  width: clamp(220px, 30vw, 400px);
  aspect-ratio: 1;
  bottom: -24%;
  inset-inline-start: 22%;
  border: 3px solid rgba(72, 23, 29, 0.11);
  border-radius: 50%;
  clip-path: inset(0 0 52% 0);
}

.wd-about-vmv__shape--bar {
  width: clamp(140px, 18vw, 260px);
  height: clamp(14px, 1.6vw, 20px);
  top: 42%;
  inset-inline-start: 6%;
  border-radius: 999px;
  background: rgba(72, 23, 29, 0.08);
  transform: rotate(-28deg);
}

.wd-about-vmv__track,
.wd-about-vmv__footer {
  position: relative;
  z-index: 1;
}

/* Flat Wejood burgundy cards — no photo layers or gradients */
.wd-about-vmv__panel,
.wd-about-vmv__panel--dark,
.wd-about-vmv__panel--light {
  background: #48171d !important;
  background-image: none !important;
}

.wd-about-vmv__panel-bg,
.wd-about-vmv__panel-overlay {
  display: none !important;
}

.wd-about-vmv__panel--dark .wd-about-vmv__panel-overlay,
.wd-about-vmv__panel--light .wd-about-vmv__panel-overlay {
  background: none !important;
  background-image: none !important;
}

.wd-about-vmv__panel::before {
  display: none;
}

.wd-about-vmv__panel::after {
  z-index: 2;
  border-color: rgba(255, 253, 251, 0.12);
}

.wd-about-vmv__panel-inner {
  z-index: 3;
}

@media (max-width: 720px) {
  .wd-about-vmv__shape--ring {
    top: -28%;
    inset-inline-start: -28%;
    opacity: 0.85;
  }

  .wd-about-vmv__shape--blob {
    bottom: 2%;
    inset-inline-end: -18%;
    opacity: 0.75;
  }

  .wd-about-vmv__shape--arc {
    inset-inline-start: 8%;
  }

  .wd-about-vmv__shape--bar {
    display: none;
  }
}

/* ---- Careers page ---- */
.wd-careers-hero {
  position: relative;
  overflow: clip;
  padding: clamp(48px, 7vw, 92px) 0 clamp(30px, 4vw, 56px);
  background:
    radial-gradient(circle at 12% 10%, rgba(83, 22, 32, 0.08), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(176, 145, 115, 0.16), transparent 24%),
    linear-gradient(180deg, #fffdfb 0%, #f7f1ec 56%, #ffffff 100%);
}

.wd-careers-hero::before {
  content: "";
  position: absolute;
  inset: auto auto 18% -6%;
  width: min(30vw, 320px);
  height: min(30vw, 320px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 167, 130, 0.22) 0%, rgba(196, 167, 130, 0) 72%);
  pointer-events: none;
}

.wd-careers-hero__frame {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(83, 22, 32, 0.1);
  border-radius: 34px;
  background: rgba(255, 252, 249, 0.88);
  box-shadow: 0 28px 80px rgba(63, 46, 44, 0.08);
  backdrop-filter: blur(10px);
}

.wd-careers-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: stretch;
}

.wd-careers-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wd-careers-hero__eyeline {
  margin: 10px 0 0;
  color: var(--wd-primary-soft);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.wd-careers-hero__title {
  margin: 18px 0 0;
  max-width: 11ch;
  font-size: clamp(2.6rem, 5.8vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.wd-careers-hero__body {
  max-width: 60ch;
  margin: 18px 0 0;
  color: var(--wd-muted);
  font-size: 1.02rem;
}

.wd-careers-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.wd-careers-hero__principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.wd-careers-hero__principles span,
.wd-careers-hero__value {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(83, 22, 32, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--wd-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wd-careers-hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin-top: 28px;
}

.wd-careers-hero__highlight {
  min-height: 122px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(83, 22, 32, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 240, 236, 0.9) 100%);
}

.wd-careers-hero__highlight strong {
  display: block;
  margin-bottom: 10px;
  color: var(--wd-primary);
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.wd-careers-hero__highlight span {
  display: block;
  color: var(--wd-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.wd-careers-hero__panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 30px);
  border: 1px solid rgba(83, 22, 32, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(79, 27, 34, 0.98) 0%, rgba(57, 17, 22, 0.98) 100%);
  color: #fffaf6;
  box-shadow: 0 22px 60px rgba(52, 24, 28, 0.18);
}

.wd-careers-hero__panel-kicker {
  margin: 0;
  color: rgba(255, 244, 235, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wd-careers-hero__panel-body {
  margin: 0;
  color: rgba(255, 248, 243, 0.92);
  font-size: 1rem;
  line-height: 1.7;
}

.wd-careers-hero__values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wd-careers-hero__panel .wd-careers-hero__value {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: #fff6ef;
}

.wd-careers-hero__panel-note {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.wd-careers-hero__panel-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.wd-careers-hero__panel-note p {
  margin: 0;
  color: rgba(255, 244, 235, 0.72);
}

.wd-careers-stats {
  padding: 0 0 clamp(36px, 5vw, 58px);
}

.wd-careers-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wd-careers-stat {
  position: relative;
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(83, 22, 32, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(49, 39, 38, 0.05);
}

.wd-careers-stat::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wd-primary) 0%, rgba(176, 145, 115, 0.72) 100%);
}

.wd-careers-stat__value {
  display: block;
  margin-bottom: 12px;
  color: var(--wd-primary);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.wd-careers-stat__label {
  margin: 0;
  color: var(--wd-muted);
  line-height: 1.65;
}

.wd-careers-pillars,
.wd-careers-openings {
  padding: clamp(48px, 7vw, 88px) 0;
}

.wd-careers-sectionhead {
  max-width: 760px;
  margin-bottom: 30px;
}

.wd-careers-sectionlead {
  margin: 14px 0 0;
  color: var(--wd-muted);
  font-size: 1rem;
}

.wd-careers-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wd-careers-pillar {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(160deg, #5c1e26 0%, #331217 100%);
  color: #fffdfb;
  box-shadow: 0 24px 60px rgba(72, 23, 29, 0.16);
}

.wd-careers-pillar::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.wd-careers-pillar h3 {
  position: relative;
  margin: 0 0 14px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.wd-careers-pillar p {
  position: relative;
  margin: 0;
  color: rgba(255, 250, 246, 0.78);
  line-height: 1.7;
}

.wd-careers-openings {
  background:
    linear-gradient(180deg, #fff 0%, #fbf7f3 48%, #fffdfb 100%);
}

.wd-careers-openings__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

.wd-careers-openings__main {
  min-width: 0;
}

.wd-careers-roles {
  display: grid;
  gap: 18px;
}

.wd-careers-role {
  padding: 24px;
  border: 1px solid rgba(83, 22, 32, 0.08);
  border-radius: 24px;
  background: rgba(255, 254, 252, 0.95);
  box-shadow: 0 18px 42px rgba(41, 32, 32, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.wd-careers-role:hover {
  transform: translateY(-2px);
  border-color: rgba(83, 22, 32, 0.14);
  box-shadow: 0 24px 60px rgba(41, 32, 32, 0.08);
}

.wd-careers-role__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.wd-careers-role__copy {
  min-width: 0;
}

.wd-careers-role__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 28px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(83, 22, 32, 0.07);
  color: var(--wd-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.wd-careers-role__title {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: -0.03em;
}

.wd-careers-role__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.wd-careers-role__meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--wd-surface);
  color: var(--wd-primary);
  font-size: 0.78rem;
  font-weight: 700;
}

.wd-careers-role__summary {
  margin: 18px 0 0;
  color: var(--wd-muted);
  line-height: 1.7;
}

.wd-careers-role__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(83, 22, 32, 0.08);
}

.wd-careers-role__footer-note {
  color: var(--wd-primary-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.wd-careers-role__link {
  color: var(--wd-primary);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.wd-careers-role__link:hover {
  text-decoration: underline;
}

.wd-careers-process {
  position: sticky;
  top: calc(var(--wd-header-h) + 24px);
  padding: clamp(24px, 3vw, 30px);
  border: 1px solid rgba(83, 22, 32, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 254, 252, 0.98) 0%, rgba(247, 240, 235, 0.92) 100%);
  box-shadow: 0 20px 54px rgba(43, 35, 35, 0.06);
}

.wd-careers-process__title {
  margin: 0 0 20px;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  letter-spacing: -0.04em;
}

.wd-careers-process__steps {
  display: grid;
  gap: 18px;
}

.wd-careers-process__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(83, 22, 32, 0.08);
}

.wd-careers-process__step:first-child {
  padding-top: 0;
  border-top: 0;
}

.wd-careers-process__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, #5a1d25 0%, #3d1218 100%);
  color: #fffdfb;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.wd-careers-process__step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.wd-careers-process__step p {
  margin: 0;
  color: var(--wd-muted);
  line-height: 1.65;
}

.wd-careers-cta {
  padding: 0 0 clamp(72px, 9vw, 118px);
}

.wd-careers-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(135deg, #4d1820 0%, #2f0d12 100%);
  color: #fffdfb;
  box-shadow: 0 24px 70px rgba(53, 19, 24, 0.18);
}

.wd-careers-cta__title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}

.wd-careers-cta__body {
  margin: 12px 0 0;
  max-width: 58ch;
  color: rgba(255, 250, 246, 0.76);
}

.wd-careers-cta .wd-btn {
  flex-shrink: 0;
  background: #fffdfb;
  color: #48171d;
}

.wd-careers-cta .wd-btn:hover {
  color: #fffdfb;
}

/* ---- Media page ---- */
.wd-media-page {
  padding: clamp(42px, 6vw, 84px) 0 clamp(70px, 9vw, 110px);
  background:
    radial-gradient(circle at top right, rgba(83, 22, 32, 0.05), transparent 24%),
    linear-gradient(180deg, #fffdfa 0%, #f8f2ee 45%, #ffffff 100%);
}

.wd-media-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
  margin-bottom: clamp(30px, 4vw, 44px);
}

.wd-media-page__head {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(83, 22, 32, 0.08);
  border-radius: 30px;
  background: rgba(255, 253, 250, 0.84);
  box-shadow: 0 24px 70px rgba(49, 38, 37, 0.06);
  backdrop-filter: blur(8px);
}

.wd-media-page__kickerline {
  margin: 12px 0 0;
  color: var(--wd-primary-soft);
  font-size: 0.98rem;
  font-weight: 700;
}

.wd-media-page__head h1 {
  margin: 18px 0 0;
  max-width: 12ch;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.wd-media-page__intro {
  max-width: 60ch;
  margin: 18px 0 0;
  color: var(--wd-muted);
  font-size: 1.02rem;
}

.wd-media-page__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.wd-media-page__stat {
  min-height: 120px;
  padding: 18px;
  border: 1px solid rgba(83, 22, 32, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(247, 240, 235, 0.85) 100%);
}

.wd-media-page__stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--wd-primary);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.wd-media-page__stat span {
  color: var(--wd-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.wd-media-page__rail {
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(83, 22, 32, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, #4f1b22 0%, #311015 100%);
  color: #fffaf6;
  box-shadow: 0 22px 60px rgba(52, 24, 28, 0.16);
}

.wd-media-page__rail-label {
  margin: 0 0 16px;
  color: rgba(255, 244, 235, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wd-media-page__rail-list {
  display: grid;
  gap: 16px;
}

.wd-media-page__rail-item {
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.wd-media-page__rail-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.wd-media-page__rail-date {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(255, 244, 235, 0.66);
  font-size: 0.85rem;
  font-weight: 700;
}

.wd-media-page__rail-item h2 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.wd-media-page__rail-item a {
  color: inherit;
  text-decoration: none;
}

.wd-media-page__rail-item a:hover {
  color: rgba(255, 250, 246, 0.78);
}

.wd-media-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(22px, 4vw, 38px);
  align-items: stretch;
  margin: clamp(26px, 4vw, 42px) 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(83, 22, 32, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(83, 22, 32, 0.06), transparent 30%),
    linear-gradient(180deg, #fffdfb 0%, #f7f1ee 100%);
  box-shadow: 0 24px 64px rgba(48, 37, 36, 0.06);
}

.wd-media-featured__visual {
  display: block;
  min-height: 100%;
  overflow: hidden;
  border-radius: 24px;
}

.wd-media-featured__visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 240ms ease;
}

.wd-media-featured__visual:hover img {
  transform: scale(1.03);
}

.wd-media-featured__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.wd-media-featured__pill,
.wd-media-card__pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(83, 22, 32, 0.08);
  color: var(--wd-primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wd-media-featured__title {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3.7vw, 3.5rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.wd-media-featured__title a {
  color: inherit;
  text-decoration: none;
}

.wd-media-featured__date {
  margin: 0 0 14px;
  color: var(--wd-primary-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.wd-media-featured__body {
  max-width: 52ch;
  margin: 0 0 22px;
  color: var(--wd-muted);
  line-height: 1.7;
}

.wd-media-page__toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: 22px;
  align-items: start;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.wd-media-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wd-media-tab {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(83, 22, 32, 0.09);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.84);
  color: var(--wd-primary);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.wd-media-tab:hover,
.wd-media-tab.is-active {
  border-color: rgba(83, 22, 32, 0.14);
  background: #4d1820;
  color: #fffdfb;
  transform: translateY(-1px);
}

.wd-media-contactcard {
  padding: 24px;
  border: 1px solid rgba(83, 22, 32, 0.08);
  border-radius: 24px;
  background: rgba(255, 253, 250, 0.92);
  box-shadow: 0 18px 44px rgba(46, 36, 35, 0.05);
}

.wd-media-contactcard__title {
  margin: 0 0 10px;
  color: var(--wd-text);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wd-media-contactcard__body {
  margin: 0 0 18px;
  color: var(--wd-muted);
  line-height: 1.65;
}

.wd-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.wd-media-card {
  min-width: 0;
}

.wd-media-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(83, 22, 32, 0.08);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(43, 34, 34, 0.05);
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.wd-media-card__link:hover {
  transform: translateY(-3px);
  border-color: rgba(83, 22, 32, 0.14);
  box-shadow: 0 26px 64px rgba(43, 34, 34, 0.08);
}

.wd-media-card__img {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.wd-media-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

.wd-media-card__link:hover .wd-media-card__img img {
  transform: scale(1.04);
}

.wd-media-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 20px 20px 22px;
}

.wd-media-card__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.wd-media-card__date {
  margin: 0;
  color: var(--wd-primary-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.wd-media-card__title {
  margin: 0;
  color: var(--wd-text);
  font-size: clamp(1.18rem, 1.8vw, 1.48rem);
  line-height: 1.24;
  letter-spacing: -0.03em;
}

.wd-media-card__excerpt {
  margin: 0;
  color: var(--wd-muted);
  font-size: 0.96rem;
  line-height: 1.68;
}

.wd-media-card__footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(83, 22, 32, 0.07);
}

.wd-media-card__cta {
  color: var(--wd-primary);
  font-size: 0.92rem;
  font-weight: 800;
}

.wd-media-card--wide {
  grid-column: span 2;
}

.wd-media-card--wide .wd-media-card__link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
}

.wd-media-card--wide .wd-media-card__img {
  aspect-ratio: auto;
  min-height: 100%;
}

html[dir="rtl"] .wd-careers-hero__copy,
html[dir="rtl"] .wd-media-featured__copy {
  align-items: flex-start;
}

@media (max-width: 1100px) {
  .wd-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wd-media-card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .wd-careers-hero__grid,
  .wd-careers-openings__layout,
  .wd-careers-pillars__grid,
  .wd-careers-stats__grid,
  .wd-media-page__hero,
  .wd-media-page__toolbar,
  .wd-media-featured {
    grid-template-columns: 1fr;
  }

  .wd-careers-process {
    position: static;
  }

  .wd-careers-hero__highlights,
  .wd-media-page__stats {
    grid-template-columns: 1fr;
  }

  .wd-media-card--wide .wd-media-card__link {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wd-careers-hero__title,
  .wd-media-page__head h1 {
    max-width: 100%;
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .wd-careers-role__head,
  .wd-careers-role__footer,
  .wd-careers-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .wd-media-grid {
    grid-template-columns: 1fr;
  }

  .wd-media-card--wide {
    grid-column: auto;
  }
}

/* ---- Responsive: all viewports (mobile → desktop) ---- */
@media (max-width: 1100px) {
  .wd-project-detail-hero__grid {
    grid-template-columns: 1fr;
  }

  .wd-project-detail-hero__copy h1 {
    max-width: none;
  }

  .wd-project-detail-hero__media {
    order: -1;
  }
}

@media (max-width: 900px) {
  .wd-nav__link {
    min-height: 44px;
    padding-block: 10px;
    display: flex;
    align-items: center;
  }

  .wd-lang a,
  .wd-lang__btn {
    min-width: 44px;
    min-height: 44px;
    font-size: 12px;
  }

  .wd-header__cta {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 11px;
  }

  .wd-home-hero__inner {
    min-height: min(72vh, 720px);
    min-height: min(72dvh, 720px);
  }

  .wd-home-hero__actions {
    width: 100%;
  }

  .wd-home-hero__actions .wd-btn {
    flex: 1 1 auto;
    min-width: min(100%, 200px);
  }

  .wd-projects-page .wd-proj-showcase__actions {
    align-items: stretch;
  }

  .wd-projects-page .wd-proj-showcase__actions .wd-btn {
    width: 100%;
    justify-content: center;
  }

  .wd-proj-card__actions,
  .wd-proj-showcase__actions,
  .wd-project-detail__aside-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wd-proj-card__actions .wd-btn,
  .wd-proj-showcase__actions .wd-btn,
  .wd-project-detail__aside-actions .wd-btn {
    width: 100%;
    justify-content: center;
  }

  .wd-footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .wd-field input,
  .wd-field textarea,
  .wd-contact-form .wd-field input,
  .wd-contact-form .wd-field textarea {
    font-size: 16px;
  }

  .wd-btn {
    min-height: 44px;
    padding-block: 12px;
  }

  .wd-home-stats__row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wd-home-segments__strip:not(:has(.wd-home-segment--brand-cover)) {
    grid-template-columns: minmax(82vw, 1fr);
    padding-inline: var(--wd-gutter);
    scroll-padding-inline: var(--wd-gutter);
    -webkit-overflow-scrolling: touch;
  }

  .wd-home-partners__track {
    gap: clamp(32px, 8vw, 56px);
  }

  .wd-project-detail-hero__copy h1 {
    font-size: clamp(28px, 9vw, 44px);
    max-width: none;
  }

  .wd-contact-map__frame {
    height: min(45vh, 320px);
  }

  .wd-contact-map__image {
    height: min(50vh, 380px);
  }
}

@media (max-width: 380px) {
  .wd-logo img {
    max-width: 120px;
    max-height: 38px;
  }

  .wd-home-hero__title {
    font-size: clamp(28px, 10vw, 40px);
  }

  .wd-media-tabs {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1400px) {
  :root {
    --wd-shell: min(1280px, 100% - (var(--wd-gutter) * 2));
  }
}
