:root {
  --bg: #0c1114;
  --bg-2: #11171b;
  --panel: #151b1f;
  --panel-2: #1a2024;
  --line: rgba(242, 151, 22, 0.38);
  --line-soft: rgba(255, 255, 255, 0.1);
  --text: #f6f3ed;
  --muted: #b7b0a6;
  --dim: #80796f;
  --gold: #f6a313;
  --gold-2: #ffc73e;
  --red: #d71924;
  --red-2: #a80f18;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1180px;
}

/* News page late overrides */
body.news-page .news-header {
  position: fixed;
  inset: 0 0 auto 0;
  grid-template-columns: auto 1fr auto auto;
  width: 100%;
  max-width: none;
  height: 86px;
  margin: 0;
  padding: 14px clamp(32px, 4.8vw, 64px);
  border-radius: 0;
  background: rgba(6, 6, 7, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

body.news-page .news-header.is-scrolled {
  padding: 12px clamp(32px, 4.8vw, 64px);
  border-radius: 0;
  background: rgba(6, 6, 7, 0.95);
}

body.news-page .news-header .desktop-nav a:hover,
body.news-page .news-header .desktop-nav a.active {
  color: #ff1f2a;
}

body.news-page .news-header .desktop-nav a::after {
  background: #ff1f2a;
}

body.news-page .news-phone {
  min-width: 172px;
  border-color: #f6a313;
  border-radius: 999px;
  background: transparent;
  color: #fff;
}

body.news-page .news-phone svg {
  color: #ff7b1c;
}

body.news-page .news-footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  background:
    radial-gradient(circle at 92% 96%, rgba(215, 25, 36, 0.36), transparent 18rem),
    #111;
}

body.news-page .news-footer .footer-grid {
  grid-template-columns: 1.35fr 0.8fr 1.05fr 1.15fr;
}

body.news-page .news-footer p,
body.news-page .news-footer a {
  color: #d7d0c8;
}

body.news-page .news-footer h3 {
  color: #fff;
}

@media (max-width: 1100px) {
  body.news-page .news-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body.news-page .news-header {
    height: auto;
    padding: 12px 20px;
  }
}

/* Article detail page */
.article-page {
  background: #fff;
}

.article-page .container {
  width: min(100% - 80px, 1180px);
}

.article-hero {
  padding: 112px 0 28px;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 36%, rgba(255, 255, 255, 0.46) 58%, rgba(255, 255, 255, 0) 100%),
    #f7f8fa;
  overflow: hidden;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: #747982;
  font-size: 13px;
}

.article-breadcrumb a:hover {
  color: #ff1f2a;
}

.article-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 4px;
  background: #e8242b;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-hero h1 {
  margin: 0;
  color: #111317;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: 1.12;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 26px 0 22px;
  color: #4d535b;
  font-size: 14px;
  font-weight: 700;
}

.article-meta span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.article-meta svg {
  width: 18px;
  height: 18px;
  color: #e8242b;
}

.article-hero-copy p {
  max-width: 560px;
  margin: 0;
  color: #252a31;
  font-size: 18px;
  line-height: 1.7;
}

.article-hero-image {
  margin-right: calc((100vw - min(100vw - 80px, 1180px)) / -2);
}

.article-hero-image img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
  border-radius: 0 0 0 8px;
  box-shadow: 0 20px 60px rgba(16, 24, 40, 0.16);
}

.article-wrap {
  padding: 26px 0 64px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.article-content {
  min-width: 0;
}

.article-gallery {
  margin-bottom: 28px;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #eceff2;
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
}

.gallery-main button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #1d2026;
  transform: translateY(-50%);
}

.gallery-main button:first-child {
  left: 16px;
}

.gallery-main button:last-child {
  right: 16px;
}

.gallery-main svg {
  width: 22px;
  height: 22px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.gallery-thumbs img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 6px;
}

.article-content p {
  color: #252a31;
  font-size: 17px;
  line-height: 1.85;
}

.article-lead {
  font-size: 19px;
}

.article-content h2 {
  position: relative;
  margin: 34px 0 14px;
  padding-left: 18px;
  color: #191c20;
  font-size: 26px;
  line-height: 1.2;
  text-transform: uppercase;
}

.article-content h2::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 3px;
  background: #ff1f2a;
  content: "";
}

.article-checks {
  display: grid;
  gap: 12px;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}

.article-checks li {
  display: flex;
  gap: 10px;
  color: #252a31;
  font-size: 16px;
}

.article-checks svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-top: 2px;
  color: #ff1f2a;
  fill: #ff1f2a;
  stroke: #fff;
}

.article-info-table {
  display: grid;
  gap: 0;
  margin: 18px 0 28px;
  padding: 18px 22px;
  border: 1px solid #edf0f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.07);
}

.article-info-table div {
  display: grid;
  grid-template-columns: 28px 160px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f1f3;
  color: #282d34;
  font-size: 15px;
  min-width: 0;
}

.article-info-table strong,
.article-info-table span,
.project-facts span,
.related-posts h3,
.article-hero h1 {
  min-width: 0;
  overflow-wrap: anywhere;
}

.article-info-table div:last-child {
  border-bottom: 0;
}

.article-info-table svg {
  width: 20px;
  height: 20px;
  color: #ff1f2a;
}

.article-share {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 30px 0;
}

.article-share strong {
  margin-right: 8px;
}

.article-share a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #d8dce0;
  border-radius: 50%;
  color: #333942;
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid #eceff2;
}

.article-nav a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #303640;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.article-nav a:last-child {
  justify-content: flex-end;
  text-align: right;
}

.article-sidebar {
  display: grid;
  gap: 28px;
  position: sticky;
  top: 110px;
}

.project-facts,
.related-posts {
  padding: 28px;
  border: 1px solid #edf0f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.07);
}

.project-facts h2,
.related-posts h2 {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 16px;
  color: #191c20;
  font-size: 24px;
  text-transform: uppercase;
}

.project-facts h2::after,
.related-posts h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 92px;
  height: 2px;
  background: #ff1f2a;
  content: "";
}

.project-facts > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 15px 0;
}

.project-facts svg {
  width: 24px;
  height: 24px;
  color: #4b515a;
}

.project-facts strong {
  display: block;
  margin-bottom: 4px;
  color: #1f242b;
}

.project-facts span {
  color: #3e444d;
  font-size: 15px;
  line-height: 1.55;
}

.related-posts article {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #edf0f2;
}

.related-posts img {
  width: 112px;
  height: 82px;
  object-fit: cover;
  border-radius: 6px;
}

.related-posts time {
  color: #757b84;
  font-size: 13px;
}

.related-posts h3 {
  margin: 6px 0 0;
  color: #20252c;
  font-size: 16px;
  line-height: 1.35;
}

