:root {
  color-scheme: light;
  --navy: #071a2b;
  --navy-2: #0d273d;
  --teal: #0d9488;
  --teal-dark: #08766d;
  --gold: #c6a96b;
  --paper: #ffffff;
  --mist: #f6f8fa;
  --line: #d7e0e7;
  --ink: #253443;
  --muted: #5e7082;
  --shadow: 0 18px 45px rgba(7, 26, 43, .12);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open,
body.lang-open {
  overflow: hidden;
}

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

a:hover {
  color: var(--teal-dark);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(13, 148, 136, .55);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--teal-dark);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(215, 224, 231, .78);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 218px;
  color: var(--navy);
  font-weight: 760;
}

.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border: 2px solid rgba(198, 169, 107, .85);
  border-radius: 8px;
  font-size: 15px;
  letter-spacing: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-sub {
  color: var(--muted);
  font-size: 12px;
  font-weight: 620;
}

.nav-toggle,
.lang-button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  cursor: pointer;
}

.nav-toggle {
  display: none;
}

.nav-toggle svg,
.lang-button svg,
.icon-button svg {
  width: 20px;
  height: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 2px;
}

.nav-link,
.nav-menu-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  flex: 0 0 auto;
  padding: 0 9px;
  border: 0;
  border-radius: 8px;
  color: var(--navy);
  background: transparent;
  font-size: 13px;
  font-weight: 680;
  white-space: nowrap;
  cursor: pointer;
}

.nav-link:hover,
.nav-menu-button:hover {
  background: var(--mist);
  color: var(--navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
}

.btn svg,
.text-link svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  color: #fff;
  background: var(--teal);
}

.btn-primary:hover {
  color: #fff;
  background: var(--teal-dark);
}

.btn-secondary {
  color: var(--navy);
  background: #fff;
  border-color: rgba(255, 255, 255, .62);
}

.btn-secondary:hover {
  color: var(--navy);
  background: var(--mist);
}

.btn-outline {
  color: var(--navy);
  background: transparent;
  border-color: var(--line);
}

.btn-outline:hover {
  color: var(--navy);
  background: var(--mist);
}

.mega-menu,
.language-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: min(940px, calc(100vw - 36px));
  transform: translateX(-50%);
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mega-menu.is-open,
.language-panel.is-open {
  display: block;
}

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

.mega-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.mega-item h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 15px;
}

.mega-item p,
.mega-item li {
  color: var(--muted);
  font-size: 13px;
}

.mega-item ul {
  margin: 8px 0 12px;
  padding-left: 18px;
}

.language-wrap {
  position: relative;
}

.language-panel {
  right: 0;
  left: auto;
  width: min(560px, calc(100vw - 36px));
  transform: none;
}

.language-search {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.language-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 680;
}

.language-option[aria-current="true"] {
  border-color: var(--teal);
  background: rgba(13, 148, 136, .08);
}

.language-option[hidden] {
  display: none !important;
}

.hero {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(13, 148, 136, .28), transparent 28%),
    linear-gradient(135deg, var(--navy) 0%, #0b2438 60%, #0b3044 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  align-items: center;
  max-width: var(--max);
  min-height: min(720px, calc(100vh - 72px));
  margin: 0 auto;
  padding: 70px 24px 42px;
  gap: 48px;
}

.hero-inner-focused {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .8fr);
  min-height: 610px;
  align-items: center;
}

.sourcing-flow {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
}

.sourcing-flow .process-step {
  min-height: auto;
  padding: 13px 14px 13px 46px;
  color: #fff;
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
}

.sourcing-flow .process-step h3,
.sourcing-flow .process-step p {
  color: inherit;
}

.sourcing-flow .process-step::before {
  top: 14px;
  left: 14px;
  background: var(--gold);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #d8c389;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 60px;
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.lead {
  max-width: 790px;
  color: var(--muted);
  font-size: 18px;
}

.hero .lead {
  color: rgba(255, 255, 255, .82);
}

.hero-copy {
  max-width: 760px;
}

.hero-actions,
.section-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 24px;
  color: rgba(255, 255, 255, .75);
}

.hero-visual {
  position: relative;
  min-height: 430px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  overflow: hidden;
}

.map-lines {
  position: absolute;
  inset: 22px;
  opacity: .86;
}

.visual-panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin-top: 44px;
}

.visual-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 62px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(7, 26, 43, .64);
}

.visual-row span {
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
}

.visual-row strong {
  color: #fff;
}

