:root {
  --brand-blue: #104e89;
  --ivory: #f7f6f3;
  --warm-gray: #eae9e6;
  --stone-gray: #a6a6a6;
  --charcoal: #1a1a1a;
  --ink: #252525;
  --muted-ink: #666666;
  --line: rgba(26, 26, 26, 0.16);
  --white: #ffffff;
  --header-height: 82px;
  --content-width: 1180px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(26, 26, 26, 0.12);
  --font-en: Inter, Arial, sans-serif;
  --font-cn:
    "思源黑体 CN", "Source Han Sans CN", "Source Han Sans SC",
    "Noto Sans CJK SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --font-ar: "Noto Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  --font-main:
    Inter, "思源黑体 CN", "Source Han Sans CN", "Source Han Sans SC",
    "Noto Sans CJK SC", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
}

:lang(zh-CN) {
  font-family: var(--font-main);
}

:lang(ar) {
  font-family: var(--font-ar);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link,
.visually-hidden,
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.honeypot {
  left: -100vw;
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  left: 16px;
  top: 16px;
  background: var(--brand-blue);
  color: var(--white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(160px, 260px) 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 36px;
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 246, 243, 0.96);
  color: var(--charcoal);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 216px;
  min-width: 0;
}

.brand-logo {
  width: 216px;
  height: auto;
  filter: none;
}

.site-header:not(.is-scrolled):not(.is-open) .brand-logo:not(.brand-logo--blue):not(.brand-logo--white) {
  filter: brightness(0) invert(1) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
}

.brand-logo--blue,
.brand-logo--white {
  filter: none;
  transition: opacity 160ms ease;
}

.brand-logo--white {
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 0;
  pointer-events: none;
}

.site-header:not(.is-scrolled):not(.is-open) .brand-logo--blue {
  opacity: 0;
  filter: none;
}

.site-header:not(.is-scrolled):not(.is-open) .brand-logo--white {
  opacity: 1;
  filter: none;
}

.site-header.is-scrolled .brand-logo--blue,
.site-header.is-open .brand-logo--blue {
  opacity: 1;
}

.site-header.is-scrolled .brand-logo--white,
.site-header.is-open .brand-logo--white {
  opacity: 0;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  color: currentColor;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--brand-blue);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.site-header.is-scrolled .language-switch,
.site-header.is-open .language-switch {
  border-color: var(--line);
}

.language-switch a {
  min-width: 42px;
  min-height: 36px;
  display: grid;
  place-items: center;
  font-size: 13px;
  color: currentColor;
}

.language-switch a[aria-current="true"] {
  background: var(--brand-blue);
  color: var(--white);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  padding: 10px;
}

.menu-button span:not(.visually-hidden) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .site-header,
html[dir="rtl"] .language-switch {
  direction: ltr;
}

html[dir="rtl"] .site-nav,
html[dir="rtl"] .hero-content,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .service-copy,
html[dir="rtl"] .project-card,
html[dir="rtl"] .insight-card,
html[dir="rtl"] .about-grid,
html[dir="rtl"] .contact-grid,
html[dir="rtl"] .case-hero-copy,
html[dir="rtl"] .case-info-panel,
html[dir="rtl"] .procurement-story-copy,
html[dir="rtl"] .design-story-copy,
html[dir="rtl"] .blog-article,
html[dir="rtl"] .blog-meta-panel {
  direction: rtl;
}

html[dir="rtl"] .site-nav a::after {
  transform-origin: right;
}

html[dir="rtl"] .hero-content {
  width: min(1080px, calc(100% - 144px));
  margin: 0 72px 120px auto;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--charcoal);
}

.hero-carousel,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-carousel {
  overflow: hidden;
}

.hero-image {
  object-fit: cover;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 900ms ease,
    transform 7200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  background:
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.58),
      rgba(0, 0, 0, 0.26) 34%,
      rgba(0, 0, 0, 0) 68%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.58),
      rgba(0, 0, 0, 0.22) 36%,
      rgba(0, 0, 0, 0) 72%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 72px));
  margin: 0 auto 120px;
}

.hero-slogans {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(1320px, calc(100% - 48px));
  min-height: 112px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  text-align: center;
}

.hero-slogan {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 4.6vw, 60px);
  font-weight: 700;
  line-height: 1.28;
  white-space: normal;
  text-wrap: balance;
  text-shadow:
    0 4px 14px rgba(0, 0, 0, 0.72),
    0 18px 52px rgba(0, 0, 0, 0.64),
    0 0 2px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  filter: blur(8px);
  transition:
    opacity 720ms ease,
    transform 760ms cubic-bezier(0.21, 0.82, 0.32, 1),
    filter 760ms ease;
}

.hero-slogan.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.hero-carousel-controls {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 34px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  color: inherit;
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--white);
  border-color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
    transform: none;
  }

  .hero-slogan {
    transition: none;
    transform: none;
    filter: none;
  }
}

.section-kicker {
  margin: 0 0 20px;
  color: var(--brand-blue);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 800;
}

.hero h1 {
  max-width: none;
  white-space: nowrap;
}

.hero h1,
.hero .hero-lede,
.hero .hero-copy {
  display: none;
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 700;
  color: var(--charcoal);
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.28;
  font-weight: 700;
  color: var(--charcoal);
}

.hero-lede {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

html[lang^="zh"] .hero-copy {
  max-width: min(100%, 980px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  min-width: 158px;
  padding: 13px 22px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-weight: 700;
  line-height: 1.15;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.button.primary {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.hero-actions {
  justify-content: center;
  gap: 36px;
  margin-top: 0;
}

.hero-actions .button {
  position: relative;
  min-width: 0;
  min-height: auto;
  padding: 0 0 13px;
  border: 0;
  background: transparent;
  color: var(--white);
}

.hero-actions .button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: var(--white);
}

.hero-actions .button:hover {
  transform: translateY(-1px);
}

.hero-actions .button.primary,
.hero-actions .button.secondary {
  background: transparent;
  border-color: transparent;
  color: var(--white);
}

.button.secondary.dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.section,
.brand-band,
.contact-section {
  position: relative;
}

.section {
  padding: 112px 0;
}

.section-inner {
  width: min(var(--content-width), calc(100% - 72px));
  margin: 0 auto;
}

.brand-band {
  padding: 52px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.brand-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.brand-grid h2 {
  margin-bottom: 0;
}

.brand-grid p:last-child {
  margin: 44px 0 0;
  min-height: 106px;
  display: flex;
  align-items: center;
  padding: 0 0 0 30px;
  border-left: 6px solid var(--brand-blue);
  color: var(--muted-ink);
}

.section-heading {
  max-width: 770px;
  margin-bottom: 54px;
}

html[lang^="zh"] .section-heading {
  max-width: min(100%, 980px);
}

.section-heading.narrow {
  max-width: 900px;
}

.section-heading p:not(.section-kicker) {
  color: var(--muted-ink);
  font-size: 17px;
}

#services .section-heading {
  max-width: 100%;
}

#services-title,
#services .section-heading p:not(.section-kicker) {
  max-width: 100%;
}

#services .section-heading p:not(.section-kicker) {
  font-size: 15px;
}

#procurement .section-heading,
.process-section .section-heading,
#insights .section-heading.split > div {
  max-width: 100%;
}

