:root {
  --sand-50: #ffffff;
  --sand-100: #fff6ee;
  --wood-300: #ff9f2f;
  --wood-500: #ff8a00;
  --wood-700: #d96a00;
  --charcoal: #181818;
  --charcoal-soft: #232323;
  --white: #ffffff;
  --shadow-soft: 0 14px 36px rgba(29, 18, 5, 0.1);
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", "Almarai", sans-serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 10% -5%, rgba(255, 138, 0, 0.14) 0%, transparent 26%),
    radial-gradient(circle at 90% 105%, rgba(255, 138, 0, 0.1) 0%, transparent 28%),
    #ffffff;
  line-height: 1.7;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.section-head {
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0;
  color: var(--wood-500);
  font-weight: 700;
  letter-spacing: 0.4px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.3;
}

p {
  margin: 0;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 30;
  color: #5c4129;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(32, 22, 12, 0.06);
  border-bottom: 1px solid rgba(145, 102, 58, 0.08);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 1;
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: "lang nav brand";
  align-items: center;
  gap: 22px;
  padding: 8px 0;
}

.brand {
  grid-area: brand;
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex: 0 0 auto;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #ffffff;
  display: grid;
  place-items: center;
  padding: 7px;
  border: 1px solid rgba(157, 106, 52, 0.28);
  box-shadow: 0 8px 18px rgba(84, 57, 29, 0.06);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.2;
  text-align: right;
  min-width: 220px;
}

.brand-text strong {
  font-size: 0.98rem;
  color: #5b4028;
}

.brand-text small {
  font-size: 0.72rem;
  color: #735235;
}

.nav {
  grid-area: nav;
  grid-column: 2;
  display: flex;
  gap: 46px;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #3f2f22;
  font-weight: 700;
  position: relative;
  text-shadow: none;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--wood-500);
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a.active::after {
  width: 100%;
}

.lang-btn {
  grid-area: lang;
  grid-column: 3;
  justify-self: end;
  flex: 0 0 auto;
  margin-inline-start: 0;
  min-width: 108px;
  border: 1px solid rgba(84, 57, 29, 0.16);
  background: #ffffff;
  color: #3f2f22;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(55, 37, 18, 0.05);
}

.menu-toggle {
  display: none;
  position: relative;
  border: 1px solid rgba(84, 57, 29, 0.08);
  background: linear-gradient(145deg, #1a1a1a, #2b2b2b);
  width: 50px;
  height: 50px;
  border-radius: 18px;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(29, 18, 5, 0.14);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.menu-toggle span:nth-child(1) {
  top: 16px;
}

.menu-toggle span:nth-child(2) {
  top: 24px;
  width: 14px;
}

.menu-toggle span:nth-child(3) {
  top: 32px;
}

.mobile-nav-backdrop,
.mobile-nav-backdrop[hidden] {
  display: none;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(18, 18, 18, 0.78), rgba(18, 18, 18, 0.44) 48%, rgba(255, 138, 0, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 760px;
}

.hero h1 {
  margin-top: 12px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
}

.hero .hero-text {
  margin-top: 16px;
  color: #ffd8a8;
  font-size: 1.1rem;
}

.page-hero {
  position: relative;
  padding: 170px 0 110px;
  overflow: hidden;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 11, 0.22) 0%, rgba(11, 11, 11, 0.38) 42%, rgba(11, 11, 11, 0.58) 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 138, 0, 0.14), transparent 26%),
    linear-gradient(135deg, #121212 0%, #1a1a1a 42%, #ffffff 42%, #ffffff 100%);
}

.page-hero--light::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 138, 0, 0.14), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #fff8f2 54%, #111111 54%, #111111 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 34px 36px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(17, 17, 17, 0.96), rgba(28, 28, 28, 0.9));
  border: 1px solid rgba(255, 138, 0, 0.18);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.16);
}

.page-hero--immersive {
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 150px 0 90px;
}

.page-hero--immersive::before {
  display: none;
}

.page-hero--immersive .page-hero-content {
  margin-right: auto;
  max-width: 720px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #ffffff;
  text-align: right;
}

.page-hero--immersive .page-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.page-hero--immersive h1 {
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.page-hero--immersive p:last-child {
  color: rgba(255, 255, 255, 0.88);
  max-width: 920px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
}

.page-hero--projects .page-hero-content {
  max-width: 860px;
}

.page-hero--light .page-hero-content {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 138, 0, 0.16);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
  color: #111111;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.12);
  color: #ff8a00;
  font-weight: 800;
}

.page-hero h1 {
  margin-top: 18px;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.2;
}

.page-hero--light h1 {
  color: #111111;
}

.page-hero p:last-child {
  margin-top: 18px;
  color: #ffd9af;
  font-size: 1.08rem;
  max-width: 680px;
}

.page-hero--light p:last-child {
  color: #5c4636;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.metric-card {
  padding: 24px 20px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(255, 138, 0, 0.18);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.metric-card strong {
  display: block;
  color: #111111;
  font-size: 2rem;
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: #8f571e;
  font-weight: 700;
}

.project-showcase,
.catalog-grid,
.timeline-grid,
.contact-layout {
  display: grid;
  gap: 18px;
}

.project-showcase {
  grid-template-columns: repeat(3, 1fr);
}

.showcase-card,
.catalog-card,
.about-panel,
.timeline-item,
.contact-panel,
.contact-map-card,
.form-card,
.info-card,
.highlight-band {
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(255, 138, 0, 0.18);
  box-shadow: var(--shadow-soft);
}

.showcase-card {
  overflow: hidden;
}

.showcase-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.showcase-copy,
.catalog-copy,
.about-panel,
.timeline-item,
.contact-panel,
.contact-map-card,
.form-card,
.info-card,
.highlight-band {
  padding: 24px;
}

.showcase-copy h3,
.catalog-copy h3,
.about-panel h3,
.timeline-item h3,
.contact-panel h3,
.contact-map-card h3,
.info-card h3 {
  margin-bottom: 10px;
}

.showcase-copy p,
.catalog-copy p,
.about-panel p,
.timeline-item p,
.contact-panel p,
.contact-map-card p,
.info-card p {
  color: #5c4737;
}

.future-projects-section {
  padding-top: 10px;
}

.future-projects-shell {
  position: relative;
  width: min(100%, calc(100vw - 32px));
  min-height: 72vh;
  margin: 0 auto;
  padding: 54px clamp(22px, 4vw, 48px) 42px;
  border-radius: 34px;
  background: linear-gradient(135deg, #121212 0%, #1a1a1a 44%, #ffffff 44%, #ffffff 100%);
  border: 1px solid #efc694;
  box-shadow: 0 24px 48px rgba(17, 17, 17, 0.12);
  overflow: hidden;
}

.future-projects-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 38%;
  background: linear-gradient(180deg, #111111, #232323);
  clip-path: polygon(0 0, 100% 0, 52% 100%, 0 100%);
}

.future-projects-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 30px;
}

.future-projects-copy {
  max-width: 700px;
}

.future-projects-copy h2 {
  margin-top: 10px;
  color: #ffffff;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.2;
}

.future-projects-intro {
  padding: 24px 26px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #ffd3a1;
  color: #5c4737;
  font-size: 1.02rem;
  line-height: 1.9;
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.06);
}

.future-projects-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.future-project-card {
  padding: 30px 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #ffc788;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 30px rgba(17, 17, 17, 0.08);
}

.future-project-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffefe0;
  color: #ff8a00;
  font-weight: 800;
}

.future-project-card h3 {
  margin: 18px 0 10px;
  color: #111111;
}

