
@font-face {
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/assets/fonts/bodoni-moda-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/assets/fonts/bodoni-moda-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/source-serif-4-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/source-serif-4-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ivory: #0e0d0b;
  --paper: #181510;
  --blue: #292319;
  --blue-2: #080705;
  --red: #9b773d;
  --gold: #d0b373;
  --warm-gold-glass: rgba(208, 179, 115, 0.22);
  --warm-bronze-glass: rgba(155, 119, 61, 0.16);
  --ink: #ffffff;
  --muted: #b5aa99;
  --line: #3d3529;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  --font-latin-display: "Bodoni Moda", Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  --font-latin-body: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-brand: var(--font-latin-display);
  --font-hans: "Noto Sans SC", "Source Han Sans SC", "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: var(--font-latin-body);
  --font-display: var(--font-latin-display);
  --font-ui: var(--font-latin-body);
  --body-weight: 400;
  --display-weight: 600;
  --ui-weight: 600;
}

html[lang="zh-CN"] {
  --font-body: var(--font-hans);
  --font-display: var(--font-hans);
  --font-ui: var(--font-hans);
  --body-weight: 400;
  --display-weight: 700;
  --ui-weight: 600;
}

html[lang="en"],
html[lang="sr"],
html[lang="sr-Latn-RS"] {
  --font-body: var(--font-latin-body);
  --font-display: var(--font-latin-display);
  --font-ui: var(--font-latin-body);
  --body-weight: 400;
  --display-weight: 600;
  --ui-weight: 600;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: var(--body-weight);
  text-rendering: optimizeLegibility;
  font-variant-ligatures: common-ligatures;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

body.intro-lock { overflow: hidden; }
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0d0d0d;
  color: var(--paper);
  opacity: 1;
  visibility: visible;
  transition: opacity 650ms ease, visibility 650ms ease;
}
.intro-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  opacity: 0.44;
}
.intro-media span {
  min-width: 0;
  background-image: var(--intro-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.1) translateY(18px);
  filter: contrast(1.03) saturate(1.04);
  animation: introPanel 2600ms cubic-bezier(.2, .9, .2, 1) forwards;
}
.intro-media span:nth-child(2) { animation-delay: 120ms; }
.intro-media span:nth-child(3) { animation-delay: 240ms; }
.intro-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0.66) 52%, rgba(0, 0, 0, 0.86)),
    radial-gradient(circle at 50% 48%, rgba(183, 147, 85, 0.18), transparent 34%);
}
.intro-stage {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 36px));
  text-align: center;
  transform: translateY(18px);
  opacity: 0;
  animation: introStage 1100ms cubic-bezier(.2, .9, .2, 1) 220ms forwards;
}
.intro-kicker {
  margin: 0 0 20px;
  color: #e1c98f;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: var(--ui-weight);
  text-transform: uppercase;
}
.intro-logo {
  width: min(190px, 44vw);
  height: auto;
  margin: 0 auto 24px;
  filter: brightness(0) invert(1) drop-shadow(0 12px 32px rgba(0, 0, 0, 0.35));
}

.intro-stage p:not(.intro-kicker) {
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.35rem);
}
.intro-progress {
  width: min(420px, 72vw);
  height: 2px;
  margin: 32px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}