#procurement .section-heading p:not(.section-kicker),
.process-section .section-heading p:not(.section-kicker) {
  max-width: 100%;
  font-size: 15px;
}

#procurement .section-heading p:not(.section-kicker) {
  font-size: 12px;
}

#process-title,
#insights-title {
  max-width: 100%;
}

.section-heading.split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: end;
}

.section-heading.split > div {
  max-width: 780px;
}

.text-link {
  color: var(--brand-blue);
  font-weight: 800;
  padding-bottom: 7px;
  border-bottom: 2px solid currentColor;
  white-space: nowrap;
}

.service-detail-link {
  display: inline-block;
  margin-top: 28px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 70px;
  align-items: center;
}

.service-copy {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.service-copy p,
.about-copy p,
.contact-copy p {
  color: var(--muted-ink);
}

.clean-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.clean-list li {
  position: relative;
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid var(--line);
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 6px;
  height: 28px;
  background: var(--brand-blue);
}

.image-frame {
  position: relative;
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid var(--brand-blue);
  pointer-events: none;
}

.image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.muted {
  background: var(--warm-gray);
}

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

.factory-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.factory-card:hover {
  border-color: rgba(16, 78, 137, 0.38);
  box-shadow: 0 18px 48px rgba(26, 26, 26, 0.12);
  transform: translateY(-3px);
}

.factory-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--warm-gray);
  transform-origin: center;
  transition:
    transform 360ms ease,
    filter 360ms ease;
}

.factory-card:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.025);
}

.factory-card div {
  padding: 28px;
}

.factory-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--brand-blue);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.factory-card p {
  margin: 0;
  color: var(--muted-ink);
}

.section-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 34px;
}

.feature-panel {
  background: var(--ivory);
  overflow: hidden;
}

.feature-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform-origin: center;
  transition:
    transform 360ms ease,
    filter 360ms ease;
}

.feature-panel img.fit-contain {
  object-fit: contain;
  padding: 18px;
  background: #f4f8fb;
}

.feature-panel:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.06);
}

.feature-panel:hover img.fit-contain {
  transform: scale(1.025);
}

.feature-panel div {
  padding: 28px;
}

.feature-panel p {
  margin: 0;
  color: var(--muted-ink);
}

.procurement-detail-hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 92px;
  color: var(--white);
  background: var(--charcoal);
}

.procurement-detail-hero::before,
.procurement-detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.procurement-detail-hero::before {
  content: "";
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78),
      rgba(0, 0, 0, 0.35) 54%,
      rgba(0, 0, 0, 0.12)
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.04));
}

.procurement-detail-hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: -130px;
  bottom: -170px;
  width: 440px;
  height: 440px;
  border: 28px solid rgba(16, 78, 137, 0.72);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.procurement-detail-hero img {
  object-fit: cover;
}

.procurement-hero-copy {
  position: relative;
  z-index: 3;
}

.procurement-hero-copy .section-kicker {
  color: var(--white);
  padding-left: 18px;
  border-left: 6px solid var(--brand-blue);
}

.procurement-hero-copy h1 {
  max-width: 880px;
}

.procurement-hero-copy p:last-child {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.procurement-detail-section {
  padding: 96px 0 112px;
  background: var(--ivory);
}

.procurement-story {
  display: grid;
  gap: 78px;
}

.procurement-story-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding-bottom: 78px;
  border-bottom: 1px solid var(--line);
}

.procurement-story-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.procurement-story-block:nth-child(even) .procurement-visual {
  order: 0;
}

.procurement-story-copy {
  max-width: 900px;
}

.procurement-story-copy p:not(.section-kicker) {
  color: var(--muted-ink);
}

.procurement-story-copy p:last-child {
  margin-bottom: 0;
}

.procurement-points {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.procurement-points li {
  position: relative;
  min-height: 28px;
  padding-left: 22px;
  color: var(--muted-ink);
}

.procurement-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 22px;
  background: var(--brand-blue);
}

.procurement-visual {
  justify-self: center;
  width: min(100%, 1080px);
  margin: 0;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.procurement-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.procurement-detail-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
}

.design-detail-hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 156px 0 96px;
  color: var(--white);
  background: var(--charcoal);
}

.design-detail-hero::before,
.design-detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.design-detail-hero::before {
  content: "";
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.72),
      rgba(0, 0, 0, 0.36) 52%,
      rgba(0, 0, 0, 0.06)
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.02) 58%);
}

.design-detail-hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: -132px;
  bottom: -160px;
  width: 440px;
  height: 440px;
  border: 28px solid rgba(16, 78, 137, 0.72);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.design-detail-hero img {
  object-fit: cover;
  object-position: center;
}

.design-hero-copy {
  position: relative;
  z-index: 3;
}

.design-hero-copy .section-kicker {
  color: var(--white);
  padding-left: 18px;
  border-left: 6px solid var(--brand-blue);
}

.design-hero-copy h1 {
  max-width: 920px;
}

.design-hero-copy p:last-of-type {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.design-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.design-principles {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.design-principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
}

.design-principle {
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.design-principle:last-child {
  border-right: 0;
}

.design-principle span,
.design-workflow-grid span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--brand-blue);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.design-principle h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.design-principle p,
.design-workflow-grid p {
  margin: 0;
  color: var(--muted-ink);
}

.design-story-section {
  padding: 96px 0 112px;
  background: var(--ivory);
}

.design-story {
  display: grid;
  gap: 78px;
}

.design-story-block {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 56px;
  align-items: center;
  padding-bottom: 78px;
  border-bottom: 1px solid var(--line);
}

.design-story-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.design-story-block:nth-child(even) .design-visual {
  order: -1;
}

.design-story-block--infographic {
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
}

.design-story-copy p:not(.section-kicker) {
  color: var(--muted-ink);
}

.design-points {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.design-points li {
  position: relative;
  min-height: 28px;
  padding-left: 22px;
  color: var(--muted-ink);
}

.design-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 5px;
  height: 22px;
  background: var(--brand-blue);
}

.design-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  background: var(--line);
  border: 1px solid var(--line);
}