.future-project-card p {
  color: #5c4737;
}

.who-hero {
  min-height: 720px;
}

.who-hero .page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.74) 0%, rgba(11, 11, 11, 0.46) 38%, rgba(11, 11, 11, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 138, 0, 0.12) 0%, rgba(245, 238, 226, 0.04) 100%);
}

.who-hero .page-hero-content {
  max-width: 860px;
}

.contact-hero {
  min-height: 680px;
}

.contact-hero .page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.16) 0%, rgba(11, 11, 11, 0.34) 40%, rgba(11, 11, 11, 0.82) 100%),
    linear-gradient(180deg, rgba(255, 138, 0, 0.1) 0%, rgba(255, 138, 0, 0.02) 100%);
}

.contact-hero .page-hero-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  text-align: center;
}

.contact-hero .page-kicker {
  margin-inline: auto;
}

.contact-hero h1 {
  font-size: clamp(2rem, 3.9vw, 3.8rem);
  line-height: 1.15;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.contact-hero p:last-child {
  margin-top: 14px;
  font-size: 1.02rem;
  line-height: 1.85;
  color: #ffd7ab;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.form-status {
  margin-top: 12px;
  color: #ffddb8;
  font-weight: 700;
}

.who-metrics-section {
  margin-top: -62px;
  position: relative;
  z-index: 2;
}

.who-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.who-metric-card {
  padding: 0 18px;
  text-align: center;
  border-inline-start: 1px solid rgba(255, 138, 0, 0.22);
}

.who-metric-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ff8a00;
  font-size: 2rem;
}

.who-metric-card span {
  color: #5c4737;
}

.who-story-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 42px;
}

.who-story-media {
  position: relative;
}

.who-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 138, 0, 0.08), rgba(17, 17, 17, 0.1));
}

.who-story-media img {
  width: 100%;
  height: auto;
  min-height: 430px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.who-story-content {
  padding: 0;
  background: transparent;
}

.who-story-content h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.who-story-content p {
  color: #5c4737;
  line-height: 1.95;
  margin-bottom: 14px;
}

.who-story-quote {
  margin-top: 24px;
  padding-right: 22px;
  border-right: 4px solid #ff8a00;
  color: #111111;
}

.who-intro-flow {
  display: grid;
  gap: 44px;
}

.who-intro-block {
  text-align: center;
}

.who-intro-block h2 {
  color: #111111;
  display: inline-block;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.02;
  margin-bottom: 28px;
  padding-bottom: 8px;
  position: relative;
}

.who-intro-block h2::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 12px;
  background: rgba(255, 138, 0, 0.9);
  z-index: -1;
}

.who-intro-block p {
  color: #5c4737;
  font-size: 1.12rem;
  line-height: 2;
  margin: 0 auto 14px;
  max-width: 1080px;
}

.who-values {
  background: linear-gradient(180deg, #ffffff, #fbfbfb);
}

.who-values .section-head {
  margin-bottom: 48px;
  text-align: center;
}

.who-values .section-head .eyebrow {
  color: #ff8a00;
  margin-bottom: 10px;
}

.who-values .section-head h2 {
  color: #111111;
  display: inline-block;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1.05;
  padding-bottom: 8px;
  position: relative;
}

.who-values .section-head h2::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 10px;
  background: rgba(255, 138, 0, 0.9);
  z-index: -1;
}

.who-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}

.who-value-card {
  padding: 0 10px;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.who-value-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  color: #ff8a00;
}

.who-value-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.who-value-card h3 {
  margin-bottom: 14px;
  color: #111111;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
}

.who-value-card p {
  color: #555555;
  font-size: 1.02rem;
  line-height: 1.85;
}

.who-stakeholders-shell {
  padding: 34px 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.22), transparent 34%),
    linear-gradient(135deg, #151515, #050505);
}

.who-stakeholders-intro {
  color: rgba(255, 255, 255, 0.72);
  max-width: 780px;
}

.who-stakeholders-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.who-stakeholder-card {
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.who-stakeholder-card h3 {
  margin-bottom: 10px;
  color: #ffffff;
}

.who-stakeholder-card p {
  color: rgba(255, 255, 255, 0.72);
}

.who-pillars-shell {
  padding: 0;
}

.who-pillars-shell .section-head h2,
.who-pillars-shell .section-head .eyebrow {
  color: inherit;
}

.who-pillars-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.who-pillar {
  padding: 0;
  color: #111111;
  text-align: center;
}

.who-pillar-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  color: #ff8a00;
}

.who-pillar-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.who-pillar h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.who-pillar p {
  color: #5c4737;
  line-height: 1.9;
}

.who-leadership-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 42px;
}

.who-leadership-copy {
  padding: 0;
  color: #111111;
}

.who-leadership-copy .eyebrow,
.who-leadership-copy p,
.who-leadership-signature span {
  color: #5c4737;
}

.who-leadership-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.who-leadership-copy p {
  line-height: 1.95;
  margin-bottom: 20px;
}

.who-leadership-signature strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.who-leadership-photo img {
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.who-stakeholders-shell {
  padding: 0;
  background: transparent;
}

.who-stakeholders-intro {
  color: #5c4737;
  margin: 0 auto;
  max-width: 860px;
  text-align: center;
}

.who-stakeholders-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 42px;
}

.who-stakeholder-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.who-stakeholder-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  color: #ff8a00;
}

.who-stakeholder-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.who-stakeholder-card h3 {
  margin-bottom: 10px;
  color: #111111;
}

.who-stakeholder-card p {
  color: #5c4737;
}


.catalog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.catalog-card {
  overflow: hidden;
}

.catalog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.bullet-list,
.info-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li,
.info-list li {
  position: relative;
  padding-right: 18px;
  color: #4f3f33;
}

.bullet-list li + li,
.info-list li + li {
  margin-top: 10px;
}

.bullet-list li::before,
.info-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff8a00;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.about-direct-flow {
  display: grid;
  gap: 44px;
}

.about-direct-block {
  text-align: center;
}

.about-direct-block h2,
.about-values-head h2 {
  color: #111111;
  display: inline-block;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.02;
  margin-bottom: 26px;
  padding-bottom: 8px;
  position: relative;
}

.about-direct-block h2::after,
.about-values-head h2::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 12px;
  background: rgba(255, 138, 0, 0.9);
  z-index: -1;
}

.about-direct-block p {
  color: #5c4737;
  font-size: 1.12rem;
  line-height: 2;
  margin: 0 auto 14px;
  max-width: 1080px;
}

.about-values-head {
  margin-bottom: 42px;
  text-align: center;
}

.about-values-head .eyebrow {
  color: #ff8a00;
  margin-bottom: 10px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.about-value-item {
  text-align: center;
}

.about-value-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  color: #ff8a00;
}

.about-value-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-value-item h3 {
  color: #111111;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.about-value-item p {
  color: #5c4737;
  line-height: 1.9;
}

.about-leadership {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: 0.9fr 1.1fr;
}

.about-leadership-photo .leadership-photo {
  position: static;
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
}

.about-leadership-copy {
  text-align: right;
}

.about-leadership-copy h2 {
  margin-top: 10px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.2;
  color: #111111;
}

.about-leadership-text,
.about-leadership-signature span {
  color: #5c4737;
}

.about-leadership-text {
  line-height: 1.95;
  margin-bottom: 18px;
}

.about-leadership-signature {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 138, 0, 0.18);
}