.related-more {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 22px;
  padding: 13px 20px;
  border: 1px solid #f6a313;
  border-radius: 6px;
  color: #20252c;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .article-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-hero-image {
    margin-right: 0;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .article-page .container {
    width: min(100% - 32px, 1180px);
  }

  .article-hero {
    padding-top: 86px;
  }

  .article-hero h1 {
    font-size: 36px;
  }

  .article-hero-image img {
    min-height: 260px;
  }

  .gallery-main img {
    aspect-ratio: 16 / 10;
  }

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

  .article-info-table div {
    grid-template-columns: 26px 1fr;
  }

  .article-info-table {
    padding: 14px 16px;
  }

  .article-info-table span {
    grid-column: 2;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }

  .article-nav a:last-child {
    justify-content: flex-start;
    text-align: left;
  }

  .related-posts article {
    grid-template-columns: 96px 1fr;
  }

  .related-posts img {
    width: 96px;
  }
}

body.news-page .news-card > img {
  height: 190px;
  aspect-ratio: auto;
  object-fit: cover;
}

@media (max-width: 640px) {
  body.news-page .news-card > img {
    height: 190px;
  }

  body.news-page .news-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  body.news-page .news-section-head h2 {
    font-size: 23px;
  }

  body.news-page .news-section-head a {
    align-self: flex-start;
    font-size: 12px;
    white-space: normal;
  }

  body.news-page .project-news-grid,
  body.news-page .news-card-grid,
  body.news-page .news-side-list article {
    grid-template-columns: minmax(0, 1fr);
  }

  body.news-page .news-card,
  body.news-page .news-feature-card,
  body.news-page .news-side-list article,
  body.news-page .news-card h3,
  body.news-page .news-feature-card h3,
  body.news-page .news-side-list h3 {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

/* News page */
.news-page {
  background: #fff;
  color: #181b1f;
}

.news-page [data-animate] {
  opacity: 1;
  transform: none;
}

.news-page .container {
  width: min(100% - 80px, 1180px);
}

.news-header {
  inset: 0 0 auto 0;
  width: 100%;
  max-width: none;
  height: 86px;
  margin: 0;
  padding: 14px clamp(32px, 4.8vw, 64px);
  background: rgba(6, 6, 7, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.news-header.is-scrolled {
  padding: 12px clamp(32px, 4.8vw, 64px);
  border-radius: 0;
  background: rgba(6, 6, 7, 0.95);
}

.news-header .brand-copy strong,
.news-header .brand-copy small {
  color: #fff;
}

.news-header .desktop-nav a:hover,
.news-header .desktop-nav a.active {
  color: #ff1f2a;
}

.news-header .desktop-nav a::after {
  background: #ff1f2a;
}

.news-phone {
  min-width: 172px;
  border-color: #f6a313;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0;
}

.news-phone svg {
  color: #ff7b1c;
}

.news-hero {
  position: relative;
  min-height: 340px;
  padding-top: 86px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 6, 7, 0.92) 0%, rgba(6, 6, 7, 0.68) 43%, rgba(6, 6, 7, 0.05) 100%),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=90") center right / cover;
}

.news-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.18));
  content: "";
}

.news-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 254px;
}

.news-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 6vw, 84px);
  line-height: 0.96;
  text-transform: uppercase;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.news-hero p {
  margin: 18px 0 0;
  color: #f4eee8;
  font-size: 22px;
  font-weight: 500;
}

.news-hero span {
  display: block;
  width: 52px;
  height: 4px;
  margin-top: 20px;
  background: #f6a313;
}

.news-tabs-wrap {
  position: relative;
  z-index: 3;
  margin-top: -34px;
}

.news-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 72px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.14);
}

.news-tabs a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border-right: 1px solid #eee;
  color: #202329;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-tabs a:last-child {
  border-right: 0;
}

.news-tabs a::after {
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
  height: 3px;
  background: #ff1f2a;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.news-tabs a:hover,
.news-tabs a.active {
  color: #ff1f2a;
}

.news-tabs a:hover::after,
.news-tabs a.active::after {
  transform: scaleX(1);
}

.news-tabs svg {
  width: 24px;
  height: 24px;
}

.news-section {
  padding: 52px 0 18px;
  background: #fff;
}

.news-section + .news-section {
  padding-top: 48px;
}

.news-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.news-section-head h2 {
  margin: 0;
  color: #191c20;
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.news-section-head a,
.news-card a,
.news-feature-card a,
.news-side-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff1f2a;
  font-size: 14px;
  font-weight: 800;
}

.news-section-head a svg,
.news-card a svg,
.news-feature-card a svg,
.news-side-list a svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.news-section-head a:hover svg,
.news-card a:hover svg,
.news-feature-card a:hover svg,
.news-side-list a:hover svg {
  transform: translateX(4px);
}

.project-news-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
}

.news-feature-card,
.news-card {
  overflow: hidden;
  border: 1px solid #ececec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-feature-card:hover,
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(16, 24, 40, 0.12);
}

.news-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 7.5;
}

.news-image span {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 4px;
  background: #ff1f2a;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-image img,
.news-card img,
.news-side-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-feature-card:hover img,
.news-card:hover img,
.news-side-list article:hover img {
  transform: scale(1.04);
}

.news-card-body,
.news-card div {
  padding: 20px 26px 24px;
}

.news-card time,
.news-feature-card time,
.news-side-list time {
  display: block;
  margin-bottom: 10px;
  color: #5f646b;
  font-size: 13px;
}

.news-feature-card h3 {
  margin: 0;
  max-width: 640px;
  color: #191c20;
  font-size: 23px;
  line-height: 1.25;
}

.news-feature-card p,
.news-card p {
  margin: 14px 0 20px;
  color: #5a6068;
  font-size: 15px;
  line-height: 1.65;
}

.news-side-list {
  display: grid;
  gap: 26px;
}

.news-side-list article {
  display: grid;
  grid-template-columns: minmax(190px, 244px) 1fr;
  gap: 26px;
  align-items: center;
}

.news-side-list img {
  min-height: 118px;
  border-radius: 6px;
  background: #e9ecef;
}

.news-side-list h3 {
  margin: 0 0 18px;
  color: #202329;
  font-size: 18px;
  line-height: 1.32;
}

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

.news-card img {
  aspect-ratio: 16 / 9;
  background: #e9ecef;
}

.news-card h3 {
  margin: 0;
  min-height: 58px;
  color: #191c20;
  font-size: 18px;
  line-height: 1.25;
}

.news-card p {
  min-height: 74px;
}

.internal-news {
  padding-bottom: 60px;
}

.news-footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  background:
    radial-gradient(circle at 92% 96%, rgba(215, 25, 36, 0.36), transparent 18rem),
    #111;
}

.news-footer::after {
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 320px;
  height: 260px;
  border-radius: 70px 0 0 0;
  background: linear-gradient(135deg, rgba(215, 25, 36, 0.75), rgba(246, 163, 19, 0.95));
  content: "";
  transform: rotate(-38deg);
}