.intro-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform-origin: left;
  animation: introProgress 2900ms ease forwards;
}
.intro-skip {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 54px);
  bottom: clamp(18px, 4vw, 44px);
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.42);
  color: var(--paper);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: var(--ui-weight);
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.intro-skip:hover { border-color: var(--gold); color: #e1c98f; }

@keyframes introPanel {
  from { transform: scale(1.14) translateY(26px); opacity: 0; }
  to { transform: scale(1.02) translateY(0); opacity: 1; }
}
@keyframes introStage {
  from { transform: translateY(18px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes introProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay { display: none; }
}
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(14, 13, 11, 0.94);
  border-bottom: 1px solid rgba(61, 53, 41, 0.86);
  backdrop-filter: blur(16px);
}
.brand img { width: 148px; height: auto; filter: brightness(0) invert(1); }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.94rem;
  font-weight: var(--ui-weight);
}
.main-nav a,
.nav-parent {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  color: var(--ink);
}
.main-nav a.active,
.main-nav a:hover,
.nav-group.is-active .nav-parent,
.nav-parent:hover { color: var(--red); border-bottom-color: var(--gold); }
.nav-group {
  position: relative;
  padding: 0 2px;
}
.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-parent::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 210px;
  padding: 20px 10px 10px;
  background: rgba(14, 13, 11, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translate(-50%, 8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-bottom: 0;
  color: var(--ink);
  white-space: nowrap;
}
.nav-dropdown a:hover {
  background: var(--warm-bronze-glass);
  color: white;
}
.language-switcher {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.language-switcher a {
  min-width: 36px;
  padding: 7px 8px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: var(--ui-weight);
  color: white;
}
.language-switcher a.active { background: var(--blue); color: white; }
.menu-toggle { display: none; }

.main-nav,
.language-switcher,
.button,
.quote-form button,
.filter-bar button,
.float-actions a,
.tags span,
.text-link,
.process-row span,
.contact-list li {
  font-family: var(--font-ui);
  font-weight: var(--ui-weight);
}

.hero h1,
.hero h2,
.page-hero h1,
.section-heading h2,
.split-band h2,
.detail-copy h2,
.contact-copy h2,
.legal-copy h2,
.service-copy h3,
.case-tile h3,
.blog-copy h3,
.language-panel h1 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-optical-sizing: auto;
}

html[lang="zh-CN"] .hero h1 {
  font-weight: 700;
  line-height: 1;
}

html[lang="zh-CN"] .page-hero h1 {
  font-weight: 900;
  line-height: 1.14;
}

html[lang="zh-CN"] .hero h2 {
  font-weight: 800;
  line-height: 1.2;
}

html[lang="zh-CN"] .section-heading h2,
html[lang="zh-CN"] .split-band h2,
html[lang="zh-CN"] .detail-copy h2,
html[lang="zh-CN"] .contact-copy h2,
html[lang="zh-CN"] .legal-copy h2,
html[lang="zh-CN"] .language-panel h1 {
  font-weight: 700;
  line-height: 1.25;
}

html[lang="zh-CN"] .service-copy h3,
html[lang="zh-CN"] .case-tile h3,
html[lang="zh-CN"] .blog-copy h3 {
  font-weight: 600;
  line-height: 1.35;
}

html[lang="en"] .hero h1,
html[lang="en"] .page-hero h1,
html[lang="sr"] .hero h1,
html[lang="sr"] .page-hero h1,
html[lang="sr-Latn-RS"] .hero h1,
html[lang="sr-Latn-RS"] .page-hero h1 {
  font-weight: 700;
  line-height: 1.04;
}

html[lang="en"] .hero h2,
html[lang="en"] .section-heading h2,
html[lang="en"] .split-band h2,
html[lang="sr"] .hero h2,
html[lang="sr"] .section-heading h2,
html[lang="sr"] .split-band h2,
html[lang="sr-Latn-RS"] .hero h2,
html[lang="sr-Latn-RS"] .section-heading h2,
html[lang="sr-Latn-RS"] .split-band h2 {
  font-weight: 600;
  line-height: 1.12;
}

html[lang="en"] body,
html[lang="sr"] body,
html[lang="sr-Latn-RS"] body {
  font-size: 1.08rem;
}

html[lang="zh-CN"] body {
  font-size: 1rem;
}
.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  background: var(--blue-2);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 120px clamp(22px, 7vw, 90px) 72px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}
.hero-slide::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52) 44%, rgba(0, 0, 0, 0.12));
}
.hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  color: white;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 1.55vw, 22px);
}
.hero-content > .eyebrow,
.hero-content > h1,
.hero-content > h2,
.hero-content > p,
.hero-content > strong {
  margin: 0;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: var(--ui-weight);
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero .eyebrow,
.page-hero .eyebrow { color: #e1c98f; }
.hero h1 {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(3rem, 7.2vw, 6.8rem);
  font-weight: var(--display-weight);
  line-height: 1;
  letter-spacing: 0;
}
.hero h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.7vw, 3.9rem);
  font-weight: var(--display-weight);
  line-height: 1.16;
  letter-spacing: 0;
}
.hero p,
.page-hero p {
  max-width: 760px;
  margin: 0 0 14px;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
}
.hero strong {
  display: block;
  margin-top: 0;
  color: #f2e4c7;
  font-size: 1rem;
}

html[lang="zh-CN"] .hero-content {
  max-width: min(1040px, calc(100vw - 150px));
  gap: clamp(14px, 1.9vw, 28px);
}

html[lang="zh-CN"] .hero h1 {
  font-family: var(--font-brand);
  font-size: clamp(3rem, 7.6vw, 6.9rem);
  line-height: 1;
}

html[lang="zh-CN"] .hero h2 {
  font-family: var(--font-hans);
  max-width: 1040px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.2;
}

html[lang="zh-CN"] .hero p,
html[lang="zh-CN"] .hero strong {
  line-height: 1.52;
}
.hero-actions,
.center-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: clamp(10px, 1.5vw, 24px);
}
.button,
.quote-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 19px;
  border: 1px solid var(--blue);
  background: var(--paper);
  color: white;
  font-weight: var(--ui-weight);
}
.button.primary,
.quote-form button {
  background: var(--blue);
  color: white;
}
.button.primary:hover,
.quote-form button:hover { background: var(--red); border-color: var(--red); }
.button.secondary:hover { border-color: var(--gold); color: white; }
.hero-dots {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 7vw, 90px);
  bottom: 30px;
  display: flex;
  gap: 9px;
}
.hero-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.hero-dots button.active { background: var(--gold); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.trust-strip span {
  padding: 22px 14px;
  text-align: center;
  color: white;
  font-weight: var(--ui-weight);
  border-right: 1px solid var(--line);
}
.trust-strip span:last-child { border-right: 0; }

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) 0;
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1.2fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}
.section-heading.compact {
  display: block;
  max-width: 720px;
}
.section-heading h2,
.split-band h2,
.detail-copy h2,
.contact-copy h2,
.legal-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: var(--display-weight);
  line-height: 1.08;
  letter-spacing: 0;
}
.section-heading p:not(.eyebrow),
.split-band p,
.detail-copy p,
.contact-copy p,
.legal-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-grid.large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.service-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-image img,
.case-tile img,
.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.service-card:hover img,
.case-tile:hover img,
.equipment-card:hover img { transform: scale(1.04); }

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.equipment-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.equipment-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #151515;
}
.equipment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.equipment-copy {
  padding: 24px;
}
.equipment-copy h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}
.equipment-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}
.equipment-note {
  max-width: 900px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.equipment-showcase.compact {
  padding-top: 72px;
}
.equipment-process {
  padding-top: 36px;
}
.service-copy { padding: 22px; }
.service-copy h3,
.case-tile h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.18;
}
.service-copy p { margin: 0 0 16px; color: var(--muted); font-size: 0.98rem; }
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}
.tags span {
  padding: 5px 9px;
  background: linear-gradient(135deg, var(--warm-bronze-glass), rgba(14, 13, 11, 0.92));
  border-left: 3px solid var(--gold);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
}
.digital-importance {
  align-items: center;
}
.digital-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.digital-card {
  scroll-margin-top: 110px;
  min-height: 250px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.digital-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.2;
}
.digital-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}
.education-section {
  background: linear-gradient(135deg, var(--warm-gold-glass), rgba(18, 15, 10, 0.94));
}
.education-section.compact {
  padding-top: 54px;
}
.explain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.explain-card,
.info-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.explain-card {
  padding: 24px;
}
.explain-card h3,
.info-panel h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.22;
}
.explain-card p:not(.eyebrow),
.info-panel p {
  color: var(--muted);
  line-height: 1.72;
}
.info-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.info-columns.wide {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.info-panel {
  padding: 24px;
  scroll-margin-top: 112px;
}
.info-panel.digital-detail h3:not(:first-of-type) {
  margin-top: 22px;
}
.info-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.info-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}
.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--gold);
}
.service-education {
  background: linear-gradient(135deg, var(--warm-gold-glass), rgba(18, 15, 10, 0.9));
}
.digital-education {
  background: linear-gradient(135deg, var(--warm-bronze-glass), rgba(14, 13, 11, 0.92));
}