.about-leadership-signature strong {
  display: block;
  color: #111111;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.about-panel--dark,
.contact-panel--dark,
.highlight-band {
  background: linear-gradient(145deg, #111111, #1e1e1e);
  color: #ffffff;
}

.about-panel--dark p,
.contact-panel--dark p,
.highlight-band p,
.about-panel--dark li,
.contact-panel--dark li {
  color: #ffd8ab;
}

.timeline-grid {
  grid-template-columns: repeat(4, 1fr);
}

.timeline-item {
  background: #111111;
  color: #ffffff;
  border-color: rgba(255, 138, 0, 0.2);
}

.timeline-item p {
  color: #ffd8ab;
}

.timeline-step {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: #ff8a00;
  color: #ffffff;
  font-weight: 800;
}

.contact-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-map-card {
  display: grid;
  gap: 18px;
}

.contact-map-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  background: #111111;
  color: #ffffff;
  font-weight: 800;
}

.contact-map-frame-wrap {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 138, 0, 0.16);
  background: #f7efe5;
  min-height: 360px;
}

.contact-map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.contact-panel--dark .eyebrow,
.highlight-band .eyebrow {
  color: #ff8a00;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
  color: #111111;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 138, 0, 0.22);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: #fffdfb;
  color: #111111;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.inner-cta {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #111111, #1b1b1b 60%, #ff8a00 60%, #ff8a00 100%);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.12);
}

.inner-cta p {
  color: #ffe2be;
}

.cta {
  margin-top: 28px;
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(145deg, #ff9b24, #ff7a00);
  color: #fff;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 14px 28px rgba(255, 122, 0, 0.28);
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(255, 122, 0, 0.34);
}

.executive {
  padding-top: 12px;
}

.executive-wrap {
  position: relative;
}

.executive-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 22px 48px rgba(17, 17, 17, 0.12);
}

.executive-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.executive-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(9, 9, 9, 0.28) 0%, rgba(10, 10, 10, 0.38) 38%, rgba(17, 17, 17, 0.78) 100%);
}

.executive-content {
  position: absolute;
  top: 80px;
  right: 64px;
  z-index: 1;
  max-width: 520px;
  color: #ffffff;
  text-align: right;
}

.executive-content h2 {
  margin-top: 10px;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  line-height: 1.2;
}

.executive-content p:last-child {
  margin-top: 18px;
  color: #ffe2be;
  font-size: 1.06rem;
}

.executive-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: min(1120px, calc(100% - 60px));
  margin: -120px auto 0;
}

.executive-card {
  padding: 30px 22px 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 138, 0, 0.22);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.12);
  text-align: right;
}

.executive-icon {
  width: 62px;
  height: 62px;
  display: inline-grid;
  place-items: center;
  border-radius: 20px;
  margin-bottom: 18px;
  background: linear-gradient(145deg, #111111, #262626);
  color: #ff8a00;
  font-weight: 800;
}

.executive-card h3 {
  margin-bottom: 12px;
  color: #111111;
}

.executive-card p {
  color: #5f4837;
}

.partners {
  position: relative;
  overflow: clip;
}

.partners::before,
.partners::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(12px);
}

.partners::before {
  width: 320px;
  height: 320px;
  top: 110px;
  left: -110px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.12), transparent 68%);
}

.partners::after {
  width: 260px;
  height: 260px;
  right: -70px;
  bottom: 40px;
  background: radial-gradient(circle, rgba(32, 32, 32, 0.08), transparent 70%);
}

.partners-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.partners-controls {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.partner-control {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 138, 0, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: #1b1b1b;
  font-size: 1.2rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 36px rgba(34, 24, 15, 0.08);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.partner-control:hover {
  transform: translateY(-2px);
  background: linear-gradient(145deg, #ff8a00, #de6b00);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(222, 107, 0, 0.22);
}

.partners-stage {
  margin-top: 30px;
  position: relative;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 247, 241, 0.96)),
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.12), transparent 36%);
  border: 1px solid rgba(190, 146, 94, 0.18);
  box-shadow: 0 28px 60px rgba(37, 28, 18, 0.08);
}

.partners-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.partners-slider {
  overflow: hidden;
  position: relative;
  direction: ltr;
  mask-image: linear-gradient(to left, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(to left, transparent, #000 9%, #000 91%, transparent);
}

.partners-track {
  display: flex;
  width: max-content;
  direction: ltr;
  align-items: stretch;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.partners--fade .partners-slider {
  direction: rtl;
  mask-image: none;
  -webkit-mask-image: none;
}

.partners--fade .partners-track {
  display: block;
  width: 100%;
  position: relative;
  will-change: auto;
  transform: none;
}

.partners--fade .partners-group {
  position: relative;
  width: 100%;
  min-height: 356px;
  padding-inline-end: 0;
}

.partners--fade .partner-logo {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(860px, 100%);
  max-width: 860px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.42s ease;
  transform: translateY(14px) scale(0.985);
}

.partners--fade .partner-logo.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.partners-group {
  display: flex;
  flex: 0 0 auto;
  direction: ltr;
  gap: 18px;
  padding-inline-end: 18px;
}

.partner-logo {
  flex: 0 0 clamp(220px, 23vw, 310px);
  direction: rtl;
  min-height: 280px;
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  grid-template-areas:
    "visual title"
    "visual meta";
  align-items: center;
  gap: 18px 28px;
  padding: 30px;
  text-align: right;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(251, 245, 238, 0.96));
  border: 1px solid rgba(211, 161, 102, 0.16);
  box-shadow: 0 22px 40px rgba(37, 28, 18, 0.08);
}

.partner-logo-visual {
  grid-area: visual;
  width: 100%;
  min-height: 186px;
  display: grid;
  place-items: center;
  margin-bottom: 0;
  padding: 28px 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 233, 0.92)),
    linear-gradient(145deg, rgba(255, 138, 0, 0.06), transparent);
  border: 1px solid rgba(190, 146, 94, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.partner-logo-image {
  width: min(200px, 100%);
  max-height: 126px;
  object-fit: contain;
  display: block;
}

.partner-logo-mark {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.partner-logo strong {
  grid-area: title;
  display: block;
  color: #111111;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.partner-logo small {
  grid-area: meta;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #7c5227;
  background: rgba(255, 138, 0, 0.1);
  border: 1px solid rgba(255, 138, 0, 0.16);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.partner-logo--script .partner-logo-mark,
.partner-logo--script strong,
.partner-logo--script small,
.partner-logo--dark .partner-logo-mark,
.partner-logo--dark strong,
.partner-logo--dark small {
  color: #111111;
}

.partner-logo--gold .partner-logo-mark,
.partner-logo--gold strong,
.partner-logo--gold small,
.partner-logo--warm .partner-logo-mark,
.partner-logo--warm strong,
.partner-logo--warm small {
  color: #b79263;
}

.partner-logo--sky .partner-logo-mark,
.partner-logo--sky strong {
  color: #4ebfe8;
}

.partner-logo--sky strong {
  color: #1b1b1b;
}

.partner-logo--sky small {
  color: #3f3f3f;
}

.partners-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.partners-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.14);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.partners-dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, #ff8a00, #de6b00);
  transform: scale(1.02);
}

.partner-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.partner-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 14px 18px;
  text-align: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 138, 0, 0.4);
  color: #c96d00;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(39, 28, 16, 0.05);
}

.partner-strip span::before {
  content: none;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.project-filters-band {
  padding-top: 48px;
  padding-bottom: 28px;
}

.homepage-projects {
  padding-top: 26px;
}

.homepage-projects-head {
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.homepage-projects-shell {
  display: grid;
  gap: 18px;
}

.homepage-projects-stage {
  position: relative;
}

.homepage-projects-list {
  position: relative;
  min-height: 620px;
  display: grid;
  gap: 18px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 250, 244, 0.98), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(255, 138, 0, 0.14);
  box-shadow: 0 24px 48px rgba(18, 18, 18, 0.08);
}

.homepage-project-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  min-height: 620px;
  border-radius: 34px;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
  transition: opacity 0.3s ease, transform 0.42s ease;
}