.design-scope-grid span {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.design-visual {
  margin: 0;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.design-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.design-visual.infographic {
  background: #fbfcf8;
  padding: 10px;
}

.design-process-band {
  padding: 96px 0;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.78),
      rgba(234, 233, 230, 0.94)
    ),
    var(--warm-gray);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.design-workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.design-workflow-grid article {
  min-height: 260px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}

.design-workflow-grid article:last-child {
  border-right: 0;
}

.design-workflow-grid h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.design-cta {
  padding: 84px 0;
  background: var(--white);
}

.design-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.design-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.design-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.process-section {
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.78),
      rgba(234, 233, 230, 0.92)
    ),
    var(--warm-gray);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-section::before {
  content: "";
  position: absolute;
  left: -220px;
  top: 100px;
  width: 430px;
  height: 430px;
  border: 28px solid rgba(16, 78, 137, 0.24);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.process-section h2,
.process-section h3 {
  color: var(--charcoal);
}

.process-section .section-heading p:not(.section-kicker),
.process-grid p {
  color: var(--muted-ink);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
}

.process-grid article {
  min-height: 320px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
}

.process-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--brand-blue);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.process-visual {
  width: 74px;
  height: 74px;
  margin-bottom: 28px;
  border: 1px solid rgba(16, 78, 137, 0.16);
  background: var(--ivory);
}

.process-grid p {
  margin: 0;
  font-size: 14px;
}

.projects-section {
  background: var(--ivory);
}

.project-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -24px 0 34px;
}

.project-filter {
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--charcoal);
  font-weight: 800;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.project-filter:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 78, 137, 0.45);
}

.project-filter.is-active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--white);
}

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

.project-card,
.insight-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.project-card:hover,
.insight-card:hover {
  border-color: rgba(16, 78, 137, 0.38);
  box-shadow: 0 18px 48px rgba(26, 26, 26, 0.12);
  transform: translateY(-3px);
}

.project-card.is-hidden {
  display: none;
}

.project-card.large {
  grid-column: span 2;
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform-origin: center;
  transition:
    transform 360ms ease,
    filter 360ms ease;
}

.project-card:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.06);
}

.project-card.large img {
  aspect-ratio: 16 / 7;
}

.project-card div,
.insight-card div {
  padding: 24px;
}

.project-card p,
.project-card span,
.insight-card time,
.insight-card p {
  color: var(--muted-ink);
  font-size: 14px;
}

.project-card p,
.insight-card time {
  display: block;
  margin-bottom: 10px;
}

.project-card h3,
.insight-card h3 {
  min-height: 58px;
}

.project-card span {
  display: block;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.portfolio-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 110px) 0 86px;
  color: var(--white);
}

.portfolio-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.28)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08));
}

.portfolio-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  z-index: 2;
  width: 440px;
  height: 440px;
  border: 32px solid rgba(16, 78, 137, 0.72);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.portfolio-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-hero-copy {
  position: relative;
  z-index: 3;
}

.portfolio-hero-copy .section-kicker,
.portfolio-hero-copy h1,
.portfolio-hero-copy p {
  color: var(--white);
}

.portfolio-hero-copy h1 {
  max-width: 860px;
}

.portfolio-hero-copy p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.portfolio-section {
  background: var(--ivory);
}

.portfolio-grid .project-card:nth-child(2),
.portfolio-grid .project-card:nth-child(5) {
  --reveal-delay: 90ms;
}

.portfolio-grid .project-card:nth-child(3),
.portfolio-grid .project-card:nth-child(4) {
  --reveal-delay: 160ms;
}

.portfolio-cta {
  padding: 86px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.portfolio-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
}

.portfolio-cta-grid h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.insight-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.insight-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform-origin: center;
  transition:
    transform 360ms ease,
    filter 360ms ease;
}

.insight-card img.fit-contain {
  object-fit: contain;
  padding: 16px;
  background: #f7faf4;
}

.insight-card:hover img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.06);
}

.insight-card:hover img.fit-contain {
  transform: scale(1.025);
}

.insight-card p {
  margin-bottom: 18px;
}

.insight-card .read-more {
  margin-top: auto;
}

.insight-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 34px;
}

.blog-list-section {
  padding-top: calc(var(--header-height) + 84px);
}

.blog-list-section .section-heading {
  margin-bottom: 46px;
}

.blog-list-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.read-more {
  display: inline-block;
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 800;
  padding-bottom: 6px;
  border-bottom: 2px solid currentColor;
}

.blog-body {
  background: var(--ivory);
}

.blog-main {
  padding-top: 0;
}

.blog-hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 86px;
  color: var(--white);
  background: var(--charcoal);
}

.blog-hero::before,
.blog-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blog-hero::before {
  content: "";
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78),
      rgba(0, 0, 0, 0.38) 54%,
      rgba(0, 0, 0, 0.12)
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.08));
}

.blog-hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: -130px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border: 28px solid rgba(16, 78, 137, 0.72);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.blog-hero-image {
  object-fit: cover;
}

.blog-hero-copy {
  position: relative;
  z-index: 3;
}

.blog-hero-copy .section-kicker {
  color: var(--white);
  padding-left: 18px;
  border-left: 6px solid var(--brand-blue);
}

.blog-hero h1 {
  max-width: 940px;
}