.digital-service-detail .info-panel.featured {
  align-self: stretch;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
}

.related-links .text-link {
  padding: 10px 0;
}

.text-link {
  color: var(--red);
  font-weight: var(--ui-weight);
}
.text-link::after { content: " /"; color: var(--gold); }

.split-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  width: 100%;
  max-width: none;
  padding: clamp(58px, 8vw, 102px) max(18px, calc((100vw - 1180px) / 2));
  background: var(--blue-2);
  color: white;
}
.split-band.light {
  background: linear-gradient(135deg, var(--warm-bronze-glass), rgba(14, 13, 11, 0.92));
  color: var(--ink);
}
.split-band h2,
.split-band .eyebrow { color: white; }
.split-band.light h2 { color: var(--ink); }
.split-band.light .eyebrow { color: white; }
.split-band p { color: rgba(255, 255, 255, 0.78); }
.split-band.light p { color: white; }
.advantage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.advantage-list li {
  min-height: 92px;
  padding: 18px 18px 18px 54px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
}
.advantage-list li::before {
  content: counter(list-item);
  position: absolute;
  left: 18px;
  top: 18px;
  color: var(--gold);
  font-weight: var(--display-weight);
}
.area-band {
  padding: 30px max(18px, calc((100vw - 1180px) / 2));
  background: linear-gradient(110deg, var(--warm-gold-glass), var(--warm-bronze-glass));
  color: var(--ink);
}
.area-band p {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: var(--ui-weight);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.portfolio-grid.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.case-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  background: var(--blue-2);
  cursor: zoom-in;
  outline: none;
  transition: box-shadow 220ms ease, transform 220ms ease;
}
.case-tile img {
  position: absolute;
  inset: 0;
  opacity: 1;
}
.case-tile:hover,
.case-tile:focus-visible {
  z-index: 2;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.20);
}
.case-preview {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
  background: rgba(15, 14, 12, 0.78);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}
.case-preview.is-visible {
  opacity: 1;
  visibility: visible;
}
.case-preview img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(78vw, 1100px);
  max-height: 78vh;
  object-fit: contain;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  transform: scale(0.94);
  transition: transform 220ms ease;
}
.case-preview.is-visible img {
  transform: scale(1);
}
.center-actions { justify-content: center; }


.blog-section { padding-top: 38px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.blog-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--blue-2);
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.blog-card:hover img { transform: scale(1.04); }
.blog-copy { padding: 22px; }
.blog-copy span,
.article-meta {
  color: var(--red);
  font-size: 0.86rem;
  font-weight: var(--ui-weight);
}
.blog-copy h3 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.blog-copy p { margin: 0 0 16px; color: var(--muted); }
.article-body {
  max-width: 820px;
  margin: 0 auto;
}
.article-body p {
  color: var(--ink);
  font-size: 1.08rem;
  margin: 0 0 20px;
}
.article-body .button { margin-top: 14px; }

.faq-section { padding-top: 24px; }
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
details {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 18px 20px;
}
summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: var(--ui-weight);
}
details p { margin: 12px 0 0; color: var(--muted); }

.page-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  align-items: end;
  padding: 128px clamp(22px, 7vw, 90px) 64px;
  overflow: hidden;
  background: var(--blue-2);
}
.page-hero .hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.46));
}
.page-hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  font-weight: var(--display-weight);
  line-height: 1.05;
  letter-spacing: 0;
}