.homepage-project-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.homepage-project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.homepage-project-card:hover img {
  transform: scale(1.05);
}

.homepage-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0.24) 45%, rgba(17, 17, 17, 0.86) 100%);
}

.homepage-project-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: min(720px, 100%);
  padding: 34px;
  align-content: end;
}

.homepage-project-copy strong {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.12;
  color: #ffffff;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.32);
}

.homepage-project-summary {
  color: rgba(255, 255, 255, 0.88);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.homepage-project-meta,
.homepage-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.homepage-project-meta span,
.homepage-project-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.homepage-project-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-weight: 800;
}

.homepage-projects-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.homepage-projects-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.homepage-project-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.12);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.homepage-project-dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, #ff8a00, #de6b00);
}

.homepage-projects-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.homepage-project-control {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 138, 0, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: #111111;
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(18, 18, 18, 0.06);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.homepage-project-control:hover {
  transform: translateY(-2px);
  background: #111111;
  color: #ffffff;
}

.homepage-projects-list > .empty-state {
  margin: 0;
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 24px;
}

.project-filters-intro {
  max-width: 720px;
  color: #5f4b39;
}

.project-filters-grid,
.project-filter-chips,
.dynamic-projects-list {
  display: grid;
  gap: 18px;
}

.project-filters-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-filter-card-link {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(145deg, #fffaf4, #ffffff);
  border: 1px solid rgba(255, 138, 0, 0.18);
  box-shadow: 0 16px 30px rgba(35, 24, 10, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.project-filter-card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 0, 0.4);
  box-shadow: 0 20px 36px rgba(35, 24, 10, 0.12);
}

.project-filter-visual {
  position: relative;
  display: block;
  min-height: 220px;
  border-radius: 22px;
  overflow: hidden;
  background: #f2e7d8;
}

.project-filter-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.48));
}

.project-filter-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-filter-icon-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(17, 17, 17, 0.76);
  backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 14px 26px rgba(17, 17, 17, 0.22);
}

.project-filter-icon-badge svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-filter-count {
  color: #ff8a00;
  font-size: 0.9rem;
  font-weight: 800;
}

.project-filter-card-link strong {
  font-size: 1.35rem;
  color: #111111;
}

.project-filter-card-link p {
  color: #5f4b39;
}

.project-filter-cta {
  color: #ff8a00;
  font-weight: 800;
}

.ideas-showcase {
  padding-top: 20px;
}

.ideas-showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.ideas-showcase-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  color: #111111;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.12);
  font-weight: 800;
}

.ideas-showcase-grid,
.ideas-list-grid {
  display: grid;
  gap: 18px;
}

.ideas-showcase-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ideas-list-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.idea-card-link {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(145deg, #fffaf4, #ffffff);
  border: 1px solid rgba(255, 138, 0, 0.18);
  box-shadow: 0 16px 30px rgba(35, 24, 10, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.idea-card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 138, 0, 0.4);
  box-shadow: 0 20px 36px rgba(35, 24, 10, 0.12);
}

.idea-card-media {
  display: block;
  overflow: hidden;
  min-height: 250px;
  border-radius: 22px;
  background: #f2e7d8;
}

.idea-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.idea-card-link:hover .idea-card-media img {
  transform: scale(1.05);
}

.idea-card-pill,
.idea-card-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 800;
}

.idea-card-pill {
  background: rgba(255, 138, 0, 0.12);
  color: #b26200;
}

.idea-card-link strong {
  font-size: 1.3rem;
  color: #111111;
}

.idea-card-link p {
  color: #5f4b39;
}

.idea-card-meta {
  color: #6a5441;
  background: rgba(17, 17, 17, 0.05);
}

.idea-card-action {
  color: #ff8a00;
  font-weight: 800;
}

.page-hero--ideas .page-hero-overlay {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.68));
}

.project-filter-chips {
  grid-template-columns: repeat(auto-fit, minmax(140px, max-content));
  align-items: center;
  margin-bottom: 28px;
}

.project-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 138, 0, 0.22);
  color: #5a4636;
  text-decoration: none;
  background: #fff;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.project-filter-chip:hover,
.project-filter-chip.is-active {
  background: #111111;
  color: #fff;
  transform: translateY(-1px);
}

.dynamic-projects-list {
  position: relative;
  min-height: 620px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 250, 244, 0.98), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(255, 138, 0, 0.14);
  box-shadow: 0 24px 48px rgba(18, 18, 18, 0.08);
}

.dynamic-projects-shell {
  display: grid;
  gap: 18px;
}

.dynamic-projects-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dynamic-projects-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dynamic-project-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.12);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.dynamic-project-dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, #ff8a00, #de6b00);
}

.dynamic-projects-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dynamic-project-control {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 138, 0, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: #111111;
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(18, 18, 18, 0.06);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.dynamic-project-control:hover {
  transform: translateY(-2px);
  background: #111111;
  color: #ffffff;
}

.dynamic-project-card {
  position: relative;
  inset: 0;
  overflow: hidden;
  min-height: 620px;
  border-radius: 34px;
  background: #141414;
  box-shadow: none;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
  transition: opacity 0.3s ease, transform 0.42s ease;
  position: absolute;
}

.dynamic-project-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.ideas-list-grid .dynamic-project-card--idea {
  position: relative;
  inset: auto;
  min-height: 440px;
  border-radius: 28px;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  box-shadow: 0 20px 38px rgba(18, 18, 18, 0.14);
}

.ideas-list-grid .dynamic-project-card--idea .dynamic-project-copy {
  max-width: 100%;
  padding: 24px;
}

.dynamic-project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.dynamic-project-card:hover img {
  transform: scale(1.05);
}

.dynamic-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0.24) 45%, rgba(17, 17, 17, 0.86) 100%);
}

.dynamic-project-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: min(720px, 100%);
  padding: 34px;
  align-content: end;
}

.dynamic-project-copy strong {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.12;
  color: #ffffff;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.32);
}

.dynamic-project-summary {
  color: rgba(255, 255, 255, 0.88);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dynamic-project-meta,
.dynamic-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dynamic-project-meta span,
.dynamic-project-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.dynamic-project-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-weight: 800;
}

.dynamic-projects-list > .empty-state {
  margin: 0;
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 24px;
}

.project-detail-section {
  padding-top: 40px;
}

.project-detail-shell {
  display: grid;
  gap: 28px;
}

.project-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.project-detail-media-panel,
.project-detail-info-panel,
.project-detail-gallery-shell {
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(145deg, #fffaf4, #ffffff);
  border: 1px solid rgba(255, 138, 0, 0.18);
  box-shadow: 0 18px 34px rgba(35, 24, 10, 0.08);
}

.project-detail-main-visual {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 520px;
  background: #f5eadb;
}

.project-detail-main-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.project-detail-main-visual img[role="button"] {
  cursor: zoom-in;
}

.project-detail-image-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  cursor: pointer;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.58);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.project-detail-image-nav:hover {
  background: rgba(17, 17, 17, 0.78);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.28);
}

.project-detail-image-nav--prev {
  right: 26px;
}

.project-detail-image-nav--next {
  left: 26px;
}