.pillar-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: var(--max);
  margin: -28px auto 0;
  padding: 0 24px 42px;
  gap: 12px;
}

.pillar-tile {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.pillar-tile span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  place-items: center;
  border: 1px solid rgba(198, 169, 107, .8);
  border-radius: 8px;
  color: var(--gold);
  font-size: 13px;
}

.section {
  padding: 82px 24px;
}

.section-alt {
  background: var(--mist);
}

.section-dark {
  color: #fff;
  background: var(--navy);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark .lead,
.section-dark p,
.section-dark li {
  color: rgba(255, 255, 255, .76);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

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

.section-head .lead {
  margin: 12px 0 0;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.article-card,
.stat-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.section-dark .card,
.section-dark .article-card {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
}

.card p,
.article-card p {
  color: var(--muted);
}

.service-card[hidden] {
  display: none;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(180px, .9fr) minmax(160px, .7fr) auto;
  align-items: end;
  gap: 14px;
  box-shadow: none;
}

.catalog-toolbar label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.table-wrap {
  width: 100%;
  margin: 18px 0 28px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--navy);
  background: var(--mist);
  font-size: 13px;
  font-weight: 800;
}

tr:last-child td {
  border-bottom: 0;
}

.section-dark .card p,
.section-dark .article-card p {
  color: rgba(255, 255, 255, .76);
}

.icon-chip {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 8px;
  color: var(--teal);
  background: rgba(13, 148, 136, .1);
}

.icon-chip svg {
  width: 22px;
  height: 22px;
}

.tag-list,
.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.tag-list li,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 660;
}

.section-dark .tag-list li,
.section-dark .tag {
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
  background: rgba(255, 255, 255, .07);
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold);
  font-weight: 850;
}

.notice {
  padding: 24px;
  border: 1px solid rgba(198, 169, 107, .55);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  background: #fff9e8;
}

.notice h3 {
  margin-bottom: 8px;
}

.notice ul {
  margin-bottom: 0;
}

.breadcrumb {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-hero {
  color: #fff;
  background: var(--navy);
}

.page-hero .container {
  padding: 76px 24px 70px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: 52px;
}

.page-hero .lead {
  color: rgba(255, 255, 255, .8);
}

.content-flow {
  max-width: 850px;
}

.content-flow h2 {
  margin: 38px 0 14px;
  font-size: 30px;
}

.content-flow h3 {
  margin: 28px 0 10px;
}

.content-flow .grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.content-flow p,
.content-flow li {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 42px;
  align-items: start;
}

.form-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-weight: 740;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 144px;
  resize: vertical;
}

.help-text,
.error-text {
  color: var(--muted);
  font-size: 16px;
}

.error-text {
  color: #9f1d2b;
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.checkbox-field input {
  min-height: auto;
  margin-top: 5px;
}

.site-footer {
  padding: 58px 24px 30px;
  color: rgba(255, 255, 255, .74);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: var(--max);
  margin: 0 auto;
}

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

.footer-brand {
  grid-column: span 2;
  min-width: 240px;
}

.footer-grid-compact .footer-brand {
  grid-column: auto;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, .76);
}

.footer-links a:hover {
  color: #fff;
}

.footer-language-select {
  width: 100%;
  min-height: 44px;
  margin: 12px 0 14px;
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max);
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: 14px;
}

[dir="rtl"] .eyebrow::before {
  order: 2;
}

[dir="rtl"] .notice {
  border-left: 1px solid rgba(198, 169, 107, .55);
  border-right: 6px solid var(--gold);
}

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

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 72px);
    padding: 16px 24px 24px;
    overflow-y: auto;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .nav-link,
  .nav-menu-button {
    justify-content: space-between;
    width: 100%;
  }

  .mega-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 10px 0 0;
    transform: none;
    border: 0;
    box-shadow: none;
  }

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

  .nav-actions .btn {
    display: none;
  }

  .hero-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .pillar-strip,
  .process,
  .catalog-toolbar,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  .header-inner {
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-sub {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    padding: 56px 16px 36px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

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

  .hero-visual {
    min-height: 330px;
    padding: 18px;
  }

  .pillar-strip,
  .process,
  .catalog-toolbar,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .mega-grid,
  .language-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 16px;
  }

  .section-head {
    display: block;
  }

  .footer-brand {
    grid-column: auto;
  }

  .page-hero .container {
    padding: 58px 16px;
  }
}

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