.news-footer .footer-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.35fr 0.8fr 1.05fr 1.15fr;
}

.news-footer .footer-brand {
  margin-bottom: 18px;
}

.news-footer p,
.news-footer a {
  color: #d7d0c8;
}

.news-footer p {
  max-width: 300px;
}

.news-footer h3 {
  color: #fff;
}

.news-footer .socials {
  margin-top: 20px;
}

.news-footer-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 80px, 1180px);
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #c5beb5;
  text-align: center;
}

@media (max-width: 1100px) {
  .news-page .container {
    width: min(100% - 48px, 1180px);
  }

  .project-news-grid,
  .news-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .news-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .news-header {
    height: auto;
    padding: 12px 20px;
  }

  .news-hero {
    min-height: 300px;
    padding-top: 76px;
    background-position: 62% center;
  }

  .news-tabs {
    grid-template-columns: 1fr;
  }

  .news-tabs a {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid #eee;
  }

  .news-side-list article {
    grid-template-columns: 180px 1fr;
  }
}

@media (max-width: 640px) {
  .news-page .container,
  .news-footer-copy {
    width: min(100% - 32px, 1180px);
  }

  .news-hero h1 {
    font-size: 54px;
  }

  .news-hero p {
    font-size: 18px;
  }

  .news-tabs-wrap {
    margin-top: -24px;
  }

  .news-section {
    padding-top: 42px;
  }

  .news-section-head h2 {
    font-size: 27px;
  }

  .project-news-grid,
  .news-card-grid,
  .news-side-list article {
    grid-template-columns: 1fr;
  }

  .news-side-list img {
    min-height: 180px;
  }

  .news-card-body,
  .news-card div {
    padding: 18px;
  }

  .news-card h3,
  .news-card p {
    min-height: 0;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 28% 0%, rgba(246, 163, 19, 0.09), transparent 31rem),
    linear-gradient(180deg, #0a0f12 0%, var(--bg) 38%, #0b1013 100%);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  width: min(100% - 64px, 1200px);
  margin: 18px auto 0;
  padding: 0;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}

.site-header.is-scrolled {
  padding: 10px 14px;
  background: rgba(12, 17, 20, 0.82);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.brand-mark svg,
.signature-mark svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.3));
}

.mark-red {
  fill: var(--red);
}

.mark-red-dark {
  fill: var(--red-2);
}

.mark-gold {
  fill: var(--gold-2);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 23px;
  line-height: 0.9;
  letter-spacing: 0;
}

.brand-copy small {
  color: #d6d0c8;
  font-size: 9px;
  letter-spacing: 1.7px;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  color: #ded8d0;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 14px 0;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--gold);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.language-switch,
.mobile-language-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(246, 163, 19, 0.42);
  border-radius: 999px;
  background: rgba(10, 14, 17, 0.58);
  color: #f7f1e8;
  overflow: hidden;
}

.language-switch button,
.mobile-language-switch button {
  min-width: 36px;
  min-height: 32px;
  padding: 0 9px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
}

.language-switch span {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.18);
}

.language-switch button.is-active,
.mobile-language-switch button.is-active {
  background: var(--gold);
  color: #11171b;
}

.mobile-language-switch {
  display: none;
}

.header-cta,
.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.header-cta {
  border: 1px solid var(--gold);
  background: rgba(10, 14, 17, 0.55);
  color: #fff;
}

.header-cta::before,
.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70% 100%);
  content: "";
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta:hover::before,
.button:hover::before {
  transform: translateX(120%);
}

.button svg,
.header-cta svg {
  width: 17px;
  height: 17px;
}

.button-primary {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, var(--red), #e5451b 45%, var(--gold));
  box-shadow: 0 16px 42px rgba(215, 25, 36, 0.22);
}

.button-ghost,
.button-outline {
  border: 1px solid var(--gold);
  background: rgba(10, 14, 17, 0.54);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(11, 16, 19, 0.82);
  color: var(--text);
}

.mobile-panel {
  position: fixed;
  inset: 82px 24px auto 24px;
  z-index: 45;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 17, 20, 0.96);
  box-shadow: var(--shadow);
}

.mobile-panel a {
  display: block;
  padding: 14px;
  border-bottom: 1px solid var(--line-soft);
  color: #f7f1e8;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-panel a:last-child {
  border-bottom: 0;
}

.mobile-panel .mobile-language-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 12px;
  border-radius: 6px;
}

.mobile-panel .mobile-language-switch button {
  min-height: 42px;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.page-hero-media,
.page-hero-media img {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 48px;
  align-items: end;
  padding: 160px 0 82px;
}

.page-hero-copy {
  max-width: 780px;
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: #ded8cf;
  font-size: 17px;
  line-height: 1.8;
}

.human-symbol {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 17, 20, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.human-symbol svg {
  width: 52px;
  height: 52px;
  color: var(--gold);
}

.human-symbol strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 44px;
  line-height: 0.9;
  text-transform: uppercase;
}

.human-symbol span {
  color: var(--muted);
  line-height: 1.6;
}

.hero-media,
.hero-slide,
.hero-slide img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 1.15s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-slide-zenith img {
  object-position: 62% center;
}

.hero-slide-office img {
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 12, 15, 0.96) 0%, rgba(8, 12, 15, 0.73) 36%, rgba(8, 12, 15, 0.18) 70%),
    linear-gradient(180deg, rgba(8, 12, 15, 0.2) 0%, rgba(8, 12, 15, 0.55) 100%);
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: -1px;
  width: 45vw;
  min-width: 420px;
  height: 160px;
  background: linear-gradient(135deg, transparent 0 49%, rgba(246, 163, 19, 0.55) 50%, rgba(14, 18, 21, 0.96) 51%);
  content: "";
  opacity: 0.9;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 540px) 1fr;
  align-items: end;
  gap: 40px;
  padding-top: 98px;
}