.blog-hero-summary {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.blog-article-section {
  padding: 86px 0 106px;
  background: var(--ivory);
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.blog-meta-panel {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding-left: 28px;
  border-left: 6px solid var(--brand-blue);
}

.blog-meta-panel dl {
  margin: 0;
}

.blog-meta-panel div {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.blog-meta-panel div:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.blog-meta-panel dt {
  margin-bottom: 6px;
  color: var(--brand-blue);
  font-weight: 800;
}

.blog-meta-panel dd {
  margin: 0;
  color: var(--muted-ink);
}

.blog-article {
  display: grid;
  gap: 48px;
}

.blog-intro {
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.blog-intro p {
  max-width: 820px;
  color: var(--muted-ink);
  font-size: 20px;
}

.blog-section {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: 42px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.blog-section:last-of-type {
  border-bottom: 0;
}

.blog-section .section-kicker {
  margin-bottom: 0;
}

.blog-section-copy p {
  color: var(--muted-ink);
}

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

.blog-article-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted-ink);
}

.blog-article-list li {
  padding-left: 6px;
}

.blog-figure {
  margin: 28px 0 6px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.blog-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-figure--lead {
  max-width: 760px;
}

.blog-step-list {
  display: grid;
  gap: 34px;
  margin-top: 28px;
}

.blog-step-item {
  display: grid;
  grid-template-columns: minmax(220px, 0.44fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.blog-step-item .blog-figure {
  margin: 0;
}

.blog-callout {
  padding: 28px 0 28px 28px;
  border-left: 6px solid var(--brand-blue);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.blog-callout h2 {
  margin-bottom: 12px;
}

.blog-callout p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted-ink);
}

.blog-callout p + p {
  margin-top: 14px;
}

.blog-pager {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
}

.blog-pager a {
  min-width: 180px;
}

.legal-hero {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 86px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(26, 26, 26, 0.96), rgba(16, 78, 137, 0.82)),
    var(--charcoal);
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 58%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 86px
    );
}

.legal-hero::after {
  content: "";
  position: absolute;
  right: -118px;
  bottom: -132px;
  width: 360px;
  height: 360px;
  border: 26px solid rgba(255, 255, 255, 0.18);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.legal-hero-copy {
  position: relative;
  z-index: 1;
}

.legal-hero-copy .section-kicker {
  color: var(--white);
  padding-left: 18px;
  border-left: 6px solid var(--brand-blue);
}

.legal-hero h1 {
  max-width: 900px;
}

.legal-hero p:last-child {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.legal-section {
  padding: 94px 0 112px;
  background: var(--ivory);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 118px;
  padding: 28px 30px;
  border-left: 6px solid var(--brand-blue);
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-summary strong {
  display: block;
  margin: 0 0 26px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
}

.legal-summary dl {
  display: grid;
  gap: 20px;
  margin: 0;
}

.legal-summary dt {
  margin-bottom: 6px;
  color: var(--brand-blue);
  font-weight: 800;
}

.legal-summary dd {
  margin: 0;
  color: var(--muted-ink);
  line-height: 1.7;
}

.legal-content {
  display: grid;
  gap: 24px;
}

.legal-block {
  padding: 32px 36px 34px;
  border: 1px solid var(--line);
  background: var(--white);
}

.legal-block h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
}

.legal-block p:not(.section-kicker),
.legal-block li {
  color: var(--muted-ink);
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-block li {
  position: relative;
  padding-left: 22px;
}

.legal-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 5px;
  height: 18px;
  background: var(--brand-blue);
}

.about-section {
  padding: 112px 0;
  background:
    linear-gradient(180deg, rgba(247, 246, 243, 0), rgba(247, 246, 243, 0.72)),
    var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 46px 72px;
  align-items: start;
}

.about-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-self: end;
  padding-top: 10px;
}

.about-copy p {
  margin: 0;
  padding: 0 0 0 24px;
  border-left: 4px solid rgba(16, 78, 137, 0.32);
  color: var(--muted-ink);
  font-size: 16px;
  line-height: 1.62;
}

.about-map {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  padding: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(234, 233, 230, 0.74)),
    var(--ivory);
  box-shadow: 0 18px 52px rgba(26, 26, 26, 0.08);
}

.about-map img {
  width: 100%;
  aspect-ratio: 1180 / 380;
  object-fit: cover;
}

.contact-section {
  padding: 112px 0;
  background: var(--ivory);
  overflow: hidden;
}

.contact-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 88px;
  width: 360px;
  height: 360px;
  border: 22px solid rgba(16, 78, 137, 0.18);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.84fr) minmax(230px, 0.66fr) minmax(
      390px,
      1.14fr
    );
  gap: 30px;
}

.contact-copy h2 {
  margin-bottom: 24px;
}

.company-address {
  position: relative;
  display: grid;
  gap: 10px;
  max-width: 360px;
  margin-top: clamp(54px, 9vw, 122px);
  padding: 20px 22px 20px 28px;
  color: var(--charcoal);
  font-style: normal;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 22px 46px rgba(26, 26, 26, 0.08);
}

.company-address::before {
  position: absolute;
  inset: 20px auto 20px 0;
  width: 6px;
  content: "";
  background: var(--brand-blue);
}

.company-address span {
  color: var(--brand-blue);
  font-size: 14px;
  font-weight: 800;
}

.company-address strong {
  font-size: 18px;
  line-height: 1.55;
}

.contact-details {
  padding: 0 0 0 32px;
  border-left: 6px solid var(--brand-blue);
}

.contact-details dl {
  margin: 0;
}

.contact-details dl > div {
  padding: 0 0 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-details dl > div:last-child {
  border-bottom: 0;
}

.contact-details dt {
  margin-bottom: 8px;
  color: var(--brand-blue);
  font-weight: 800;
}

.contact-details dd {
  margin: 0;
  color: var(--muted-ink);
}

.contact-details a {
  color: var(--charcoal);
  font-weight: 700;
}

.phone-links a {
  display: block;
}

.phone-links a + a {
  margin-top: 6px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--brand-blue);
  border: 1px solid rgba(16, 78, 137, 0.28);
  background: var(--white);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.social-link:hover {
  color: var(--white);
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  transform: translateY(-2px);
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 14px;
  align-content: start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--muted-ink);
  font-size: 13px;
  font-weight: 700;
}

.form-field.full,
.contact-form .button,
.form-note {
  grid-column: 1 / -1;
}

.contact-form .button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--ivory);
  color: var(--charcoal);
  padding: 12px 14px;
  font: inherit;
  font-size: 13px;
  line-height: 1.35;
  outline: 0;
}

.contact-form select {
  appearance: none;
  font-size: 12px;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand-blue) 50%),
    linear-gradient(135deg, var(--brand-blue) 50%, transparent 50%);
  background-position:
    calc(100% - 21px) 50%,
    calc(100% - 15px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.contact-form textarea {
  min-height: 108px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(16, 78, 137, 0.12);
}

.contact-form .button {
  width: 100%;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--brand-blue);
  font-size: 13px;
}

.site-footer {
  padding: 36px 0;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
}

.back-to-top {
  position: fixed;
  right: 0;
  bottom: 28px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: var(--brand-blue);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(16, 78, 137, 0.28);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(44px);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.back-to-top::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: 4px;
}

.back-to-top span {
  margin-top: -8px;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #0d3f70;
  box-shadow: 0 20px 46px rgba(16, 78, 137, 0.36);
  transform: translateX(0) translateY(-3px);
}

@media (hover: none) {
  .back-to-top {
    right: 18px;
    transform: none;
  }
}

html[dir="rtl"] .section-kicker,
html[dir="rtl"] .feature-panel span,
html[dir="rtl"] .factory-card span,
html[dir="rtl"] .process-grid span,
html[dir="rtl"] .project-card p,
html[dir="rtl"] .insight-card time {
  letter-spacing: 0;
}

html[dir="rtl"] .text-link::after {
  transform-origin: right;
}

html[dir="rtl"] .clean-list li {
  padding-left: 0;
  padding-right: 28px;
}

html[dir="rtl"] .clean-list li::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .legal-hero-copy .section-kicker,
html[dir="rtl"] .legal-summary {
  padding-left: 0;
  padding-right: 18px;
  border-left: 0;
  border-right: 6px solid var(--brand-blue);
}