.project-detail-main-caption {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.project-detail-main-caption p,
.project-detail-info-panel p,
.project-detail-gallery-copy p {
  color: #5f4b39;
}

.project-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.project-detail-thumb {
  padding: 0;
  border: 1px solid rgba(255, 138, 0, 0.18);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.project-detail-thumb:hover,
.project-detail-thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 0, 0.48);
  box-shadow: 0 14px 26px rgba(35, 24, 10, 0.1);
}

.project-detail-thumb img {
  width: 100%;
  height: 100%;
  min-height: 92px;
  object-fit: cover;
  display: block;
}

.project-detail-info-panel {
  display: grid;
  gap: 16px;
  align-content: start;
}

.project-detail-info-panel h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.14;
  color: #111111;
}

.project-detail-breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.12);
  color: #b26200;
  font-weight: 800;
}

.project-detail-facts {
  display: grid;
  gap: 12px;
}

.project-detail-fact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 248, 239, 0.92);
  border: 1px solid rgba(255, 138, 0, 0.12);
}

.project-detail-fact strong {
  color: #111111;
}

.project-detail-fact span {
  color: #6a5441;
  font-weight: 700;
}

.project-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-detail-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #111111;
  color: #fff;
  font-weight: 700;
}

.project-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.project-detail-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.project-detail-switch {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 20px;
  text-decoration: none;
  background: rgba(255, 248, 239, 0.92);
  border: 1px solid rgba(255, 138, 0, 0.12);
  color: #111111;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.project-detail-switch:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 0, 0.36);
  box-shadow: 0 14px 26px rgba(35, 24, 10, 0.08);
}

.project-detail-switch.is-disabled {
  opacity: 0.56;
  pointer-events: none;
}

.project-detail-switch-label {
  color: #8c6d4d;
  font-size: 0.86rem;
  font-weight: 800;
}

.project-detail-switch strong {
  line-height: 1.4;
}

.project-detail-back,
.project-detail-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.project-detail-back {
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: #111111;
  background: #fff;
}

.project-detail-action-link {
  background: linear-gradient(145deg, #111111, #2c2c2c);
  color: #fff;
}

.project-detail-gallery-shell {
  display: grid;
  gap: 18px;
}

.project-detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-detail-gallery-card {
  display: grid;
  gap: 12px;
}

.project-detail-gallery-trigger {
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background: #111111;
  min-height: 280px;
}

.project-detail-gallery-trigger img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.project-detail-gallery-trigger:hover img {
  transform: scale(1.04);
}

.project-detail-gallery-copy {
  display: grid;
  gap: 8px;
}

.project-lightbox-open {
  overflow: hidden;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 28px;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(10px);
}

.project-lightbox[hidden] {
  display: none;
}

.project-lightbox-dialog {
  display: grid;
  gap: 16px;
  max-width: min(1100px, calc(100vw - 120px));
  margin: 0 auto;
}

.project-lightbox-media {
  overflow: hidden;
  border-radius: 28px;
  background: #111111;
  max-height: 78vh;
}

.project-lightbox-media img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.project-lightbox-copy {
  display: grid;
  gap: 8px;
  padding: 0 8px;
  color: #ffffff;
}

.project-lightbox-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.project-lightbox-close,
.project-lightbox-nav {
  border: 0;
  cursor: pointer;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.project-lightbox-close {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.project-lightbox-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 2rem;
}

.project-detail-empty {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 248, 239, 0.92);
  border: 1px solid rgba(255, 138, 0, 0.16);
}

.project-detail-section.is-empty .project-detail-main-visual,
.project-detail-section.is-empty .project-detail-gallery-shell {
  opacity: 0.84;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 300px;
  box-shadow: 0 16px 34px rgba(35, 24, 10, 0.16);
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 8%, rgba(17, 17, 17, 0.82) 100%);
  color: #fff;
}

.project-meta p {
  color: #ffd8a8;
  font-size: 0.92rem;
}

.project-card:hover img {
  transform: scale(1.08);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  padding: 26px 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(255, 138, 0, 0.18);
  box-shadow: var(--shadow-soft);
}

.service-index {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #111111;
  color: #ff8a00;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: #574232;
}

.why-us-shell {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 24px;
  align-items: start;
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(135deg, #131313 0%, #1e1e1e 54%, #ffffff 54%, #ffffff 100%);
  border: 1px solid rgba(255, 138, 0, 0.2);
  box-shadow: 0 20px 40px rgba(18, 18, 18, 0.08);
}

.why-us-copy {
  padding: 28px 24px;
  border-radius: 24px;
  background: linear-gradient(160deg, #111111, #202020);
  border: 1px solid rgba(255, 138, 0, 0.16);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  color: #ffffff;
}

.why-us-copy h2 {
  margin-top: 8px;
}

.why-us-copy .eyebrow {
  color: #ff8a00;
}

.why-us-copy p:last-child {
  margin-top: 14px;
  color: #ffd8a8;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-card {
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(255, 138, 0, 0.18);
}

.why-card strong {
  display: block;
  margin-bottom: 10px;
  color: #111111;
}

.why-card p {
  color: #5b4636;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  padding: 26px 22px;
  border-radius: 24px;
  background: #111111;
  color: #ffffff;
  border: 1px solid rgba(255, 138, 0, 0.24);
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.08);
}

.process-step span {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: #ff8a00;
  color: #ffffff;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 10px;
}

.process-step p {
  color: #ffddb3;
}

.leadership-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 26px;
  border-radius: 34px;
  background: linear-gradient(135deg, #f7f7f7 0%, #ffffff 100%);
  border: 1px solid rgba(255, 138, 0, 0.18);
  box-shadow: 0 22px 46px rgba(17, 17, 17, 0.08);
}

.leadership-photo-wrap {
  position: relative;
  height: 620px;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
}

.leadership-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.leadership-content {
  padding: 34px 36px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(255, 138, 0, 0.2);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.06);
}

.leadership-content h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.25;
  color: #111111;
}

.leadership-text {
  margin-top: 18px;
  color: #4f3f33;
  font-size: 1.04rem;
  line-height: 1.95;
}

.leadership-signature {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 138, 0, 0.18);
}

.leadership-signature strong {
  display: block;
  color: #111111;
  font-size: 1.5rem;
}

.leadership-signature span {
  display: block;
  margin-top: 8px;
  color: #ff8a00;
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial {
  margin: 0;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #ff8a00;
  box-shadow: var(--shadow-soft);
}

.testimonial p {
  color: #3b2a1a;
}

.testimonial cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  color: var(--wood-500);
  font-weight: 700;
}

.faq-shell {
  display: grid;
  grid-template-columns: 1fr;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(255, 138, 0, 0.18);
  border-radius: 20px;
  padding: 0 20px;
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 22px 0;
  color: #181818;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 20px;
  color: #5c4737;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px 32px;
  border-radius: 30px;
  background: linear-gradient(135deg, #111111, #1c1c1c 58%, #ff8a00 58%, #ff8a00 100%);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.14);
}

.cta-band-inner h2 {
  margin-top: 8px;
}

.cta-band-inner p:last-child {
  margin-top: 12px;
  color: #ffe3bf;
}

.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-secondary {
  background: #ffffff;
  color: #111111;
  box-shadow: none;
}

.cta-secondary:hover {
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.15);
}

.site-footer {
  background:
    linear-gradient(130deg, #111111, #1d1d1d 58%, #2a2a2a 100%);
  color: #ffb86c;
  padding: 48px 0;
  border-top: 1px solid rgba(255, 138, 0, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
}

.site-footer ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  text-decoration: none;
  color: #ffb86c;
}

.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 95;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-float-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #20c15a, #129640);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(18, 150, 64, 0.28);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(18, 150, 64, 0.34);
}