.hero-content {
  padding: 80px 0 120px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(58px, 8.4vw, 96px);
  line-height: 0.96;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  color: #fff6e8;
  font-size: 15px;
  line-height: 1.28;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 470px;
  margin-bottom: 34px;
  color: #ded8cf;
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-signature {
  justify-self: end;
  align-self: end;
  margin-bottom: 26px;
  padding: 26px;
  background: rgba(8, 12, 15, 0.62);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
}

.signature-mark {
  display: block;
  width: clamp(86px, 12vw, 138px);
  height: clamp(86px, 12vw, 138px);
}

.metrics {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -74px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(19, 24, 27, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.metrics article {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 16px;
  align-items: center;
  padding: 24px 34px;
  border-right: 1px solid var(--line-soft);
}

.metrics article:last-child {
  border-right: 0;
}

.metrics svg {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.metrics strong {
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.metrics span {
  color: #e5ded4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.section {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.18fr;
  gap: 56px;
  align-items: center;
}

.story-grid,
.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 54px;
  align-items: start;
}

.story-copy p:not(.eyebrow),
.mission-copy p,
.belief-panel p,
.timeline p {
  color: var(--muted);
  line-height: 1.82;
}

.founder-card {
  position: sticky;
  top: 110px;
  display: grid;
  border: 1px solid rgba(246, 163, 19, 0.32);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.founder-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.94) contrast(1.04);
}

.founder-card > div {
  padding: 24px;
}

.founder-card h3 {
  margin-bottom: 12px;
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 36px;
  line-height: 1;
}

.belief-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    var(--bg-2);
}

.belief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.belief-panel {
  min-height: 330px;
  padding: 34px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(12, 17, 20, 0.72);
}

.belief-panel.accent {
  border-color: var(--line);
  background:
    linear-gradient(135deg, rgba(246, 163, 19, 0.12), rgba(215, 25, 36, 0.08)),
    rgba(12, 17, 20, 0.72);
}

.belief-panel svg {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--gold);
  stroke-width: 1.6;
}

.belief-panel h2 {
  max-width: 620px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline::before {
  position: absolute;
  top: 35px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
}

.timeline article {
  position: relative;
  padding: 84px 22px 24px;
  border: 1px solid rgba(246, 163, 19, 0.22);
  border-radius: var(--radius);
  background: rgba(21, 27, 31, 0.86);
}

.timeline span {
  position: absolute;
  top: 18px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: #fff;
  font-weight: 900;
}

.mission-section {
  padding-top: 48px;
}

.mission-copy {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.video-card {
  position: relative;
  min-height: 336px;
  border: 1px solid rgba(246, 163, 19, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-card img {
  width: 100%;
  height: 100%;
  min-height: 336px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
  transition: transform 0.65s ease;
}

.video-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 12, 15, 0.94) 100%);
  content: "";
}

.video-card:hover img {
  transform: scale(1.06);
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.play-button::before {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: inherit;
  content: "";
  animation: pulse 1.7s ease infinite;
}

.play-button svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.video-caption {
  position: absolute;
  right: 20px;
  bottom: 22px;
  left: 20px;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.video-caption b {
  color: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.video-caption span,
.about-copy p,
.project-card p,
.service-rail p,
.process-line p,
.testimonial p,
.site-footer p,
.site-footer a {
  color: var(--muted);
  line-height: 1.7;
}

.about-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 26px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 28px 0 28px;
}

.value-grid svg,
.service-rail svg {
  width: 42px;
  height: 42px;
  color: var(--gold);
  stroke-width: 1.55;
}

.value-grid h3 {
  margin-top: 14px;
}

.value-grid p {
  margin-bottom: 0;
  font-size: 13px;
}

.section-heading {
  margin-bottom: 26px;
}

.centered {
  text-align: center;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.project-card {
  position: relative;
  display: grid;
  grid-template-rows: 190px 1fr;
  min-width: 0;
  border: 1px solid rgba(246, 163, 19, 0.32);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  border-color: var(--gold);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.32);
  transform: translateY(-8px);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-card > div {
  padding: 18px 16px 20px;
}

.project-card h3 {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 1.5px;
}

.project-card p {
  min-height: 54px;
  margin-bottom: 18px;
}

.project-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.project-card a svg {
  width: 15px;
  height: 15px;
}

.project-no {
  position: absolute;
  top: 18px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: white;
  font-size: 19px;
  font-weight: 900;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.slider-controls button,
.testimonial-nav button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #fff;
}

.slider-controls span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #f1e1c7;
}

.slider-controls span.active {
  background: var(--gold);
}

.services {
  padding-top: 40px;
}

.service-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-soft);
}

.service-rail article {
  padding: 24px 20px;
  border-right: 1px solid var(--line-soft);
}

.service-rail article:last-child {
  border-right: 0;
}

.service-rail h3 {
  margin-top: 14px;
  font-size: 14px;
}

.service-rail p {
  margin-bottom: 0;
  font-size: 13px;
}

.process {
  padding-top: 38px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.process-line article {
  position: relative;
}

.process-line article:not(:last-child)::after {
  position: absolute;
  top: 36px;
  left: calc(100% - 2px);
  width: 34px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.process-line span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

.process-line svg {
  width: 34px;
  height: 34px;
}

.process-line p {
  margin-bottom: 0;
  font-size: 13px;
}

.partners {
  padding-top: 34px;
}

.logo-strip {
  --logo-gap: 16px;
  position: relative;
  display: block;
  overflow: hidden;
  margin: 28px 0 32px;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partner-logo-loop 34s linear infinite;
  will-change: transform;
}

.logo-strip:hover .logo-track,
.logo-strip:focus-within .logo-track {
  animation-play-state: paused;
}

.logo-set {
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  padding-right: var(--logo-gap);
}

.logo-strip a {
  flex: 0 0 clamp(154px, 12vw, 184px);
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid rgba(246, 163, 19, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.logo-strip a:hover {
  transform: translateY(-3px);
  border-color: rgba(246, 163, 19, 0.55);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.logo-strip img {
  display: block;
  width: 100%;
  max-width: 134px;
  max-height: 34px;
  object-fit: contain;
}

.logo-strip img.partner-logo-wide {
  max-width: 142px;
  max-height: 38px;
}

.logo-strip img.partner-logo-mark {
  width: auto;
  max-width: 88px;
  max-height: 42px;
}

@keyframes partner-logo-loop {
  from {
    transform: translateX(0);
  }

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

.testimonial {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 28px;
  align-items: center;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(246, 163, 19, 0.08), rgba(255, 255, 255, 0.02));
}

.testimonial > svg {
  width: 50px;
  height: 50px;
  color: #fff;
  fill: currentColor;
}

.testimonial p {
  margin-bottom: 0;
}

.leader {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 28px;
  border-left: 1px solid var(--line-soft);
}

.leader img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
}

.leader-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(246, 163, 19, 0.55);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.3), transparent 24%),
    linear-gradient(135deg, rgba(226, 30, 35, 0.96), rgba(246, 163, 19, 0.92));
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 16px 30px rgba(226, 30, 35, 0.24);
}

.leader strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
}

.leader span {
  color: var(--muted);
}

.testimonial-nav {
  display: flex;
  gap: 8px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, var(--red) 0%, #b71d16 33%, rgba(212, 73, 24, 0.9) 62%, #f18f1a 100%),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=85");
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}

.cta-band::after {
  position: absolute;
  inset: auto -8% 0 auto;
  width: 48%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0 44%, rgba(255, 199, 62, 0.28) 45%, transparent 46%);
  content: "";
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 110px;
  padding: 22px 0;
}

.cta-grid .eyebrow,
.cta-grid h2 {
  margin-bottom: 0;
}

.cta-grid h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.site-footer {
  padding: 36px 0 32px;
  background: #0a0f12;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.25fr 1fr 1fr 0.9fr;
  gap: 34px;
}

.footer-brand {
  margin-bottom: 20px;
}

.site-footer h3 {
  color: #fff;
  letter-spacing: 1.6px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--gold);
}