/* Full rebuild with generated photo assets */
:root {
  --navy-950: #071A2B;
  --navy-900: #0A2235;
  --navy-800: #12344A;
  --teal-700: #0F766E;
  --teal-600: #0D9488;
  --teal-500: #14A89A;
  --gold-500: #C6A96B;
  --gold-100: #F7F0DF;
  --surface: #FFFFFF;
  --surface-soft: #F5F7F8;
  --surface-blue: #EDF4F6;
  --border: #DCE4E8;
  --text: #172B3A;
  --text-muted: #5C6D79;
  --max: 1200px;
}

body {
  color: var(--text);
  font-family: Inter, Arial, Helvetica, system-ui, sans-serif;
}

.card,
.article-card,
.notice,
.form-panel,
.dashboard,
.photo-frame,
.page-photo,
.hero-photo,
.alternating-photo,
.band-photo {
  border-radius: 14px;
}

.rebuild-header .header-inner {
  min-height: 72px;
  max-width: 1200px;
  gap: 14px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: 2px;
}

.nav-menu {
  position: relative;
}

.mega-menu {
  left: 0;
  right: auto;
  transform: none;
  width: min(760px, calc(100vw - 48px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mega-menu.is-open {
  display: grid;
}

.mega-col {
  display: grid;
  gap: 8px;
}

.mega-col h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.mega-col a,
.mobile-drawer a {
  min-height: 40px;
  color: var(--navy-950);
  font-weight: 700;
}

.mobile-drawer {
  display: none;
}

.nav-actions {
  flex: 0 0 auto;
}

.rebuild-hero {
  color: #fff;
  background: radial-gradient(circle at 78% 20%, rgba(20, 168, 154, .28), transparent 34%), linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.rebuild-hero-grid {
  grid-template-columns: minmax(0, 52fr) minmax(360px, 48fr);
  min-height: 700px;
  padding-block: 76px 54px;
}

.rebuild-hero h1 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(56px, 5vw, 64px);
  line-height: 1.06;
}

.rebuild-hero .lead,
.rebuild-hero .hero-note {
  color: rgba(255, 255, 255, .9);
}

.hero-media {
  position: relative;
  display: grid;
  gap: 18px;
}

picture.hero-photo,
picture.page-photo,
picture.alternating-photo,
picture.band-photo,
picture.photo-frame {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  background: var(--surface-blue);
}

picture.hero-photo {
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
}

picture.page-photo,
picture.alternating-photo,
picture.band-photo {
  aspect-ratio: 4 / 3;
}

picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--photo-pos, 50% 50%);
}

.status-grid {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(420px, calc(100% - 36px));
  gap: 10px;
}

.status-card {
  padding: 12px 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  background: rgba(7, 26, 43, .72);
  backdrop-filter: blur(12px);
}

.status-card span {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.status-card strong {
  display: block;
  font-size: 15px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-strip span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
}

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

.stage-card {
  display: grid;
  min-height: 210px;
  align-content: start;
  gap: 10px;
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--teal-700);
  background: var(--surface-blue);
  font-weight: 900;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(8, minmax(110px, 1fr));
  gap: 10px;
}

.workflow-node,
.workflow-card {
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  text-align: left;
}

.workflow-node span,
.workflow-card span {
  display: block;
  color: var(--gold-500);
  font-weight: 900;
}

.workflow-node.is-active {
  border-color: var(--teal-600);
  background: var(--surface-blue);
}

.workflow-detail {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

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

.alternating {
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 44px;
  padding-block: 34px;
}

.alternating.is-reverse picture {
  order: 2;
}

.procurement-band {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.procurement-band h2,
.procurement-band .lead,
.procurement-band li {
  color: #fff;
}

.band-photo {
  border-color: rgba(255, 255, 255, .2);
}

.dashboard {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--border);
  background: #fff;
}

.dash-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid var(--border);
}

.final-notice {
  margin-top: 36px;
  text-align: center;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  gap: 42px;
}

.rebuild-page-hero {
  color: #fff;
  background: linear-gradient(135deg, #071a2b 0%, #0d273d 58%, #0d4f58 100%);
}

.rebuild-page-hero .lead {
  color: rgba(255, 255, 255, .84);
}

.service-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.service-aside {
  position: sticky;
  top: 96px;
}

.pricing-table {
  max-width: 100%;
}

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

.proposal-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step {
  display: none;
  gap: 14px;
}

.form-step.is-active {
  display: grid;
}

.form-step legend {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 850;
}

.form-error {
  display: block;
  min-height: 20px;
  margin-top: 6px;
  color: #b42318;
  font-size: 14px;
  font-weight: 700;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.step-progress {
  margin-bottom: 16px;
  color: var(--teal-700);
  font-weight: 850;
}

.mobile-bottom-cta {
  display: none;
}

.no-mobile-bottom-cta .mobile-bottom-cta {
  display: none !important;
}

@media (max-width: 1279px) {
  .desktop-nav {
    display: none;
  }

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

  .header-cta {
    display: none;
  }

  .mobile-drawer {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 12px;
    max-height: calc(100vh - 72px);
    padding: 18px 24px 28px;
    overflow-y: auto;
    border-bottom: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .mobile-drawer.is-open {
    display: grid;
  }

  .rebuild-hero-grid,
  .page-hero-grid,
  .service-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .service-aside {
    position: static;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .rebuild-header .header-inner {
    min-height: 62px;
    padding-inline: 14px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-text > span:first-child {
    max-width: 142px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .lang-button {
    min-width: 42px;
    padding-inline: 8px;
  }

  .lang-button span {
    display: inline;
  }

  .mobile-drawer {
    inset: 62px 0 auto;
    max-height: calc(100vh - 62px);
  }

  .rebuild-hero-grid {
    min-height: auto;
    padding: 48px 16px 40px;
    gap: 28px;
  }

  .rebuild-hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  picture.hero-photo {
    aspect-ratio: 16 / 10;
  }

  picture img {
    object-position: var(--photo-pos-mobile, var(--photo-pos, 50% 50%));
  }

  .status-grid {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: -4px;
  }

  .stage-grid,
  .grid-3,
  .grid-4,
  .alternating,
  .alternating.is-reverse,
  .split {
    grid-template-columns: 1fr;
  }

  .alternating.is-reverse picture {
    order: 0;
  }

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

  .table-wrap {
    max-width: calc(100vw - 32px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-table table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table th,
  .pricing-table td {
    display: block;
  }

  .pricing-table tr {
    margin-bottom: 14px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
  }

  .page-hero-grid {
    padding-inline: 0;
  }

  .mobile-bottom-cta {
    position: fixed;
    z-index: 90;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 14px;
    display: flex;
    justify-content: center;
    min-height: 52px;
    padding: 14px 18px;
    border-radius: 14px;
    color: #fff;
    background: var(--teal-700);
    font-weight: 850;
    box-shadow: 0 14px 38px rgba(7, 26, 43, .22);
  }

  .mobile-bottom-cta.is-hidden {
    display: none;
  }
}

/* focused-rectification-styles */
.focused-workflow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.focused-workflow-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.focused-workflow-card summary {
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

.focused-workflow-card summary::-webkit-details-marker {
  display: none;
}

.focused-workflow-card summary strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.focused-workflow-card summary small,
.resource-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.focused-workflow-card summary em {
  min-height: 72px;
  color: var(--muted);
  font-style: normal;
}

.focused-workflow-card summary b {
  color: var(--teal-dark);
  font-size: 13px;
}

.workflow-card-body {
  display: grid;
  gap: 18px;
  padding: 0 18px 18px;
  border-top: 1px solid var(--line);
}

.workflow-card-body h3 {
  margin-bottom: 8px;
  font-size: 14px;
}

.workflow-card-body ul {
  margin: 0;
  padding-left: 18px;
}

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

.resource-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 330px;
}

.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.resource-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.resource-tool {
  margin: 0;
}

.resource-read-link {
  align-self: end;
  justify-self: start;
}

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

.article-body {
  max-width: 820px;
}

.article-section {
  margin-top: 28px;
}

.article-aside {
  position: sticky;
  top: 96px;
}

.article-related-list {
  display: grid;
  gap: 12px;
}

.article-related-list a {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.article-related-list span {
  color: var(--muted);
  font-size: 13px;
}

.not-found-hero {
  padding: 74px 0 48px;
  background: var(--mist);
}

.not-found-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
  align-items: center;
  gap: 42px;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.not-found-links .card {
  min-height: 150px;
}

@media (max-width: 1024px) {
  .focused-workflow-grid,
  .resource-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout,
  .not-found-grid {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .focused-workflow-grid,
  .resource-card-grid {
    grid-template-columns: 1fr;
  }

  .focused-workflow-card summary {
    min-height: 0;
  }

  .focused-workflow-card summary em {
    min-height: 0;
  }

  .resource-card {
    min-height: 0;
  }

  .not-found-actions .btn {
    width: 100%;
  }
}