.whatsapp-float-button svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float-bubble {
  width: min(280px, calc(100vw - 120px));
  padding: 16px 18px 14px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(18, 150, 64, 0.14);
  box-shadow: 0 18px 40px rgba(18, 24, 32, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  position: relative;
}

.whatsapp-float-bubble.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-float-bubble strong {
  display: block;
  margin-bottom: 4px;
  color: #0f1720;
  font-size: 1rem;
}

.whatsapp-float-bubble p {
  color: #57606a;
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 8px;
}

.whatsapp-float-bubble span {
  color: #129640;
  font-weight: 800;
  font-size: 0.88rem;
}

.whatsapp-float-close {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 23, 32, 0.06);
  color: #55606c;
  cursor: pointer;
}

.socials {
  margin-top: 12px;
  display: flex;
  gap: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Projects – Direct Style (No Cards)
   ============================================================ */

/* --- Stats row --- */
.proj-stats-section {
  padding-top: 0;
  padding-bottom: 0;
}

.proj-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 48px 0;
  border-top: 1px solid rgba(255, 138, 0, 0.18);
  border-bottom: 1px solid rgba(255, 138, 0, 0.18);
}

.proj-stat-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.proj-stat-item strong {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: #ff8a00;
  font-weight: 800;
  line-height: 1;
}

.proj-stat-item span {
  display: block;
  margin-top: 10px;
  color: #5c4737;
  font-weight: 600;
  font-size: 0.95rem;
}

.proj-stat-sep {
  width: 1px;
  height: 64px;
  background: rgba(255, 138, 0, 0.22);
  flex-shrink: 0;
}

/* --- Section heading --- */
.proj-section-head {
  margin-bottom: 48px;
}

.proj-section-head h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #111111;
  margin-top: 10px;
  position: relative;
  padding-bottom: 16px;
}

.proj-section-head h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 54px;
  height: 4px;
  background: #ff8a00;
  border-radius: 2px;
}

/* --- Project list entries --- */
.proj-list {
  display: flex;
  flex-direction: column;
}

.proj-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.proj-entry:last-child {
  border-bottom: none;
}

.proj-entry:nth-child(even) .proj-entry-media {
  order: 2;
}

.proj-entry:nth-child(even) .proj-entry-copy {
  order: 1;
}

.proj-entry-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.proj-entry-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff8a00;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.proj-entry-cat svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proj-entry-copy h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  color: #111111;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 16px;
}

.proj-entry-copy h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 42px;
  height: 3px;
  background: #ff8a00;
  border-radius: 2px;
}

.proj-entry-copy > p {
  color: #5c4737;
  line-height: 1.95;
  margin-bottom: 24px;
  font-size: 1.02rem;
}

.proj-feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.proj-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #3a3a3a;
  font-size: 0.97rem;
  line-height: 1.65;
}

.proj-feat-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: #ff8a00;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}

/* --- Coming projects --- */
.proj-coming-section {
  background: #faf8f5;
}

.proj-coming-head {
  max-width: 620px;
  margin-bottom: 40px;
}

.proj-coming-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: #111111;
  margin-top: 10px;
  position: relative;
  padding-bottom: 16px;
}

.proj-coming-head h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 4px;
  background: #ff8a00;
  border-radius: 2px;
}

.proj-coming-desc {
  color: #5c4737;
  font-size: 1.02rem;
  line-height: 1.85;
  margin-top: 14px;
}

.proj-coming-list {
  display: flex;
  flex-direction: column;
}

.proj-coming-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.proj-coming-item:last-child {
  border-bottom: none;
}

.proj-coming-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  color: #ff8a00;
  margin-top: 2px;
}

.proj-coming-icon svg {
  width: 46px;
  height: 46px;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proj-coming-item h3 {
  font-size: 1.15rem;
  color: #111111;
  margin-bottom: 7px;
}

.proj-coming-item p {
  color: #5c4737;
  font-size: 0.97rem;
  line-height: 1.82;
}

/* --- Steps --- */
.proj-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  padding-top: 10px;
}

.proj-steps::before {
  content: "";
  position: absolute;
  top: 31px;
  right: calc(12.5% - 20px);
  left: calc(12.5% - 20px);
  height: 1px;
  background: linear-gradient(90deg, #ff8a00 0%, rgba(255, 138, 0, 0.15) 100%);
}

.proj-step {
  padding: 0 28px 0 0;
  position: relative;
}

.proj-step-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.proj-step-icon {
  width: 46px;
  height: 46px;
  stroke: #ff8a00;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: #fff5ec;
  border-radius: 50%;
  padding: 5px;
}

.proj-step-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: #ff8a00;
  letter-spacing: 0.1em;
}

.proj-step h3 {
  font-size: 1.15rem;
  color: #111111;
  margin: 0;
}

.proj-step p {
  color: #5c4737;
  line-height: 1.85;
  font-size: 0.97rem;
}