html[dir="rtl"] .legal-summary {
  padding-right: 30px;
}

html[dir="rtl"] .legal-block li {
  padding-left: 0;
  padding-right: 22px;
}

html[dir="rtl"] .legal-block li::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .company-address {
  padding: 20px 28px 20px 22px;
}

html[dir="rtl"] .company-address::before {
  inset: 20px 0 20px auto;
}

html[dir="rtl"] .contact-details {
  padding: 0 32px 0 0;
  border-left: 0;
  border-right: 6px solid var(--brand-blue);
}

html[dir="rtl"] .contact-form input,
html[dir="rtl"] .contact-form textarea,
html[dir="rtl"] .contact-form select {
  text-align: right;
}

html[dir="rtl"] .contact-form select {
  background-position: left 16px center;
  padding-left: 42px;
  padding-right: 14px;
}

html[dir="rtl"] .case-info-panel dl,
html[dir="rtl"] .blog-meta-panel dl {
  border-left: 0;
  border-right: 6px solid var(--brand-blue);
  padding-left: 0;
  padding-right: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 28px;
  align-items: center;
  min-height: 92px;
}

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

.footer-logo {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-self: center;
  width: 220px;
  filter: brightness(0) invert(1);
}

.footer-grid p {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  margin: 0;
  max-width: none;
  font-size: 13px;
  line-height: 1.45;
  text-align: right;
  white-space: nowrap;
}

.footer-legal {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

.footer-legal > * + *::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  margin: 0 12px 0 -10px;
  vertical-align: -2px;
  background: rgba(255, 255, 255, 0.36);
}

.footer-grid a {
  color: var(--white);
  font-weight: 400;
}