.site-footer p {
  display: flex;
  gap: 10px;
  margin-bottom: 9px;
  font-size: 13px;
}

.site-footer p svg {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 10px;
  margin: 18px 0;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  color: #fff;
}

.copyright {
  color: var(--dim);
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 35;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.4%, -0.8%, 0);
  }
}

@keyframes pulse {
  from {
    opacity: 0.85;
    transform: scale(0.86);
  }
  to {
    opacity: 0;
    transform: scale(1.22);
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 16px;
    font-size: 12px;
  }

  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-rail article:nth-child(3n) {
    border-right: 0;
  }

  .logo-strip {
    --logo-gap: 12px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 34px, var(--max));
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    inset: 14px 14px auto 14px;
    width: auto;
    margin: 0;
    padding: 10px 64px 10px 12px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: rgba(12, 17, 20, 0.86);
    backdrop-filter: blur(18px);
  }

  .desktop-nav,
  .header-cta,
  .language-switch {
    display: none;
  }

  .menu-button {
    position: absolute;
    top: 50%;
    right: 12px;
    z-index: 3;
    display: grid !important;
    place-items: center;
    transform: translateY(-50%);
  }

  .mobile-panel.is-open {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    display: none;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 12, 15, 0.94) 0%, rgba(8, 12, 15, 0.72) 100%),
      linear-gradient(180deg, rgba(8, 12, 15, 0.3), rgba(8, 12, 15, 0.8));
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 108px;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 132px 0 64px;
  }

  .human-symbol {
    max-width: 360px;
  }

  .hero-content {
    padding: 56px 0 130px;
  }

  .hero-signature {
    display: none;
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -50px;
  }

  .metrics article:nth-child(2n) {
    border-right: 0;
  }

  .metrics article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .mission-grid,
  .belief-grid {
    grid-template-columns: 1fr;
  }

  .founder-card {
    position: relative;
    top: auto;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .mission-copy {
    padding-left: 0;
    border-left: 0;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-line article {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 0 18px;
    align-items: center;
  }

  .process-line article:not(:last-child)::after {
    top: 82px;
    left: 36px;
    width: 1px;
    height: 32px;
  }

  .process-line span {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .testimonial {
    grid-template-columns: 1fr;
  }

  .leader {
    padding-left: 0;
    border-left: 0;
  }

  .testimonial-nav {
    justify-content: flex-end;
  }

  .cta-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .brand-copy strong {
    font-size: 20px;
    white-space: nowrap;
  }

  .brand-copy small {
    max-width: 190px;
    overflow: hidden;
    font-size: 8px;
    letter-spacing: 1px;
    text-overflow: ellipsis;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  h1 {
    font-size: 50px;
  }

  .page-hero-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .metrics article {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    padding: 20px;
  }

  .metrics article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 58px 0;
  }

  .project-grid,
  .service-rail,
  .value-grid,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .timeline article {
    padding-top: 76px;
  }

  .belief-panel {
    min-height: 0;
    padding: 26px;
  }

  .service-rail article {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .service-rail article:last-child {
    border-bottom: 0;
  }

  .project-card {
    grid-template-rows: 210px 1fr;
  }

  .logo-strip {
    --logo-gap: 10px;
  }

  .leader {
    align-items: flex-start;
  }

  .to-top {
    right: 16px;
    bottom: 16px;
  }
}

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

  .hero-slide {
    opacity: 0;
    animation: none !important;
  }

  .hero-slide-primary {
    opacity: 1;
  }
}

/* About page redesign */
.about-light {
  background: #fff;
  color: #1f1f22;
}

.about-light [data-animate] {
  opacity: 1;
  transform: none;
}

.about-light .container {
  width: min(100% - 84px, var(--max));
}

.about-header {
  inset: 0 0 auto 0;
  width: 100%;
  max-width: none;
  height: 88px;
  margin: 0;
  padding: 16px clamp(28px, 5vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #101010;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.about-header .brand-copy strong {
  color: #fff;
}

.about-header .brand-copy small {
  color: #d7d7d7;
}

.about-header.is-scrolled {
  padding: 14px clamp(28px, 5vw, 64px);
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: rgba(12, 12, 12, 0.94);
}

.about-header .desktop-nav {
  gap: clamp(24px, 3vw, 48px);
}

.about-header .desktop-nav a.active,
.about-header .desktop-nav a:hover {
  color: #ff1d25;
}

.about-header .desktop-nav a::after {
  background: #ff1d25;
}

.phone-cta {
  min-width: 178px;
  border: 2px solid #ff1d25;
  border-radius: 999px;
  background: transparent;
}

.phone-cta svg {
  color: #ff1d25;
  fill: currentColor;
}

.about-showcase {
  position: relative;
  min-height: 560px;
  margin-top: 88px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #111;
}

.about-showcase-media,
.about-showcase-media img,
.about-showcase-overlay {
  position: absolute;
  inset: 0;
}

.about-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(1.05) contrast(1.06);
  transform: scale(1.03);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.about-showcase-overlay {
  background:
    linear-gradient(90deg, rgba(15, 15, 16, 0.98) 0%, rgba(15, 15, 16, 0.82) 34%, rgba(15, 15, 16, 0.18) 76%),
    linear-gradient(180deg, rgba(15, 15, 16, 0.18), rgba(15, 15, 16, 0.58));
}

.about-showcase-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.about-showcase-copy > p:first-child {
  margin: 0 0 16px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.about-showcase-copy h1 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(58px, 6.4vw, 76px);
  line-height: 0.96;
}

.about-tagline {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 20px;
}

.about-showcase-copy i {
  display: block;
  width: 58px;
  height: 4px;
  margin-bottom: 26px;
  background: #ffc118;
}

.about-showcase-copy > p:last-child {
  color: #f3f3f3;
  font-size: 17px;
  line-height: 1.72;
}

.about-showcase-curve {
  position: absolute;
  right: -110px;
  bottom: -94px;
  z-index: 2;
  width: min(48vw, 560px);
  height: min(28vw, 320px);
  border-radius: 100% 0 0 0;
  background: linear-gradient(130deg, #8e070b 0%, #df121c 58%, #ff4a00 100%);
  box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.38);
}

.about-showcase-curve::before {
  position: absolute;
  inset: -12px 0 auto -20px;
  height: 2px;
  background: rgba(255, 196, 31, 0.7);
  content: "";
  transform: rotate(-20deg);
  transform-origin: right;
}

.about-showcase-curve .signature-mark {
  position: absolute;
  right: 118px;
  bottom: 96px;
  width: 110px;
  height: 110px;
}

.about-stats-wrap {
  position: relative;
  z-index: 5;
  margin-top: -52px;
}

.about-stats-card {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 176px;
  padding: 26px 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(23, 23, 28, 0.12);
}

.about-stats-card article {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 0 18px;
  text-align: center;
  border-right: 1px solid #ececef;
}

.about-stats-card article:last-child {
  border-right: 0;
}

.about-stats-card svg {
  width: 42px;
  height: 42px;
  color: #ff1d25;
  stroke-width: 1.8;
}

.about-stats-card strong {
  color: #202126;
  font-size: 34px;
  line-height: 1;
}

.about-stats-card span {
  color: #3f3f46;
  font-size: 14px;
  line-height: 1.35;
}

.about-story-light {
  padding-top: 54px;
}

.story-light-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
  align-items: center;
}

.red-eyebrow {
  margin: 0 0 22px;
  color: #ff1d25;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.story-light-copy h2,
.founder-info h2,
.about-pillars h3 {
  color: #202126;
}

.story-light-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(34px, 4.3vw, 50px);
}

.story-light-copy p:not(.red-eyebrow) {
  color: #25262b;
  line-height: 1.88;
}

.light-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  margin-top: 22px;
  padding: 0 22px;
  border: 1px solid #f6a313;
  border-radius: 8px;
  color: #202126;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.light-button svg {
  width: 18px;
  height: 18px;
  color: #f6a313;
}

.story-video-card {
  position: relative;
  min-height: 390px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(23, 23, 28, 0.16);
}

.story-video-card::before,
.story-video-card::after {
  position: absolute;
  z-index: -1;
  width: 95px;
  height: 155px;
  background-image: radial-gradient(#ff1d25 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.28;
  content: "";
}

.story-video-card::before {
  top: -24px;
  left: -38px;
}

.story-video-card::after {
  right: -38px;
  bottom: -24px;
}

.story-video-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.story-video-card::after {
  z-index: 1;
}

.story-video-card .play-button {
  z-index: 3;
  width: 88px;
  height: 88px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.18);
}

.about-journey {
  padding: 8px 0 50px;
}

.journey-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  padding-top: 22px;
}