.detail-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.05fr);
  gap: 28px;
  align-items: center;
}
.detail-copy.wide { max-width: 740px; }
.detail-image {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--paper);
}
.process-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.process-row.vertical {
  grid-template-columns: 1fr;
}
.process-row span {
  display: grid;
  gap: 10px;
  min-height: 92px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: var(--ui-weight);
}
.process-row b { color: var(--red); font-size: 0.86rem; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.filter-bar button {
  border: 1px solid var(--line);
  background: var(--paper);
  color: white;
  padding: 10px 14px;
  font-weight: var(--ui-weight);
  cursor: pointer;
}
.filter-bar button.active,
.filter-bar button:hover {
  background: var(--blue);
  border-color: white;
  color: white;
}

.contact-section { padding-top: 64px; }
.contact-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-list {
  margin: 22px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.contact-list li {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  font-weight: 600;
}
.map {
  width: 100%;
  min-height: 260px;
  border: 1px solid var(--line);
}
.quote-form {
  display: grid;
  gap: 13px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.quote-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: var(--ui-weight);
}
.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #c7c7c7;
  background: #14110d;
  color: var(--ink);
  padding: 11px 12px;
  font: inherit;
}
.quote-form textarea { resize: vertical; }
.form-status {
  display: none;
  margin: 0;
  color: var(--red);
  font-weight: var(--ui-weight);
}
.quote-form.sent .form-status { display: block; }

.legal-copy {
  max-width: 840px;
  margin: 0 auto;
}

.footer {
  background: #0d0d0d;
  color: white;
  padding: 38px max(18px, calc((100vw - 1180px) / 2));
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-logo {
  width: 168px;
  filter: brightness(0) invert(1);
}
.footer p { margin: 12px 0 0; color: rgba(255, 255, 255, 0.74); }
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a { color: #e1c98f; font-family: var(--font-ui); font-weight: 600; }
.float-actions {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.float-actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: white;
  text-align: center;
  font-weight: var(--ui-weight);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.float-actions .icon-action {
  position: relative;
  width: 46px;
  min-width: 46px;
  min-height: 0;
  aspect-ratio: 1;
  padding: 0;
}
.float-actions .icon-action img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.float-actions .icon-action::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 9px);
  transform: translate(-50%, 4px);
  padding: 6px 9px;
  background: var(--ink);
  color: white;
  font-size: 0.76rem;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 160ms ease, transform 160ms ease;
}
.float-actions .icon-action:hover::after,
.float-actions .icon-action:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}
.float-actions .quote-action {
  min-width: 128px;
  padding: 11px 16px;
}
.float-actions a.accent { background: var(--red); }

.language-gate {
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.language-panel {
  width: min(520px, calc(100% - 32px));
  padding: 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow);
}
.language-panel img { width: 210px; margin: 0 auto 18px; }
.language-panel h1 { color: var(--ink); margin: 0; }
.language-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.language-links a {
  padding: 10px 16px;
  background: var(--blue);
  color: white;
  font-weight: var(--ui-weight);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }
  .brand img { width: 132px; }
  .menu-toggle {
    display: inline-grid;
    gap: 4px;
    width: 42px;
    height: 42px;
    place-content: center;
    justify-self: end;
    border: 1px solid var(--line);
    background: var(--paper);
  }
  .menu-toggle span {
    width: 19px;
    height: 2px;
    background: var(--blue);
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 14px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav.open { display: flex; }
  .nav-group {
    width: 100%;
    padding: 0;
  }
  .nav-parent {
    width: 100%;
    justify-content: space-between;
    padding: 10px 0;
  }
  .nav-dropdown {
    position: static;
    min-width: 0;
    width: 100%;
    padding: 0 0 8px 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-group:hover .nav-dropdown,
  .nav-group:focus-within .nav-dropdown {
    transform: none;
  }
  .nav-dropdown a {
    padding: 8px 0;
    white-space: normal;
  }
  .language-switcher { justify-self: end; }
  .section-heading,
  .split-band,
  .detail-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .service-grid,
  .service-grid.large,
  .digital-grid,
  .equipment-grid,
  .explain-grid,
  .info-columns,
  .info-columns.wide,
  .portfolio-grid,
  .portfolio-grid.feature-grid,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 72px;
    padding: 11px 14px;
    gap: 10px;
  }
  .brand img { width: 118px; }
  .language-switcher a { min-width: 32px; padding: 6px; }
  .hero {
    min-height: 84vh;
  }
  .hero-slide {
    padding: 100px 18px 74px;
    align-items: end;
  }
  .hero-overlay,
  .page-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.88));
  }
  .hero h1 { font-size: 2.8rem; }
  .hero h2 { font-size: 1.75rem; }
  html[lang="zh-CN"] .hero-content {
    max-width: 100%;
    gap: 14px;
  }
  html[lang="zh-CN"] .hero h1 {
    font-size: 2.85rem;
    line-height: 1.02;
  }
  html[lang="zh-CN"] .hero h2 {
    font-size: 2rem;
    line-height: 1.22;
  }
  .trust-strip,
  .service-grid,
  .service-grid.large,
  .digital-grid,
  .equipment-grid,
  .explain-grid,
  .info-columns,
  .info-columns.wide,
  .portfolio-grid,
  .portfolio-grid.feature-grid,
  .faq-list,
  .process-row {
    grid-template-columns: 1fr;
  }
  .trust-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .page-hero {
    min-height: 48vh;
    padding: 110px 18px 46px;
  }
  .case-tile { min-height: 0; }
  .float-actions {
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(5, minmax(36px, 44px)) minmax(82px, 1fr);
    gap: 6px;
  }
  .float-actions a {
    min-width: 0;
    min-height: 46px;
    font-size: 0.86rem;
  }
  .float-actions .icon-action {
    width: 100%;
    min-width: 0;
    min-height: 0;
    aspect-ratio: 1;
    align-self: center;
  }
  .float-actions .icon-action::after { display: none; }
  .text-link::after { display: none; }
  .float-actions .quote-action { min-width: 0; padding: 9px 8px; }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 58px;
  }
  .footer-links { justify-content: flex-start; }
}