.footer-legal a {
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-grid-simple p,
.footer-grid-simple .footer-legal {
  grid-column: 1;
  grid-row: auto;
  justify-self: center;
  text-align: center;
}

.site-footer .footer-grid > * {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 620ms ease,
    transform 680ms cubic-bezier(0.21, 0.82, 0.32, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .button,
  .feature-panel img,
  .project-card,
  .project-card img,
  .insight-card,
  .insight-card img,
  .back-to-top,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: minmax(150px, 1fr) auto auto;
    padding: 0 22px;
  }

  .brand-link,
  .brand-logo {
    width: 190px;
  }

  .menu-button {
    order: 3;
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    left: auto;
    right: 22px;
    width: min(220px, calc(100% - 44px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 22px 18px;
    background: rgba(247, 246, 243, 0.98);
    color: var(--charcoal);
    border: 1px solid var(--line);
    box-shadow: 0 20px 48px rgba(26, 26, 26, 0.14);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .language-switch {
    order: 2;
    justify-self: end;
  }

  .hero-content {
    margin: 0 auto 120px;
    width: min(680px, calc(100% - 44px));
  }

  html[dir="rtl"] .hero-content {
    width: min(680px, calc(100% - 64px));
    margin: 0 32px 120px auto;
  }

  h1 {
    font-size: 52px;
  }

  .hero h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

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

  .procurement-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .procurement-story-block {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .procurement-story-block:nth-child(even) .procurement-visual {
    order: 0;
  }

  .design-principle-grid,
  .design-workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .design-principle:nth-child(2),
  .design-workflow-grid article:nth-child(2) {
    border-right: 0;
  }

  .design-principle:nth-child(-n + 2),
  .design-workflow-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .design-story-block,
  .design-cta-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .design-story-block:nth-child(even) .design-visual {
    order: 0;
  }

  .design-cta-actions {
    justify-content: flex-start;
  }

  .blog-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .portfolio-hero {
    min-height: 68vh;
    padding: calc(var(--header-height) + 96px) 0 70px;
  }

  .portfolio-cta-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .blog-meta-panel {
    position: static;
    display: grid;
    padding: 0 0 0 24px;
  }

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

  .blog-meta-panel div {
    margin: 0;
    padding: 0;
    border-bottom: 0;
  }

  .blog-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog-step-item {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .legal-summary {
    position: static;
  }

  .feature-panel {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
  }

  .feature-panel img {
    height: 100%;
  }

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

  .contact-copy {
    grid-column: 1 / -1;
  }

  .company-address {
    margin-top: 32px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    grid-template-columns: minmax(118px, 1fr) auto auto;
    gap: 8px;
    padding: 0 12px;
  }

  .site-nav {
    top: calc(var(--header-height) + 6px);
    right: 12px;
    width: min(210px, calc(100% - 24px));
  }

  .brand-link,
  .brand-logo {
    width: 154px;
  }

  .menu-button {
    order: 3;
    width: 40px;
    height: 40px;
    padding: 9px;
  }

  .language-switch {
    order: 2;
    display: flex;
  }

  .language-switch a {
    min-width: 34px;
    min-height: 32px;
    font-size: 12px;
  }

  .hero {
    display: block;
    min-height: 0;
    height: auto;
    padding: 118px 0 26px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-carousel-controls {
    left: 50%;
    right: auto;
    bottom: 16px;
    gap: 8px;
    transform: translateX(-50%);
  }

  .hero-content {
    margin: 0 auto 42px;
    padding-top: 176px;
    width: calc(100% - 32px);
  }

  .hero-slogans {
    top: 44%;
    width: calc(100% - 32px);
    min-height: 150px;
  }

  .hero-slogan {
    font-size: clamp(20px, 7.4vw, 34px);
  }

  html[dir="rtl"] .hero-content {
    width: calc(100% - 40px);
    margin: 0 20px 28px auto;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 19px;
  }

  .hero-lede {
    font-size: 20px;
  }

  .hero-copy,
  .section-heading p:not(.section-kicker) {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
  }

  .hero-actions {
    width: auto;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-top: 0;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
  }

  .section,
  .about-section,
  .contact-section {
    padding: 76px 0;
  }

  .section-inner {
    width: calc(100% - 32px);
  }

  .brand-grid,
  .service-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .brand-grid p:last-child {
    margin-top: 10px;
    min-height: 0;
    display: block;
    padding-top: 0;
  }

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

  .section-heading.split {
    display: block;
  }

  .text-link {
    display: inline-block;
    margin-top: 14px;
    white-space: normal;
  }

  .image-frame::before {
    inset: -10px 10px 10px -10px;
  }

  .feature-panel {
    display: block;
  }

  .factory-card div {
    padding: 22px;
  }

  .section-actions {
    justify-content: flex-start;
  }

  .procurement-detail-hero {
    min-height: 0;
    padding: 108px 0 64px;
  }

  .procurement-hero-copy p:last-child {
    font-size: 16px;
  }

  .procurement-detail-section {
    padding: 72px 0;
  }

  .procurement-story {
    gap: 52px;
  }

  .procurement-story-block {
    padding-bottom: 52px;
  }

  .procurement-visual {
    padding: 8px;
  }

  .procurement-detail-footer {
    flex-direction: column;
  }

  .design-detail-hero {
    min-height: 0;
    padding: 108px 0 64px;
  }

  .design-detail-hero::after {
    right: -260px;
    bottom: -110px;
  }

  .design-hero-copy p:last-of-type {
    font-size: 16px;
  }

  .design-hero-actions {
    align-items: stretch;
  }

  .design-principles,
  .design-process-band,
  .design-cta {
    padding: 72px 0;
  }

  .design-principle-grid,
  .design-workflow-grid {
    grid-template-columns: 1fr;
  }

  .design-principle,
  .design-workflow-grid article {
    min-height: 0;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .design-principle:last-child,
  .design-workflow-grid article:last-child {
    border-bottom: 0;
  }

  .design-story-section {
    padding: 72px 0;
  }

  .design-story {
    gap: 52px;
  }

  .design-story-block {
    padding-bottom: 52px;
  }

  .design-scope-grid {
    grid-template-columns: 1fr;
  }

  .design-visual {
    padding: 8px;
  }

  .blog-hero {
    min-height: 0;
    padding: 112px 0 64px;
  }

  .blog-hero-summary,
  .blog-intro p {
    font-size: 16px;
  }

  .blog-article-section {
    padding: 72px 0;
  }

  .blog-meta-panel dl {
    grid-template-columns: 1fr;
  }

  .blog-section {
    padding-bottom: 40px;
  }

  .blog-callout {
    padding: 24px 0 24px 22px;
  }

  .blog-pager {
    flex-direction: column;
  }

  .legal-hero {
    min-height: 0;
    padding: 112px 0 64px;
  }

  .legal-hero::after {
    right: -240px;
    bottom: -110px;
  }

  .legal-hero p:last-child {
    font-size: 16px;
  }

  .legal-section {
    padding: 72px 0;
  }

  .legal-block {
    padding: 24px;
  }

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

  .process-grid article {
    min-height: 0;
  }

  .process-grid span {
    margin-bottom: 24px;
  }

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

  .project-card.large {
    grid-column: auto;
  }

  .project-card.large img {
    aspect-ratio: 16 / 10;
  }

  .portfolio-hero {
    min-height: 0;
    padding: 112px 0 68px;
  }

  .portfolio-hero::after {
    right: -260px;
    bottom: -120px;
  }

  .portfolio-hero-copy p:last-child {
    font-size: 16px;
  }

  .portfolio-cta {
    padding: 72px 0;
  }

  .project-card h3,
  .insight-card h3 {
    min-height: 0;
  }

  .about-copy {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 0;
  }

  .contact-details {
    padding-left: 20px;
  }

  .company-address {
    max-width: none;
    margin-top: 28px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    text-align: left;
  }

  .footer-logo,
  .footer-grid p,
  .footer-legal {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-grid p {
    max-width: none;
    text-align: left;
    white-space: normal;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    max-width: 100%;
    font-size: clamp(26px, 7vw, 30px);
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 25px;
  }
}

@media (max-width: 420px) {
  .brand-link,
  .brand-logo {
    width: 136px;
  }

  .language-switch a {
    min-width: 31px;
    min-height: 30px;
    font-size: 11px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }
}

@media (max-width: 760px) {
  html[dir="rtl"] .contact-details {
    padding-left: 0;
    padding-right: 20px;
  }

  html[dir="rtl"] .footer-grid,
  html[dir="rtl"] .footer-grid p {
    text-align: right;
  }
}

/* Premium visual pass */
:root {
  --deep-navy: #082f55;
  --steel-blue: #2e668f;
  --brass: #b79862;
  --paper: #fbfaf7;
  --soft-line: rgba(26, 26, 26, 0.1);
  --shadow-soft: 0 18px 56px rgba(22, 27, 34, 0.1);
  --shadow-lift: 0 28px 84px rgba(22, 27, 34, 0.16);
  --ease-premium: cubic-bezier(0.21, 0.82, 0.32, 1);
  --font-en:
    "Aptos Display", "Segoe UI Variable Display", "Inter Tight", Inter, Arial,
    sans-serif;
  --font-main:
    "Aptos", "Segoe UI Variable Text", Inter, "思源黑体 CN",
    "Source Han Sans CN", "Source Han Sans SC", "Noto Sans CJK SC",
    "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
}

body {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--ivory) 44%, #f1f0ec 100%);
  font-feature-settings: "kern" 1, "liga" 1;
}

html,
body {
  overflow-x: hidden;
}

.site-header {
  transition:
    background 260ms ease,
    color 220ms ease,
    box-shadow 260ms ease,
    backdrop-filter 260ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 250, 247, 0.9);
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.08);
}

.site-nav {
  gap: clamp(18px, 2vw, 32px);
  font-size: 14px;
  font-weight: 760;
}

.site-nav a::after {
  bottom: 2px;
  height: 3px;
  background: currentColor;
}

.language-switch {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled .language-switch,
.site-header.is-open .language-switch {
  background: rgba(255, 255, 255, 0.64);
}

.hero {
  min-height: 720px;
}

.hero-slide {
  transform: scale(1.06);
  transition:
    opacity 980ms ease,
    transform 8200ms var(--ease-premium);
  will-change: opacity, transform;
}

.hero-slide.is-active {
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.66) 0%,
      rgba(0, 0, 0, 0.34) 28%,
      rgba(0, 0, 0, 0.08) 58%,
      rgba(0, 0, 0, 0) 78%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.28) 24%,
      rgba(0, 0, 0, 0) 55%
    );
}

.hero-slogans {
  width: min(1420px, calc(100% - 56px));
}

.hero-slogan {
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 650;
  line-height: 1.18;
  text-shadow:
    0 5px 18px rgba(0, 0, 0, 0.64),
    0 24px 62px rgba(0, 0, 0, 0.58);
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 820ms ease,
    transform 900ms var(--ease-premium),
    filter 900ms ease;
}

.hero-actions {
  position: relative;
  z-index: 3;
  gap: clamp(34px, 4vw, 56px);
}

.hero-actions .button {
  font-weight: 760;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.38);
}

.hero-actions .button::after {
  height: 5px;
  transform: scaleX(0.86);
  transform-origin: center;
  transition:
    transform 240ms var(--ease-premium),
    opacity 240ms ease;
}

.hero-actions .button:hover::after {
  transform: scaleX(1);
}

.hero-dot {
  width: 10px;
  height: 10px;
  transition:
    width 240ms var(--ease-premium),
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.hero-dot:hover {
  transform: translateY(-1px);
}

h1,
h2,
h3 {
  color: #171717;
  font-family: var(--font-en);
}

h2 {
  font-weight: 720;
}

.section-kicker {
  color: var(--brand-blue);
  font-size: 18px;
  font-weight: 780;
}

.section {
  padding: 118px 0;
}

.brand-band {
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}

.brand-grid {
  align-items: center;
}

.brand-grid p:last-child {
  margin-top: 0;
  min-height: 118px;
  padding: 30px 30px 30px 34px;
  border-left: 6px solid var(--brand-blue);
  background: rgba(255, 255, 255, 0.54);
}

.service-layout {
  align-items: start;
}

.image-frame::before,
.design-visual,
.procurement-visual,
.case-info-panel,
.blog-meta-panel {
  border-color: rgba(16, 78, 137, 0.24);
}

.image-frame img,
.design-visual,
.procurement-visual,
.project-card,
.insight-card,
.factory-card,
.feature-panel,
.contact-form,
.company-address {
  box-shadow: var(--shadow-soft);
}

.factory-card,
.project-card,
.insight-card,
.feature-panel {
  border-color: var(--soft-line);
}

.factory-card:hover,
.project-card:hover,
.insight-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
}

.project-card img,
.insight-card img,
.factory-card img,
.feature-panel img {
  transition:
    transform 700ms var(--ease-premium),
    filter 700ms ease;
}

.project-card:hover img,
.insight-card:hover img {
  filter: saturate(1.03) contrast(1.04);
  transform: scale(1.045);
}

.project-card h3,
.insight-card h3 {
  line-height: 1.24;
}

.read-more,
.text-link {
  font-weight: 780;
}

.read-more {
  position: relative;
  border-bottom: 0;
}

.read-more::after,
.text-link::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 6px;
  background: currentColor;
  transform: scaleX(0.76);
  transform-origin: left;
  transition: transform 240ms var(--ease-premium);
}

.insight-card:hover .read-more::after,
.project-card:hover .read-more::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.text-link {
  border-bottom: 0;
}

.about-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8, 47, 85, 0.06), rgba(183, 152, 98, 0.08)),
    var(--paper);
}