.journey-line::before {
  position: absolute;
  top: 55px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff1d25, #ffc118, #ffc118, #ff1d25);
  content: "";
}

.journey-line::after {
  position: absolute;
  top: 48px;
  right: -2px;
  width: 16px;
  height: 16px;
  border-top: 2px solid #ff1d25;
  border-right: 2px solid #ff1d25;
  content: "";
  transform: rotate(45deg);
}

.journey-line article {
  position: relative;
  text-align: center;
}

.journey-line strong {
  display: block;
  margin-bottom: 13px;
  color: #202126;
  font-size: 22px;
}

.journey-line span {
  position: relative;
  z-index: 2;
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 auto 18px;
  border: 3px solid #ffc118;
  border-radius: 50%;
  background: #fff;
}

.journey-line article:first-child span,
.journey-line article:last-child span {
  border-color: #ff1d25;
}

.journey-line p {
  color: #303138;
  font-size: 14px;
  line-height: 1.55;
}

.about-pillars {
  padding-top: 22px;
}

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

.pillar-grid article {
  min-height: 265px;
  padding: 34px 38px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(23, 23, 28, 0.1);
}

.pillar-grid svg {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: #ff1d25;
  stroke-width: 2;
}

.pillar-grid article:nth-child(2) svg {
  color: #f6a313;
}

.pillar-grid h3 {
  font-size: 22px;
  letter-spacing: 0;
}

.pillar-grid p,
.pillar-grid li {
  color: #3a3b42;
  line-height: 1.72;
}

.pillar-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pillar-grid li::before {
  margin-right: 12px;
  color: #202126;
  content: "✓";
}

.founder-profile {
  padding: 28px 0 34px;
}

.founder-profile-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: stretch;
  min-height: 350px;
  border: 1px solid #ececef;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(23, 23, 28, 0.08);
  overflow: hidden;
}

.founder-visual {
  position: relative;
  isolation: isolate;
  min-height: 350px;
  background: linear-gradient(135deg, #cf171e, #a80710);
  overflow: hidden;
}

.founder-visual::after {
  position: absolute;
  inset: 0 -20% 0 34%;
  z-index: -1;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 55% 0 0 55%;
  content: "";
  transform: skewX(-12deg);
}

.brand-watermark {
  position: absolute;
  top: 42px;
  left: 42px;
  width: 76px;
  height: 76px;
  opacity: 0.72;
}

.brand-watermark svg {
  width: 100%;
  height: 100%;
}

.founder-visual img {
  position: absolute;
  right: 6%;
  bottom: -28px;
  width: min(82%, 386px);
  max-height: 462px;
  object-fit: contain;
  object-position: bottom center;
  border-radius: 0;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.28));
}

.founder-info {
  padding: 44px 54px 34px;
}

.founder-info h2 {
  margin-bottom: 8px;
  font-size: clamp(34px, 4vw, 48px);
}

.founder-subtitle {
  margin-bottom: 24px;
  color: #3e3f46;
  font-size: 18px;
}

.founder-info ul {
  display: grid;
  gap: 16px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.founder-info li {
  position: relative;
  padding-left: 28px;
  color: #34353c;
  line-height: 1.6;
}

.founder-info li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #ff1d25;
  font-weight: 900;
  content: "✓";
}

.signature-line {
  display: grid;
  justify-content: end;
  text-align: center;
}

.signature-line span {
  color: #4e4f56;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
}

.signature-line small {
  color: #63646b;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-quote-band {
  padding: 48px 0;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.96), rgba(24, 24, 24, 0.95)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.quote-band-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 42px;
  align-items: center;
}

.quote-band-inner .brand-mark {
  width: 70px;
  height: 70px;
}

.quote-band-inner p {
  margin: 0;
  padding-left: 42px;
  border-left: 3px solid #f6a313;
  color: #fff;
  font-size: clamp(22px, 2.7vw, 31px);
  font-weight: 700;
  line-height: 1.5;
}

.quote-band-inner strong {
  color: #f6a313;
}

.about-light .site-footer {
  color: var(--text);
}

.about-light .site-footer h3 {
  color: #fff;
}

.about-light .site-footer p,
.about-light .site-footer a {
  color: var(--muted);
}

.about-light .site-footer a:hover {
  color: var(--gold);
}

@media (max-width: 1120px) {
  .about-header .desktop-nav {
    gap: 20px;
  }

  .phone-cta {
    min-width: auto;
    padding-inline: 18px;
  }

  .story-light-grid,
  .founder-profile-card {
    grid-template-columns: 1fr;
  }

  .founder-visual {
    min-height: 420px;
  }

  .founder-visual img {
    right: 18%;
    width: min(58%, 330px);
  }
}