.cursor-gold-trail {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1200;
  opacity: 0.94;
  mix-blend-mode: screen;
}
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-gold-trail { display: none; }
}

#redesign-2026-marker { --active: 1; }
:root {
  --ivory: #f4f4ef;
  --paper: #ffffff;
  --blue: #175b48;
  --blue-2: #111a17;
  --red: #b28b52;
  --gold: #c8a96d;
  --warm-gold-glass: rgba(200, 169, 109, .18);
  --warm-bronze-glass: rgba(23, 91, 72, .12);
  --ink: #1d2420;
  --muted: #69716c;
  --line: #dfe1dc;
  --shadow: 0 18px 48px rgba(24, 44, 36, .10);
}
html { background: var(--ivory); }
body { background: var(--ivory); color: var(--ink); }
.site-header {
  position: sticky; top: 0; z-index: 80; display: block; padding: 0;
  background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line);
  color: var(--ink); backdrop-filter: blur(16px);
}
.utility-bar { min-height: 34px; background: #eef0eb; border-bottom: 1px solid #e3e5df; }
.utility-inner {
  width: min(100% - 40px, 1240px); min-height: 34px; margin: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  color: #657069; font-size: .67rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase;
}
.utility-inner p { margin: 0; }
.utility-links { display: flex; align-items: center; gap: 24px; }
.utility-links a { color: inherit; }
.utility-links a:hover { color: var(--blue); }
.header-main {
  width: min(100% - 40px, 1240px); min-height: 92px; margin: auto;
  display: grid; grid-template-columns: 220px minmax(0,1fr) auto; align-items: center; gap: 30px;
}
.brand {
  width: 205px; min-height: 92px; align-self: stretch; display: flex;
  align-items: center; justify-content: center; padding: 18px 24px; background: var(--blue-2);
}
.brand img {
  display: block; width: 100%; max-height: 52px; object-fit: contain; filter: brightness(0) invert(1);
}
.main-nav {
  position: static; display: flex; align-items: center; justify-content: center;
  gap: clamp(14px, 1.7vw, 29px); background: transparent; box-shadow: none;
}
.main-nav > a, .nav-parent {
  position: relative; padding: 34px 0 31px; color: #29322d; font-size: .82rem;
  font-weight: 650; letter-spacing: 0; white-space: nowrap;
}
.main-nav > a::after, .nav-parent::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 23px; height: 2px;
  background: var(--blue); transition: right .25s ease;
}
.main-nav > a:hover::after, .main-nav > a.active::after,
.nav-group:hover .nav-parent::after, .nav-group.is-active .nav-parent::after { right: 0; }
.main-nav > a:hover, .main-nav > a.active, .nav-parent:hover, .nav-group.is-active .nav-parent { color: var(--blue); }
.nav-dropdown {
  top: calc(100% - 16px); min-width: 240px; padding: 14px; background: #fff;
  border: 1px solid var(--line); box-shadow: 0 20px 45px rgba(18, 39, 31, .14);
}
.nav-dropdown a { padding: 11px 13px; color: var(--ink); border-bottom: 1px solid #eceee9; }
.nav-dropdown a:last-child { border-bottom: 0; }
.nav-dropdown a:hover { color: #fff; background: var(--blue); }
.language-switcher { display: flex; align-items: center; gap: 5px; }
.language-switcher a {
  min-width: 34px; padding: 7px 6px; color: #69716c; border: 1px solid transparent;
  text-align: center; font-size: .68rem; font-weight: 750;
}
.language-switcher a:hover, .language-switcher a.active {
  color: var(--blue); border-color: #b9c8c1; background: #f1f6f3;
}
.service-ribbon { overflow-x: auto; background: var(--blue); scrollbar-width: none; }
.service-ribbon::-webkit-scrollbar { display: none; }
.service-ribbon-inner {
  width: min(100% - 40px, 1240px); min-height: 43px; margin: auto;
  display: flex; align-items: center; justify-content: center;
}
.service-ribbon a {
  flex: 0 0 auto; padding: 14px clamp(14px, 1.55vw, 27px); color: rgba(255,255,255,.86);
  border-right: 1px solid rgba(255,255,255,.14); font-size: .72rem; line-height: 1; white-space: nowrap;
}
.service-ribbon a:first-child { border-left: 1px solid rgba(255,255,255,.14); }
.service-ribbon a:hover { color: #fff; background: rgba(255,255,255,.1); }
.service-ribbon .digital-category { color: #1a251f; background: var(--gold); font-weight: 750; }
.menu-toggle { color: var(--ink); }

.hero { min-height: clamp(590px, 68vh, 760px); background: #18231e; }
.hero::after {
  background: linear-gradient(90deg, rgba(7,17,13,.48) 0%, rgba(7,17,13,.14) 54%, rgba(7,17,13,.04) 100%);
}
.hero-slide img { filter: none; }
.hero-content { width: min(100% - 64px, 1240px); padding: 0; }
.hero-copy {
  width: min(650px, 57vw); padding: clamp(30px,4vw,56px); background: rgba(13, 25, 20, .78);
  border-left: 5px solid var(--blue); box-shadow: 0 24px 60px rgba(0,0,0,.2); backdrop-filter: blur(5px);
}
.hero h1 {
  margin: 0 0 14px; color: var(--gold); font-size: .82rem; font-weight: 750;
  letter-spacing: .12em; text-transform: uppercase;
}
.hero h2 {
  max-width: 640px; margin: 0; color: #fff; font-size: clamp(2.65rem, 5.15vw, 5.55rem); line-height: .98;
}
.hero p { max-width: 560px; color: rgba(255,255,255,.82); font-size: 1.02rem; line-height: 1.8; }
.hero .tagline { color: #fff; }
.hero-actions { margin-top: 28px; }
.btn { border-radius: 0; letter-spacing: 0; }
.btn.primary { color: #fff; background: var(--blue); border-color: var(--blue); }
.btn.primary:hover { background: #0f4637; border-color: #0f4637; }
.btn.secondary { color: var(--ink); background: #fff; border-color: #fff; }
.hero-dots { bottom: 26px; gap: 8px; }
.hero-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.5); }
.hero-dot.active { width: 26px; border-radius: 12px; background: var(--gold); }

.trust-strip { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip-inner { width: min(100% - 40px, 1240px); }
.trust-item strong { color: var(--blue); }
.trust-item span { color: var(--muted); }
.section { width: min(100% - 64px, 1240px); padding: clamp(74px,8vw,124px) 0; }
.section-kicker { color: var(--blue); letter-spacing: .1em; }
.section-head {
  display: grid; grid-template-columns: .55fr 1.1fr .9fr; align-items: start;
  gap: clamp(30px,5vw,76px); margin-bottom: 48px;
}
.section-head .section-kicker { margin-top: 12px; }
.section-head h2 { margin: 0; color: var(--ink); font-size: clamp(2.1rem,3.7vw,4.35rem); line-height: 1.05; }
.section-head p { margin: 8px 0 0; color: var(--muted); line-height: 1.8; }
.service-card, .equipment-card, .blog-card {
  background: #fff; border: 1px solid var(--line); border-radius: 0; box-shadow: none;
}
.service-card { display: flex; flex-direction: column; }
.service-card .media, .service-card > img { aspect-ratio: 5/4; object-fit: cover; filter: none; }
.service-card:hover, .equipment-card:hover, .blog-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow);
}
.service-card h3, .equipment-card h3, .blog-card h3 { color: var(--ink); }
.service-card p, .equipment-card p, .blog-card p { color: var(--muted); }
.service-card a, .blog-card a { color: var(--blue); }
.education {
  width: 100%; max-width: none; padding-left: max(32px, calc((100vw - 1240px)/2));
  padding-right: max(32px, calc((100vw - 1240px)/2)); background: #e8f0eb;
}
.education-copy h2, .education-copy h3 { color: var(--ink); }
.education-copy p { color: #5e6862; }
.education-list li { border-color: rgba(23,91,72,.18); }
.education-list strong { color: var(--blue); }
.portfolio-grid { gap: 12px; }
.portfolio-card { border-radius: 0; background: var(--blue-2); }
.portfolio-card img { filter: none; }
.portfolio-card::after { background: linear-gradient(180deg, transparent 52%, rgba(6,15,11,.76)); }
.portfolio-card .portfolio-copy { color: #fff; }
.equipment-section { background: #fff; }
.equipment-grid { gap: 18px; }
.equipment-card img { filter: none; }
.split-section { background: var(--blue-2); }
.split-section h2, .split-section h3 { color: #fff; }
.split-section p { color: rgba(255,255,255,.7); }
.area-band { background: var(--blue); }
.area-band, .area-band h2, .area-band p { color: #fff; }
.blog-grid { gap: 18px; }
.faq-item { background: #fff; border-color: var(--line); }
.faq-question { color: var(--ink); }
.contact-panel { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-panel h2, .contact-panel h3 { color: var(--ink); }
.contact-panel p { color: var(--muted); }
input, textarea, select { color: var(--ink); background: #fff; border-color: #cfd4d0; }
input:focus, textarea:focus, select:focus { border-color: var(--blue); }

.inner-hero { min-height: 430px; background: var(--blue-2); }
.inner-hero::after { background: linear-gradient(90deg, rgba(8,17,13,.64), rgba(8,17,13,.14)); }
.inner-hero-content {
  width: min(100% - 64px, 1240px); padding: 38px 42px;
  background: rgba(11,25,19,.76); border-left: 5px solid var(--blue);
}
.inner-hero h1 { color: #fff; }
.inner-hero p { color: rgba(255,255,255,.78); }
.content-panel { background: #fff; border-color: var(--line); }
.content-panel h2, .content-panel h3 { color: var(--ink); }
.content-panel p, .content-panel li { color: var(--muted); }

.footer { padding: 76px 32px 24px; color: rgba(255,255,255,.7); background: var(--blue-2); }
.footer-inner {
  width: min(100%, 1240px); margin: auto; display: grid;
  grid-template-columns: 1.35fr 1fr 1fr .75fr; gap: clamp(35px,5vw,78px);
}
.footer-brand p { max-width: 360px; line-height: 1.75; }
.footer-brand span {
  display: block; margin-top: 24px; color: var(--gold); font-size: .76rem;
  text-transform: uppercase; letter-spacing: .1em;
}
.footer-logo { width: 190px; margin-bottom: 22px; filter: brightness(0) invert(1); }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column h3 { margin: 0 0 10px; color: #fff; font-size: .85rem; }
.footer-column a, .footer-links a { color: rgba(255,255,255,.68); font-size: .78rem; }
.footer-column a:hover, .footer-links a:hover { color: var(--gold); }
.footer-bottom {
  width: min(100%,1240px); margin: 56px auto 0; padding-top: 20px;
  display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.46); font-size: .72rem;
}
.footer-links { display: flex; gap: 24px; }
.float-actions { background: rgba(17,26,23,.96); }
.icon-action { background: var(--blue-2); }
.icon-action:hover { background: var(--blue); }
.quote-action.accent { color: #16221c; background: var(--gold); }

@media (max-width: 1120px) {
  .header-main { grid-template-columns: 190px minmax(0,1fr) auto; gap: 18px; }
  .brand { width: 190px; }
  .main-nav { gap: 14px; }
  .main-nav > a, .nav-parent { font-size: .74rem; }
  .section-head { grid-template-columns: .45fr 1fr .8fr; }
}
@media (max-width: 900px) {
  .utility-inner { width: 100%; min-height: 38px; justify-content: stretch; }
  .utility-inner > p { display: none; }
  .utility-links { width: 100%; gap: 0; justify-content: space-evenly; }
  .utility-links a {
    flex: 1; padding: 12px 4px; text-align: center; border-right: 1px solid #dde0da; font-size: .62rem;
  }
  .header-main {
    position: relative; width: 100%; min-height: 68px; grid-template-columns: 56px 1fr auto;
    gap: 8px; padding: 0 14px;
  }
  .brand {
    grid-column: 2; justify-self: center; width: 150px; min-height: 68px; padding: 13px 20px;
  }
  .menu-toggle {
    grid-column: 1; grid-row: 1; display: inline-flex; width: 44px; height: 44px;
    align-items: center; justify-content: center; flex-direction: column;
  }
  .language-switcher { grid-column: 3; grid-row: 1; gap: 2px; }
  .language-switcher a { min-width: 29px; padding: 6px 3px; }
  .service-ribbon { display: none; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; display: none;
    max-height: calc(100vh - 106px); overflow-y: auto; padding: 18px 22px 30px;
    align-items: stretch; background: #fff; border-top: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(22,44,35,.14);
  }
  .main-nav.open { display: flex; }
  .main-nav > a, .nav-parent { padding: 13px 0; color: var(--ink); border-bottom: 1px solid var(--line); }
  .main-nav > a::after, .nav-parent::after { display: none; }
  .nav-group { width: 100%; }
  .nav-dropdown {
    position: static; display: none; width: 100%; min-width: 0;
    padding: 6px 0 8px 14px; border: 0; box-shadow: none;
  }
  .nav-group.open .nav-dropdown { display: block; }
  .nav-dropdown a { padding: 11px 12px; }
  .hero { min-height: 610px; }
  .hero-content { width: calc(100% - 34px); }
  .hero-copy { width: min(100%,580px); padding: 30px 26px; }
  .hero h2 { font-size: clamp(2.45rem,10vw,4.1rem); }
  .section { width: calc(100% - 40px); padding: 72px 0; }
  .section-head { grid-template-columns: 1fr; gap: 10px; margin-bottom: 32px; }
  .section-head .section-kicker { margin: 0; }
  .section-head h2 { font-size: clamp(2.2rem,8vw,3.3rem); }
  .footer-inner { grid-template-columns: 1.25fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 640px) {
  .hero { min-height: 590px; }
  .hero-content { align-items: flex-end; padding-bottom: 66px; }
  .hero-copy { padding: 27px 22px; border-left-width: 4px; }
  .hero h2 { font-size: clamp(2.25rem,12vw,3.35rem); }
  .hero p { font-size: .92rem; line-height: 1.65; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-actions .btn { min-width: 0; padding: 13px 9px; }
  .trust-strip-inner { width: calc(100% - 28px); }
  .education { padding-left: 20px; padding-right: 20px; }
  .inner-hero { min-height: 390px; }
  .inner-hero-content { width: calc(100% - 32px); padding: 28px 22px; }
  .footer { padding: 62px 20px 22px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { margin-top: 42px; flex-direction: column; gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .service-card, .equipment-card, .blog-card { transition: none; }
}
#redesign-2026-home-fix { --active: 1; }
.hero-content {
  height: 100%;
  display: flex;
  align-items: center;
}
.hero .hero-copy > h1 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: .86rem !important;
  line-height: 1.25;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-copy strong {
  display: block;
  margin-top: 20px;
  color: #fff;
  font-size: .9rem;
}
.button.primary { color: #fff; background: var(--blue); border-color: var(--blue); }
.button.primary:hover { background: #0f4637; border-color: #0f4637; }
.button.secondary { color: var(--ink); background: #fff; border-color: #fff; }
.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
}
.hero-dots button.active { width: 26px; border-radius: 12px; background: var(--gold); }
.trust-strip { padding: 0; }
.trust-strip-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  align-items: stretch;
}
.trust-strip .trust-item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  color: var(--blue);
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
}
.trust-item:first-child { border-left: 1px solid var(--line); }
.section-heading.section-head { max-width: none; }
.split-band.split-section {
  width: 100%;
  max-width: none;
  padding-left: max(32px, calc((100vw - 1240px)/2));
  padding-right: max(32px, calc((100vw - 1240px)/2));
}
.split-band.split-section .eyebrow { color: var(--gold); }
.split-band.split-section .advantage-list li { color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.16); }
.nav-group.is-open .nav-dropdown { display: block; }
@media (max-width: 900px) {
  .hero-content { align-items: center; }
  .nav-group.is-open .nav-dropdown { display: block; }
}
@media (max-width: 640px) {
  .hero-content { align-items: flex-end; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(odd) { border-left: 1px solid var(--line); }
  .trust-item { min-height: 72px; padding: 16px 10px; border-bottom: 1px solid var(--line); }
}
#red-black-logo-menu-hero-fix { --active: 1; }
.brand {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}
.brand img {
  filter: none;
  max-height: 58px;
}
.hero-copy {
  width: min(720px, 62vw);
  padding: 0;
  background: transparent;
  border-left: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.hero-copy h2,
.hero-copy p,
.hero-copy strong {
  text-shadow: 0 2px 18px rgba(0,0,0,.58);
}
.hero-overlay {
  background: linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.5) 42%, rgba(0,0,0,.14) 75%, rgba(0,0,0,.04) 100%);
}
@media (min-width: 901px) {
  .header-main { position: relative; z-index: 4; }
  .service-ribbon { position: relative; z-index: 2; }
  .nav-group::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    width: 240px;
    height: 68px;
    transform: translateX(-50%);
  }
  .nav-dropdown {
    top: calc(100% + 66px);
    z-index: 120;
    border-top: 3px solid #c52a2f;
    box-shadow: 0 22px 46px rgba(18,39,31,.18);
  }
}
@media (max-width: 900px) {
  .brand { padding-left: 8px; padding-right: 8px; }
  .brand img { max-height: 46px; }
  .hero-copy { width: min(100%, 620px); padding: 0; }
}
@media (max-width: 640px) {
  .hero-copy { width: 100%; padding: 0; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.12) 8%, rgba(0,0,0,.42) 46%, rgba(0,0,0,.78) 100%);
  }
}
#contact-form-transparent-fix { --active: 1; }
.quote-form {
  background: transparent;
  border: 0;
  box-shadow: none;
}
.quote-form input,
.quote-form textarea,
.quote-form select {
  color: var(--ink) !important;
  background: transparent !important;
  border: 0;
  border-bottom: 1px solid #aeb8b2;
  border-radius: 0;
  box-shadow: none;
}
.quote-form input {
  min-height: 58px;
}
.quote-form textarea {
  min-height: 150px;
  resize: vertical;
}
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  outline: none;
  border-bottom-color: var(--blue);
  box-shadow: 0 1px 0 var(--blue);
}
#dropdown-arrow-alignment-fix { --active: 1; }
.nav-parent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: inset 0 -2px transparent;
}
.nav-parent::after {
  content: "";
  position: static;
  display: block;
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin: -3px 0 0;
  border: 0;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  background: transparent;
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.nav-group:hover .nav-parent,
.nav-group:focus-within .nav-parent,
.nav-group.is-open .nav-parent,
.nav-group.is-active .nav-parent {
  box-shadow: inset 0 -2px var(--gold);
}
.nav-group:hover .nav-parent::after,
.nav-group:focus-within .nav-parent::after,
.nav-group.is-open .nav-parent::after {
  right: auto;
  transform: rotate(225deg);
}
@media (max-width: 900px) {
  .nav-parent {
    justify-content: space-between;
    box-shadow: none;
  }
  .nav-group:hover .nav-parent,
  .nav-group:focus-within .nav-parent,
  .nav-group.is-open .nav-parent,
  .nav-group.is-active .nav-parent {
    box-shadow: none;
  }
}
#unified-user-logo-fix { --active: 1; }
.brand img,
.intro-logo,
.footer-logo {
  filter: none !important;
}
.brand img {
  width: 100%;
  max-height: 62px;
  object-fit: contain;
}
.intro-logo {
  width: min(230px, 54vw);
}
.footer-logo {
  width: 220px;
}
@media (max-width: 900px) {
  .brand img { max-height: 50px; }
}
#diagonal-logo-wall-version { --active: 1; }
body {
  background-color: var(--ivory);
  background-image:
    linear-gradient(rgba(244,244,239,.935), rgba(244,244,239,.935)),
    url("/assets/logo-wall-pattern.png");
  background-repeat: repeat, repeat;
  background-size: auto, 760px 440px;
  background-attachment: fixed, fixed;
}
.intro-overlay::after {
  content: "";
  position: absolute;
  inset: -80px;
  z-index: 0;
  pointer-events: none;
  background-image: url("/assets/logo-wall-pattern.png");
  background-repeat: repeat;
  background-size: 760px 440px;
  opacity: .16;
  transform: scale(1.08);
  animation: logoWallDrift 18s linear infinite;
}
@keyframes logoWallDrift {
  from { background-position: 0 0; }
  to { background-position: 760px 440px; }
}
@media (max-width: 640px) {
  body {
    background-image:
      linear-gradient(rgba(244,244,239,.95), rgba(244,244,239,.95)),
      url("/assets/logo-wall-pattern.png");
    background-size: auto, 570px 330px;
  }
  .intro-overlay::after {
    background-size: 570px 330px;
    opacity: .14;
  }
}
@media (prefers-reduced-motion: reduce) {
  .intro-overlay::after { animation: none; }
}
#real-contact-links-fix { --active: 1; }
.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}
.contact-method {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 13px;
  color: var(--ink);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
}
.contact-method:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}
.contact-method img {
  width: 21px;
  height: 21px;
  padding: 3px;
  object-fit: contain;
  background: var(--blue);
}
.contact-method:hover img { background: transparent; }
@media (max-width: 640px) {
  .float-actions {
    grid-template-columns: repeat(6, minmax(32px, 1fr)) minmax(76px, 1.6fr);
  }
  .contact-methods { grid-template-columns: 1fr; }
}