.about-grid {
  position: relative;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 0.72fr) minmax(380px, 1.22fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.about-grid::before {
  content: "";
  position: absolute;
  inset: -42px -34px;
  border: 1px solid rgba(16, 78, 137, 0.12);
  pointer-events: none;
}

.about-grid > div:first-child {
  position: sticky;
  top: calc(var(--header-height) + 44px);
}

.about-copy {
  display: grid;
  gap: 26px;
  color: var(--muted-ink);
}

.about-copy p {
  margin: 0;
  padding: 0 0 26px;
  border-bottom: 1px solid var(--soft-line);
}

.about-map {
  margin: 0;
  align-self: stretch;
  padding: 28px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(16, 78, 137, 0.16);
  box-shadow: var(--shadow-soft);
}

.about-map img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
}

.back-to-top {
  box-shadow: 0 18px 42px rgba(8, 47, 85, 0.24);
}

@media (min-width: 1101px) {
  .section-heading.split {
    align-items: start;
  }

  .projects-section .section-heading.split > div,
  .blog-section .section-heading.split > div {
    max-width: 820px;
  }
}

@media (max-width: 1100px) {
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(360px, 84vw);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: calc(var(--header-height) + 28px) 34px 34px;
    background: rgba(251, 250, 247, 0.96);
    color: var(--charcoal);
    border-left: 1px solid var(--soft-line);
    box-shadow: -28px 0 70px rgba(22, 27, 34, 0.16);
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 360ms var(--ease-premium),
      opacity 240ms ease;
    backdrop-filter: blur(20px);
  }

  .site-header.is-open .site-nav {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    font-size: 18px;
    padding: 20px 0;
  }

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

  .about-grid > div:first-child {
    position: static;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 540px;
    padding-top: 104px;
  }

  .hero-slogans {
    top: 43%;
    min-height: 132px;
  }

  .hero-slogan {
    font-size: clamp(28px, 10vw, 42px);
    line-height: 1.16;
  }

  .hero-content {
    padding-top: 278px;
    margin-bottom: 54px;
  }

  .hero-actions {
    gap: 36px;
  }

  .hero-actions .button {
    font-size: 15px;
  }

  .section-kicker {
    font-size: 17px;
  }

  .brand-grid p:last-child {
    padding: 24px 0 24px 24px;
  }

  .about-map {
    padding: 18px;
  }

  .about-map img {
    min-height: 260px;
  }
}

@media (max-width: 420px) {
  .hero-slogan {
    font-size: clamp(25px, 10.4vw, 36px);
  }

  .hero-actions {
    gap: 28px;
  }

  .hero-actions .button::after {
    height: 4px;
  }
}

/* Premium refinement completion */
:root {
  --content-width: 1200px;
  --header-x: clamp(22px, 3vw, 48px);
}

.site-header {
  padding-inline: var(--header-x);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 250, 247, 0.94);
  box-shadow:
    0 1px 0 rgba(26, 26, 26, 0.08),
    0 18px 52px rgba(22, 27, 34, 0.08);
  backdrop-filter: blur(18px);
}

.brand-logo {
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-shade {
  background:
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.34) 26%,
      rgba(0, 0, 0, 0.1) 58%,
      rgba(0, 0, 0, 0) 78%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.64) 0%,
      rgba(0, 0, 0, 0.36) 20%,
      rgba(0, 0, 0, 0.08) 48%,
      rgba(0, 0, 0, 0) 70%
    );
}

.hero-slogan {
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-actions .button {
  min-width: 124px;
}

.hero-actions .button::after {
  width: min(112px, 100%);
  margin-inline: auto;
}

.section-heading,
.section-heading.narrow,
#procurement .section-heading,
.process-section .section-heading,
#insights .section-heading.split > div {
  max-width: min(100%, 1120px);
}

.section-heading p:not(.section-kicker),
#services .section-heading p:not(.section-kicker),
#procurement .section-heading p:not(.section-kicker),
.process-section .section-heading p:not(.section-kicker) {
  max-width: min(100%, 1120px);
  font-size: 16px;
  text-wrap: normal;
}

#services-title,
#process-title,
#insights-title {
  max-width: min(100%, 1120px);
  text-wrap: normal;
}

.brand-grid p:last-child {
  align-items: center;
}

.button:not(.hero-actions .button) {
  transition:
    transform 220ms var(--ease-premium),
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.button:not(.hero-actions .button):hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(8, 47, 85, 0.18);
}

.project-card,
.insight-card,
.factory-card,
.feature-panel {
  overflow: hidden;
}

.insight-card > div,
.project-card div {
  min-height: 0;
}