@media (max-width: 900px) {
  .about-light .container {
    width: min(100% - 34px, var(--max));
  }

  .about-header {
    inset: 14px 14px auto 14px;
    width: auto;
    height: auto;
    padding: 10px 64px 10px 12px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: rgba(12, 17, 20, 0.9);
  }

  .about-showcase {
    margin-top: 0;
    min-height: 610px;
    padding-top: 92px;
  }

  .about-showcase-copy h1 {
    font-size: 56px;
  }

  .about-showcase-curve {
    display: none;
  }

  .about-stats-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats-card article {
    border-right: 0;
    border-bottom: 1px solid #ececef;
  }

  .about-stats-card article:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .journey-line,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .journey-line::before,
  .journey-line::after {
    display: none;
  }

  .journey-line article {
    display: grid;
    grid-template-columns: 120px auto 1fr;
    gap: 12px;
    align-items: start;
    text-align: left;
  }

  .journey-line span {
    margin: 5px 0 0;
  }

  .founder-info {
    padding: 34px 28px;
  }

  .quote-band-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .quote-band-inner p {
    padding-left: 24px;
  }
}

@media (max-width: 640px) {
  .about-showcase {
    min-height: 560px;
  }

  .about-showcase-copy h1 {
    font-size: 46px;
  }

  .about-showcase-copy > p:last-child {
    font-size: 15px;
  }

  .about-stats-card {
    grid-template-columns: 1fr;
  }

  .about-stats-card article {
    min-height: 128px;
  }

  .story-light-grid {
    gap: 36px;
  }

  .story-video-card,
  .story-video-card img {
    min-height: 280px;
  }

  .journey-line article {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .journey-line span {
    margin: 0 auto 10px;
  }

  .pillar-grid article {
    padding: 28px;
  }

  .founder-visual {
    min-height: 360px;
  }

  .founder-visual::after {
    inset: 34% -35% -20% 15%;
    border-radius: 50% 0 0 0;
  }

  .brand-watermark {
    top: 28px;
    left: 28px;
    width: 62px;
    height: 62px;
  }

  .founder-visual img {
    right: 8%;
    width: min(82%, 300px);
  }
}

/* Projects page */
.projects-page {
  background:
    radial-gradient(circle at 80% 10%, rgba(246, 163, 19, 0.12), transparent 28rem),
    linear-gradient(180deg, #061018 0%, #071018 46%, #081015 100%);
  color: var(--text);
}

.projects-page [data-animate] {
  opacity: 1;
  transform: none;
}

.projects-page .container {
  width: min(100% - 76px, 1280px);
}

.project-header {
  inset: 0 0 auto 0;
  width: 100%;
  max-width: none;
  height: 82px;
  margin: 0;
  padding: 14px clamp(28px, 4.8vw, 64px);
  background: rgba(4, 12, 18, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
}

.project-header.is-scrolled {
  padding: 12px clamp(28px, 4.8vw, 64px);
  border-radius: 0;
  background: rgba(4, 12, 18, 0.94);
}

.project-header .brand-copy strong,
.project-header .brand-copy small {
  color: #fff;
}

.project-header .desktop-nav a.active,
.project-header .desktop-nav a:hover {
  color: #ff202b;
}

.project-header .desktop-nav a::after {
  background: #ff202b;
}

.project-header-cta {
  border-color: #ff202b;
  border-radius: 4px;
}

.projects-hero {
  position: relative;
  min-height: 510px;
  padding-top: 110px;
  overflow: hidden;
  border-bottom: 1px solid rgba(246, 163, 19, 0.28);
}

.projects-hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 82%, rgba(246, 163, 19, 0.18), transparent 20rem),
    linear-gradient(90deg, rgba(5, 13, 19, 0.98), rgba(5, 13, 19, 0.72) 48%, rgba(5, 13, 19, 0.2));
  content: "";
}

.projects-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 1.28fr;
  gap: 48px;
  align-items: center;
}

.projects-hero-copy {
  padding: 58px 0 62px;
}

.projects-hero-copy .eyebrow {
  color: #ff202b;
}

.projects-hero-copy h1 {
  max-width: 620px;
  font-size: clamp(52px, 4.4vw, 70px);
}

.projects-hero-copy p:not(.eyebrow) {
  max-width: 520px;
  color: #c9c2b8;
  font-size: 16px;
  line-height: 1.85;
}

.project-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 162px;
  gap: 6px;
  transform: skewX(-14deg);
  transform-origin: center;
}

.project-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid #061018;
  filter: saturate(0.98) contrast(1.04);
  transform: skewX(14deg) scale(1.16);
}

.project-mosaic img:nth-child(1),
.project-mosaic img:nth-child(3) {
  grid-row: span 1;
}

.project-mosaic img:nth-child(4),
.project-mosaic img:nth-child(6) {
  grid-row: span 1;
}

.project-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 28px 0 24px;
  border-bottom: 1px solid rgba(246, 163, 19, 0.18);
}

.project-metrics article {
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 18px;
  align-items: center;
  padding: 0 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.project-metrics article:last-child {
  border-right: 0;
}

.project-metrics svg {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  color: var(--gold);
  stroke-width: 1.7;
}

.project-metrics strong {
  color: #fff;
  font-size: 36px;
  line-height: 1;
}

.project-metrics span {
  color: #c9c2b8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 28px 0 8px;
}

.project-filters button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(246, 163, 19, 0.55);
  border-radius: 999px;
  background: transparent;
  color: #eee8df;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
}

.project-filters button.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #d71924, #f0451b);
}

.project-filters svg {
  width: 24px;
  height: 24px;
  color: currentColor;
}

.project-featured-section {
  padding-top: 18px;
  padding-bottom: 34px;
}

.project-featured-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.74fr;
  gap: 18px;
}

.featured-project-card,
.project-category-grid article {
  border: 1px solid rgba(246, 163, 19, 0.34);
  border-radius: 5px;
  background: rgba(13, 20, 24, 0.92);
  overflow: hidden;
}

.featured-project-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.featured-project-card > p {
  margin: 0;
  padding: 14px 18px;
  background: linear-gradient(180deg, rgba(80, 95, 109, 0.82), rgba(31, 39, 45, 0.94));
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.featured-project-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.featured-project-card > div {
  padding: 22px;
}

.featured-project-card span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #a9a39a;
  font-size: 12px;
}

.featured-project-card span svg {
  width: 14px;
  height: 14px;
}

.featured-project-card h2 {
  margin: 14px 0 10px;
  color: #fff;
  font-size: 28px;
}

.featured-project-card p:not(:first-child) {
  color: #c8c0b5;
}

.featured-project-card a,
.project-category-grid a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.project-category-grid article {
  display: grid;
  grid-template-rows: auto 145px auto auto;
}

.project-category-grid article > div {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
}

.project-category-grid article > div > svg:first-child {
  width: 40px;
  height: 40px;
  color: var(--gold);
}

.project-category-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.8px;
}

.project-category-grid img,
.category-image-stack {
  width: 100%;
  height: 100%;
}

.project-category-grid img {
  object-fit: cover;
}

.project-category-grid .category-image-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 2px;
  overflow: hidden;
}

.project-category-grid .category-image-stack span {
  position: relative;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.project-category-grid .category-image-stack img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
}