/* --- Responsive --- */
@media (max-width: 1020px) {
  .proj-entry {
    gap: 32px;
  }

  .proj-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .proj-steps::before {
    display: none;
  }

  .proj-step {
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  .whatsapp-float {
    left: 14px;
    bottom: 14px;
    gap: 8px;
  }

  .whatsapp-float-button {
    width: 58px;
    height: 58px;
  }

  .whatsapp-float-bubble {
    width: min(232px, calc(100vw - 94px));
    padding: 14px 14px 12px;
  }

  .proj-stats-row {
    flex-wrap: wrap;
    gap: 28px 0;
    padding: 36px 0;
  }

  .proj-stat-item {
    flex-basis: 50%;
    padding: 0 16px;
  }

  .proj-stat-sep {
    display: none;
  }

  .proj-entry {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 42px 0;
  }

  .proj-entry:nth-child(even) .proj-entry-media,
  .proj-entry:nth-child(even) .proj-entry-copy {
    order: unset;
  }

  .proj-entry-media img {
    height: 240px;
  }

  .proj-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 1020px) {
  .header-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 0;
  }

  .brand,
  .lang-btn {
    position: static;
    transform: none;
    margin-inline: auto;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    padding-inline: 0;
  }

  .brand-text {
    min-width: 0;
  }

  .partners-group {
    gap: 26px;
    padding-inline-end: 26px;
  }

  .partner-logo {
    flex-basis: clamp(220px, 52vw, 280px);
    min-height: 250px;
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    padding: 24px;
    gap: 16px 22px;
  }

  .partner-logo strong {
    font-size: 1.9rem;
    line-height: 1.1;
  }

  .partner-logo small {
    font-size: 0.9rem;
  }

  .partner-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-filters-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage-projects-list {
    min-height: 520px;
  }

  .homepage-project-card {
    min-height: 520px;
  }

  .homepage-project-copy {
    padding: 26px;
    max-width: min(620px, 100%);
  }

  .ideas-showcase-grid,
  .ideas-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dynamic-projects-list {
    min-height: 520px;
  }

  .dynamic-project-card {
    min-height: 520px;
  }

  .dynamic-project-copy {
    padding: 26px;
    max-width: min(620px, 100%);
  }

  .project-detail-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-detail-grid {
    grid-template-columns: 1fr;
  }

  .project-detail-switcher {
    grid-template-columns: 1fr;
  }

  .ideas-showcase-head {
    align-items: start;
    flex-direction: column;
  }

  .executive-hero {
    min-height: 560px;
  }

  .executive-content {
    top: 56px;
    right: 34px;
    max-width: 420px;
  }

  .executive-cards {
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 30px);
    margin-top: -90px;
  }

  .metric-grid,
  .project-showcase,
  .future-projects-grid,
  .catalog-grid,
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-stakeholders-grid {
    grid-template-columns: 1fr;
  }

  .who-metrics-grid,
  .who-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .who-story-shell,
  .who-leadership-band {
    grid-template-columns: 1fr;
  }

  .who-story-content,
  .who-leadership-copy,
  .who-pillars-shell {
    padding: 0;
  }

  .who-story-shell,
  .who-leadership-band {
    gap: 28px;
  }

  .future-projects-shell {
    width: min(100%, calc(100vw - 24px));
    min-height: auto;
  }

  .future-projects-head {
    grid-template-columns: 1fr;
  }

  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-leadership {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .leadership-shell {
    grid-template-columns: 1fr;
  }

  .leadership-photo-wrap {
    height: 520px;
  }

  .why-us-shell {
    grid-template-columns: 1fr;
  }

  .partner-logo strong {
    font-size: 1.8rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    z-index: 80;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
  }

  .site-header::before {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

  .project-filters-band {
    padding-bottom: 20px;
  }

  .executive {
    padding-top: 8px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "menu brand lang";
    align-items: center;
    gap: 12px;
    padding: 12px 0 10px;
  }

  .brand,
  .lang-btn {
    position: static;
    transform: none;
    margin-inline: 0;
  }

  .brand {
    grid-area: brand;
    grid-column: 2;
    justify-self: center;
    gap: 8px;
  }

  .lang-btn {
    grid-area: lang;
    grid-column: 3;
    justify-self: end;
    min-width: 92px;
    padding: 9px 14px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    grid-area: menu;
    grid-column: 1;
    justify-self: start;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-text strong {
    font-size: 0.84rem;
  }

  .brand-text small {
    font-size: 0.64rem;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 86vw);
    min-height: 100dvh;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    padding: 26px 18px 24px;
    background: #ffffff;
    box-shadow: -18px 0 40px rgba(35, 24, 10, 0.18);
    transform: translateX(110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
    overflow-y: auto;
  }

  .nav::before {
    content: "القائمة";
    display: block;
    margin-bottom: 8px;
    color: #a56a33;
    font-weight: 800;
    font-size: 0.98rem;
    padding: 0 6px 10px;
    border-bottom: 1px solid rgba(145, 102, 58, 0.12);
  }

  .nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    white-space: nowrap;
    background: #ffffff;
    border: 1px solid rgba(145, 102, 58, 0.12);
    box-shadow: 0 8px 16px rgba(35, 24, 10, 0.05);
    color: #22170f;
  }

  .nav a::after {
    bottom: 9px;
    right: 16px;
    width: 24px;
    height: 3px;
    border-radius: 999px;
  }

  .nav a:hover::after,
  .nav a.active::after {
    width: 24px;
  }

  .nav a.active {
    background: #fff7ed;
    border-color: rgba(255, 138, 0, 0.22);
    color: #23170f;
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(17, 17, 17, 0.46);
  }

  body.menu-open {
    overflow: hidden;
  }

  .nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-backdrop.is-visible {
    display: block;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateX(-50%) translateY(8px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateX(-50%) translateY(-8px) rotate(-45deg);
  }

  html[dir="ltr"] .header-inner {
    grid-template-areas: "lang brand menu";
  }

  html[dir="ltr"] .brand {
    grid-column: 2;
    justify-self: center;
  }

  html[dir="ltr"] .lang-btn {
    grid-column: 1;
    justify-self: start;
  }

  html[dir="ltr"] .menu-toggle {
    grid-column: 3;
    justify-self: end;
  }

  html[dir="ltr"] .nav {
    right: auto;
    left: 0;
    transform: translateX(-110%);
    box-shadow: 18px 0 40px rgba(35, 24, 10, 0.18);
  }

  html[dir="ltr"] .nav.is-open {
    transform: translateX(0);
  }

  html[dir="ltr"] .nav::before {
    content: "Menu";
  }

  html[dir="ltr"] .nav a::after {
    right: auto;
    left: 16px;
  }

  .page-hero {
    padding: 150px 0 80px;
  }

  .page-hero-content {
    padding: 24px 20px;
  }

  .page-hero--immersive {
    min-height: 420px;
    padding: 130px 0 70px;
  }

  .contact-hero {
    min-height: 500px;
  }

  .contact-hero .page-hero-content {
    max-width: 100%;
    padding: 0;
  }

  .contact-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .page-hero--immersive .page-hero-content {
    padding: 0;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .executive-hero {
    min-height: 460px;
  }

  .executive-content {
    right: 24px;
    left: 24px;
    top: 34px;
    max-width: none;
  }

  .executive-cards {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 18px;
  }

  .leadership-shell {
    padding: 18px;
  }

  .leadership-photo-wrap {
    height: 420px;
  }

  .leadership-content {
    padding: 24px 20px;
  }

  .partners-head {
    flex-direction: column;
    align-items: stretch;
  }

  .homepage-projects-head {
    align-items: start;
    flex-direction: column;
  }

  .homepage-projects-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .homepage-projects-controls {
    justify-content: flex-start;
  }

  .homepage-projects-dots {
    justify-content: center;
  }

  .homepage-projects-list {
    min-height: 420px;
    border-radius: 26px;
  }

  .homepage-project-card {
    min-height: 420px;
    border-radius: 26px;
  }

  .homepage-project-copy {
    padding: 18px;
    max-width: 100%;
  }

  .homepage-project-copy strong {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .homepage-project-summary {
    line-clamp: 3;
    -webkit-line-clamp: 3;
  }

  .homepage-project-control {
    width: 50px;
    height: 50px;
  }

  .partners-controls {
    order: 2;
    align-self: flex-start;
    margin-top: 14px;
  }

  html[dir="ltr"] .partners-controls {
    align-self: flex-end;
  }

  .partners-head > div:not(.partners-controls) {
    order: 1;
  }

  .partners--fade .partners-group {
    min-height: 340px;
  }

  .partners-stage {
    padding: 22px;
    border-radius: 28px;
  }

  .partners-stage::before {
    inset: 12px;
    border-radius: 22px;
  }

  .partners--fade .partner-logo,
  .partner-logo {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "title"
      "meta";
    justify-items: center;
    text-align: center;
    min-height: 0;
    padding: 24px 18px 22px;
    gap: 16px;
  }

  .partner-logo-visual {
    min-height: 154px;
    width: min(100%, 320px);
    padding: 22px 18px;
  }

  .partner-logo strong {
    max-width: none;
    font-size: clamp(1.8rem, 6.8vw, 2.6rem);
  }

  .partner-logo small {
    justify-self: center;
  }

  .partners:not(.partners--fade) .partners-slider {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .partners:not(.partners--fade) .partners-track {
    transform: none !important;
  }

  .partners:not(.partners--fade) .partners-group {
    gap: 14px;
    padding-inline-end: 14px;
  }

  .partners:not(.partners--fade) .partner-logo {
    flex: 0 0 84%;
    scroll-snap-align: start;
  }

  .portfolio-grid,
  .metric-grid,
  .project-showcase,
  .future-projects-grid,
  .about-values-grid,
  .catalog-grid,
  .services-grid,
  .who-metrics-grid,
  .who-values-grid,
  .who-pillars-grid,
  .why-us-grid,
  .timeline-grid,
  .process-grid,
  .partner-strip,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid,
  .portfolio-grid,
  .executive-cards,
  .project-showcase,
  .future-projects-grid,
  .about-values-grid,
  .catalog-grid,
  .services-grid,
  .who-metrics-grid,
  .who-values-grid,
  .who-pillars-grid,
  .why-us-grid,
  .timeline-grid,
  .process-grid,
  .partner-strip,
  .testimonial-grid,
  .proj-steps {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 84%;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 6px;
  }

  .metric-grid::-webkit-scrollbar,
  .portfolio-grid::-webkit-scrollbar,
  .executive-cards::-webkit-scrollbar,
  .project-showcase::-webkit-scrollbar,
  .future-projects-grid::-webkit-scrollbar,
  .about-values-grid::-webkit-scrollbar,
  .catalog-grid::-webkit-scrollbar,
  .services-grid::-webkit-scrollbar,
  .who-metrics-grid::-webkit-scrollbar,
  .who-values-grid::-webkit-scrollbar,
  .who-pillars-grid::-webkit-scrollbar,
  .why-us-grid::-webkit-scrollbar,
  .timeline-grid::-webkit-scrollbar,
  .process-grid::-webkit-scrollbar,
  .partner-strip::-webkit-scrollbar,
  .testimonial-grid::-webkit-scrollbar,
  .proj-steps::-webkit-scrollbar {
    display: none;
  }

  .metric-grid > *,
  .portfolio-grid > *,
  .executive-cards > *,
  .project-showcase > *,
  .future-projects-grid > *,
  .about-values-grid > *,
  .catalog-grid > *,
  .services-grid > *,
  .who-metrics-grid > *,
  .who-values-grid > *,
  .who-pillars-grid > *,
  .why-us-grid > *,
  .timeline-grid > *,
  .process-grid > *,
  .partner-strip > *,
  .testimonial-grid > *,
  .proj-steps > * {
    scroll-snap-align: start;
  }

  .metric-grid,
  .partner-strip,
  .who-metrics-grid {
    grid-auto-columns: 68%;
  }

  .about-values-grid,
  .who-values-grid,
  .who-pillars-grid,
  .timeline-grid,
  .process-grid,
  .services-grid,
  .why-us-grid,
  .proj-steps {
    grid-auto-columns: 80%;
  }

  .portfolio-grid,
  .executive-cards,
  .testimonial-grid,
  .project-showcase,
  .future-projects-grid {
    grid-auto-columns: 86%;
  }

  .executive-cards {
    width: 100%;
    margin-top: 18px;
  }

  .partner-strip span {
    min-height: 64px;
  }

  .who-hero {
    min-height: 560px;
  }

  .who-intro-block h2 {
    font-size: clamp(2.3rem, 9vw, 4rem);
  }

  .about-direct-block h2,
  .about-values-head h2 {
    font-size: clamp(2.3rem, 9vw, 4rem);
  }

  .who-intro-block p {
    font-size: 1rem;
  }

  .about-direct-block p {
    font-size: 1rem;
  }

  .who-metrics-section {
    margin-top: -34px;
  }

  .who-story-content,
  .who-leadership-copy,
  .who-pillars-shell,
  .who-stakeholders-shell {
    padding: 0;
  }

  .who-metric-card {
    border-inline-start: 0;
    border-top: 1px solid rgba(255, 138, 0, 0.22);
    padding-top: 18px;
  }

  .who-story-media img,
  .who-leadership-photo img {
    min-height: 320px;
  }

  .inner-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .future-projects-shell {
    width: min(100%, calc(100vw - 16px));
    padding: 26px 16px 22px;
    background: linear-gradient(180deg, #111111 0%, #1b1b1b 26%, #ffffff 26%, #ffffff 100%);
  }

  .future-projects-shell::before {
    width: 100%;
    height: 26%;
    inset: 0 0 auto 0;
    clip-path: none;
  }

  .future-projects-copy h2,
  .future-projects-intro {
    max-width: none;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .partner-logo {
    flex-basis: min(86vw, 280px);
    min-height: 0;
    padding: 20px 16px;
  }

  .partner-logo strong {
    font-size: 1.55rem;
    line-height: 1.16;
  }

  .partner-logo small {
    font-size: 0.84rem;
  }

  .partner-control {
    width: 50px;
    height: 50px;
  }

  .partner-strip span {
    min-height: 62px;
    padding: 12px 16px;
  }

  .project-card {
    min-height: 250px;
  }

  .project-filters-grid {
    grid-template-columns: 1fr;
  }

  .project-filter-chip {
    width: 100%;
  }

  .dynamic-projects-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .dynamic-projects-controls {
    justify-content: flex-start;
  }

  .dynamic-projects-dots {
    justify-content: center;
  }

  .project-detail-gallery-grid {
    grid-template-columns: 1fr;
  }

  .ideas-showcase-grid,
  .ideas-list-grid {
    grid-template-columns: 1fr;
  }

  .dynamic-projects-list {
    min-height: 420px;
    border-radius: 26px;
  }

  .dynamic-project-card {
    min-height: 420px;
    border-radius: 26px;
  }

  .ideas-list-grid .dynamic-project-card--idea {
    min-height: 360px;
    border-radius: 24px;
  }

  .ideas-list-grid .dynamic-project-card--idea .dynamic-project-copy {
    padding: 18px;
  }

  .dynamic-project-copy {
    padding: 18px;
    max-width: 100%;
  }

  .dynamic-project-copy strong {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .dynamic-project-summary {
    line-clamp: 3;
    -webkit-line-clamp: 3;
  }

  .dynamic-project-control {
    width: 50px;
    height: 50px;
  }

  .project-detail-main-visual,
  .project-detail-main-visual img {
    min-height: 300px;
  }

  .project-detail-image-nav {
    width: 62px;
    height: 62px;
    font-size: 2.2rem;
  }

  .project-detail-image-nav--prev {
    right: 18px;
  }

  .project-detail-image-nav--next {
    left: 18px;
  }

  .project-detail-image-nav {
    width: 46px;
    height: 46px;
    font-size: 1.55rem;
  }

  .project-detail-image-nav--prev {
    right: 12px;
  }

  .project-detail-image-nav--next {
    left: 12px;
  }

  .project-detail-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-lightbox {
    grid-template-columns: 1fr;
    padding: 20px 14px;
  }

  .project-lightbox-dialog {
    max-width: 100%;
  }

  .project-lightbox-nav {
    display: none;
  }

  .project-lightbox-close {
    top: 14px;
    left: 14px;
  }
}

  /* =============================================
     LTR overrides – English mode (html[dir="ltr"])
     ============================================= */

  /* Flip directional underline bars anchored to right → left */
  html[dir="ltr"] .proj-section-head h2::after,
  html[dir="ltr"] .proj-coming-head h2::after,
  html[dir="ltr"] .proj-entry-copy h3::after {
    right: auto;
    left: 0;
  }

  /* Flip quote block border from right to left side */
  html[dir="ltr"] .who-story-quote {
    border-right: none;
    border-left: 4px solid #ff8a00;
    padding-right: 0;
    padding-left: 22px;
  }

  /* Navigation and footer link alignment */
  html[dir="ltr"] .nav {
    direction: ltr;
  }

  @media (min-width: 701px) {
    html[dir="ltr"] .header-inner {
      grid-template-areas: "brand nav lang";
    }

    html[dir="ltr"] .brand {
      justify-self: start;
    }

    html[dir="ltr"] .brand-text {
      text-align: left;
    }

    html[dir="ltr"] .lang-btn {
      justify-self: end;
    }
  }

  html[dir="ltr"] .nav a::after {
    right: auto;
    left: 0;
  }

  html[dir="ltr"] .contact-hero .page-hero-content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  /* Alternating project entries: swap image/text order for even entries in LTR */
  html[dir="ltr"] .proj-entry:nth-child(even) .proj-entry-img {
    order: 1;
  }
  html[dir="ltr"] .proj-entry:nth-child(even) .proj-entry-copy {
    order: 0;
  }