.insight-card .read-more,
.project-card .read-more {
  margin-top: auto;
}

.about-section {
  border-top: 1px solid rgba(16, 78, 137, 0.1);
  border-bottom: 1px solid rgba(16, 78, 137, 0.1);
}

.about-copy p {
  font-size: 16px;
  line-height: 1.7;
}

.about-map img {
  filter: contrast(1.02) saturate(1.03);
}

.reveal {
  will-change: opacity, transform;
}

@media (min-width: 1101px) {
  .site-nav {
    justify-self: center;
  }

  .hero-actions {
    left: auto;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: minmax(148px, 1fr) auto auto;
  }

  .menu-button {
    justify-self: end;
    order: 3;
  }

  .language-switch {
    order: 2;
  }

  .site-nav {
    justify-content: flex-start;
    padding-top: calc(var(--header-height) + 38px);
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: minmax(116px, 1fr) auto auto;
    gap: 4px;
    padding-inline: 12px;
    max-width: 100vw;
  }

  .brand-link,
  .brand-logo {
    width: clamp(116px, 33vw, 136px);
  }

  .language-switch a {
    min-width: 28px;
    min-height: 32px;
    font-size: 11px;
  }

  .menu-button {
    width: 38px;
    height: 38px;
    padding: 8px;
  }

  .section-inner,
  .brand-grid,
  .service-layout,
  .about-grid,
  .contact-grid {
    min-width: 0;
  }

  .hero-slogans {
    width: min(92vw, 620px);
  }

  .hero-slogan {
    font-size: clamp(24px, 9vw, 40px);
    line-height: 1.24;
  }

  .hero-content {
    padding-top: 288px;
  }

  .hero-actions {
    width: min(92vw, 360px);
    justify-content: center;
    gap: 34px;
  }

  .hero-actions .button {
    min-width: 118px;
  }

  .site-nav {
    width: min(320px, 82vw);
    padding-inline: 28px;
  }
}

@media (max-width: 420px) {
  .hero-slogan {
    font-size: clamp(22px, 8.6vw, 34px);
  }

  .hero-actions {
    gap: 26px;
  }
}

/* Local correction pass for annotated layout issues */
.design-detail-hero h1,
.procurement-detail-hero h1,
.portfolio-hero h1,
.case-hero h1 {
  color: var(--white);
}

.about-grid {
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: 44px 66px;
  align-items: center;
}

.about-grid::before {
  inset: -26px -28px;
}

.about-grid > div:first-child {
  position: static;
}

.about-copy {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 32px;
  align-self: center;
  padding-top: 0;
}

.about-copy p {
  padding-left: 38px;
  line-height: 1.7;
}

.about-map {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.about-map img {
  height: auto;
  min-height: 0;
  aspect-ratio: 1180 / 380;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .site-nav {
    background: var(--paper);
    backdrop-filter: none;
  }

  .site-header.is-open .site-nav {
    background: var(--paper);
  }

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

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

@media (min-width: 761px) and (max-width: 1100px) {
  .service-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
    gap: 48px;
  }

  .service-layout .image-frame {
    height: 100%;
  }

  .service-layout .image-frame img {
    height: 100%;
    min-height: 500px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
    gap: 32px 48px;
    align-items: start;
  }

  .contact-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .company-address {
    max-width: none;
    margin-top: 28px;
  }

  .contact-details {
    grid-column: 1;
    grid-row: 2;
  }

  .contact-form {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
  }
}

@media (max-width: 760px) {
  .about-copy {
    grid-template-columns: 1fr;
  }

  .about-copy p {
    padding-left: 30px;
  }

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

  .contact-copy,
  .contact-details,
  .contact-form {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Local annotation pass 2026-06-06 */
.procurement-story-copy {
  max-width: min(100%, 1140px);
}

.procurement-story-copy h2 {
  max-width: min(100%, 1140px);
}

.procurement-story-copy p:not(.section-kicker) {
  max-width: min(100%, 1020px);
}

.blog-hero h1,
.legal-hero h1 {
  color: var(--white);
}

.about-copy p {
  border-bottom: 0;
}

@media (max-width: 1100px) {
  .site-header.is-open .menu-button,
  .site-header.is-open .language-switch {
    position: relative;
    z-index: 45;
  }

  .site-header.is-open .menu-button {
    background: var(--paper);
    border-color: var(--line);
    color: var(--charcoal);
  }

  .site-nav {
    z-index: 40;
    bottom: auto;
    height: min(500px, 100dvh);
    min-height: min(500px, 100dvh);
    overflow-y: auto;
  }
}

/* RTL alignment for vertical accent rules */
html[dir="rtl"] .brand-grid p:last-child {
  padding-left: 30px;
  padding-right: 34px;
  border-left: 0;
  border-right: 6px solid var(--brand-blue);
}

html[dir="rtl"] .design-hero-copy .section-kicker,
html[dir="rtl"] .procurement-hero-copy .section-kicker,
html[dir="rtl"] .blog-hero-copy .section-kicker,
html[dir="rtl"] .legal-hero-copy .section-kicker {
  padding-left: 0;
  padding-right: 18px;
  border-left: 0;
  border-right: 6px solid var(--brand-blue);
}

html[dir="rtl"] .about-copy p {
  padding-left: 0;
  padding-right: 38px;
  border-left: 0;
  border-right: 4px solid rgba(16, 78, 137, 0.32);
}

html[dir="rtl"] .clean-list li,
html[dir="rtl"] .design-points li,
html[dir="rtl"] .procurement-points li,
html[dir="rtl"] .legal-block li {
  padding-left: 0;
  padding-right: 28px;
}

html[dir="rtl"] .clean-list li::before,
html[dir="rtl"] .design-points li::before,
html[dir="rtl"] .procurement-points li::before,
html[dir="rtl"] .legal-block li::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .blog-meta-panel,
html[dir="rtl"] .legal-summary,
html[dir="rtl"] .contact-details,
html[dir="rtl"] .case-info-panel dl {
  padding-left: 0;
  border-left: 0;
  border-right: 6px solid var(--brand-blue);
}

html[dir="rtl"] .blog-meta-panel {
  padding-right: 28px;
}

html[dir="rtl"] .legal-summary {
  padding-right: 30px;
}

html[dir="rtl"] .contact-details {
  padding-right: 32px;
}

html[dir="rtl"] .case-info-panel dl {
  padding-right: 28px;
}

html[dir="rtl"] .blog-callout {
  padding-left: 0;
  padding-right: 28px;
  border-left: 0;
  border-right: 6px solid var(--brand-blue);
}

@media (max-width: 760px) {
  html[dir="rtl"] .about-copy p {
    padding-right: 30px;
  }
}