.category-project-name {
  margin: 0;
  padding: 14px 18px 0;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.project-category-grid a {
  margin: 0;
  padding: 14px 18px 18px;
}

.project-list-section {
  padding: 18px 0 58px;
}

.project-section-heading {
  display: grid;
  max-width: 880px;
  gap: 8px;
  margin-bottom: 28px;
}

.project-section-heading h2,
.project-map-grid h2 {
  margin: 0;
  color: #fff6e8;
  font-size: clamp(34px, 3.8vw, 52px);
}

.project-section-heading > span {
  max-width: 680px;
  color: #c7c0b6;
  line-height: 1.7;
}

.project-workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.project-workflow-grid::before {
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #ff1f2a, #f6a313, #ff1f2a);
  content: "";
  opacity: 0.82;
}

.project-workflow-grid article {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  min-height: 286px;
}

.project-workflow-grid article > span {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 2px solid rgba(246, 163, 19, 0.88);
  border-radius: 50%;
  background: #081018;
  color: #fff6e8;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(6, 16, 24, 0.94), 0 16px 34px rgba(246, 163, 19, 0.14);
}

.project-workflow-grid article > div {
  display: grid;
  align-content: start;
  min-height: 192px;
  padding: 26px 22px 24px;
  border: 1px solid rgba(246, 163, 19, 0.32);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(246, 163, 19, 0.035)),
    rgba(13, 20, 24, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.project-workflow-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--gold);
  stroke-width: 1.7;
}

.project-workflow-grid h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 21px;
  letter-spacing: 0.7px;
}

.project-workflow-grid p {
  margin: 0;
  color: #c8c0b5;
  line-height: 1.75;
}

.project-map-section {
  position: relative;
  padding: 24px 0 32px;
  overflow: hidden;
}

.project-map-section::before {
  position: absolute;
  inset: auto 0 0 0;
  height: 280px;
  background: radial-gradient(circle at 55% 48%, rgba(246, 163, 19, 0.12), transparent 28rem);
  content: "";
}

.project-map-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 48px;
  align-items: center;
}

.project-map-grid p {
  color: #bdb6ac;
  font-size: 17px;
}

.map-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.map-stats article {
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 14px;
  align-items: center;
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(246, 163, 19, 0.45);
  border-radius: 8px;
  background: rgba(13, 20, 24, 0.76);
}

.map-stats svg {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  color: var(--gold);
}

.map-stats strong {
  color: #fff;
  font-size: 28px;
}

.map-stats span {
  color: #c7c0b6;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.vietnam-map {
  display: grid;
  place-items: center;
  min-height: 330px;
}

.vietnam-map img {
  width: min(100%, 390px);
  display: block;
  filter: drop-shadow(0 0 22px rgba(246, 163, 19, 0.45));
}

.project-cta {
  background: linear-gradient(100deg, #c71922 0%, #a83a1c 45%, #f6a313 100%);
}

.project-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
}

.project-cta h2 {
  margin-bottom: 4px;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 43px);
}

.project-cta p {
  margin: 0;
  color: #ffe7ca;
  font-size: 16px;
}

.project-cta .button {
  min-width: 260px;
  border-color: #071018;
  background: #071018;
}

.project-footer {
  border-top: 0;
}

@media (max-width: 1120px) {
  .projects-hero-grid,
  .project-featured-grid,
  .project-map-grid {
    grid-template-columns: 1fr;
  }

  .project-mosaic {
    grid-auto-rows: 140px;
  }

  .project-metrics,
  .project-workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-workflow-grid::before {
    display: none;
  }

  .project-metrics article:nth-child(2n) {
    border-right: 0;
  }

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

@media (max-width: 900px) {
  .projects-page .container {
    width: min(100% - 34px, 1280px);
  }

  .project-header {
    inset: 14px 14px auto 14px;
    width: auto;
    height: auto;
    padding: 10px 64px 10px 12px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: rgba(4, 12, 18, 0.9);
  }

  .projects-hero {
    padding-top: 104px;
  }

  .projects-hero-copy {
    padding-bottom: 30px;
  }

  .project-mosaic {
    transform: none;
    grid-auto-rows: 130px;
  }

  .project-mosaic img {
    transform: none;
  }

  .project-metrics {
    gap: 0;
  }

  .project-metrics article {
    padding: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .project-category-grid,
  .map-stats {
    grid-template-columns: 1fr;
  }

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

  .project-workflow-grid article {
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
    min-height: 0;
  }

  .project-workflow-grid article > span {
    width: 62px;
    height: 62px;
    font-size: 28px;
  }

  .project-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0;
  }
}

@media (max-width: 640px) {
  .projects-hero-copy h1 {
    font-size: 48px;
  }

  .project-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 118px;
  }

  .project-metrics,
  .project-workflow-grid {
    grid-template-columns: 1fr;
  }

  .project-metrics article {
    border-right: 0;
  }

  .project-filters button {
    width: 100%;
    justify-content: flex-start;
    white-space: normal;
  }

  .project-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-project-card img {
    height: 280px;
  }

  .project-category-grid article {
    grid-template-rows: auto 180px auto auto;
  }

  .map-stats article {
    grid-template-columns: auto 1fr;
  }

  .project-cta .button {
    min-width: 0;
  }
}

/* News page final overrides */
body.news-page .news-header {
  position: fixed;
  inset: 0 0 auto 0;
  grid-template-columns: auto 1fr auto auto;
  width: 100%;
  max-width: none;
  height: 86px;
  margin: 0;
  padding: 14px clamp(32px, 4.8vw, 64px);
  border-radius: 0;
  background: rgba(6, 6, 7, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

body.news-page .news-header.is-scrolled {
  padding: 12px clamp(32px, 4.8vw, 64px);
  border-radius: 0;
  background: rgba(6, 6, 7, 0.95);
}

body.news-page .news-header .desktop-nav a:hover,
body.news-page .news-header .desktop-nav a.active {
  color: #ff1f2a;
}

body.news-page .news-header .desktop-nav a::after {
  background: #ff1f2a;
}

body.news-page .news-phone {
  min-width: 172px;
  border-color: #f6a313;
  border-radius: 999px;
  background: transparent;
  color: #fff;
}

body.news-page .news-phone svg {
  color: #ff7b1c;
}

body.news-page .news-footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  background:
    radial-gradient(circle at 92% 96%, rgba(215, 25, 36, 0.36), transparent 18rem),
    #111;
}

body.news-page .news-footer .footer-grid {
  grid-template-columns: 1.35fr 0.8fr 1.05fr 1.15fr;
}

body.news-page .news-footer p,
body.news-page .news-footer a {
  color: #d7d0c8;
}

body.news-page .news-footer h3 {
  color: #fff;
}

@media (max-width: 1100px) {
  body.news-page .news-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body.news-page .news-header {
    height: auto;
    padding: 12px 20px;
  }
}
