:root {
  --bg: #fbfbfa;
  --paper: #ffffff;
  --ink: #111111;
  --text: #262626;
  --muted: #696969;
  --line: #dededb;
  --soft: #f1f1ef;
  --max: 1280px;
  --pad: clamp(24px, 5vw, 80px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 251, 250, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.brand {
  display: grid;
  gap: 4px;
  width: 224px;
}
.brand-logo {
  width: 188px;
  height: auto;
  filter: grayscale(1) contrast(.95);
}
.brand-slogan {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .04em;
  padding-left: 2px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  color: var(--ink);
  font-size: 15px;
}
.site-nav a {
  position: relative;
  padding: 8px 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; }

.section { padding-block: clamp(80px, 10vw, 150px); }
.hero { padding-top: clamp(70px, 8vw, 120px); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 30px;
  color: var(--ink);
  font-size: clamp(54px, 7vw, 104px);
  line-height: .94;
  letter-spacing: -.06em;
  max-width: 780px;
}
h2 {
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1;
  letter-spacing: -.045em;
}
h3 {
  color: var(--ink);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 18px;
}
.lead {
  max-width: 725px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.38;
  color: var(--text);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 44px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 7px;
  font-weight: 650;
}
.text-link::after { content: "→"; transition: transform .25s var(--ease); }
.text-link:hover::after { transform: translateX(5px); }
.text-link.muted { color: var(--muted); }
.photo-frame {
  margin: 0;
  background: var(--soft);
  overflow: hidden;
  border-radius: 18px;
}
.photo-frame img,
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform .5s var(--ease);
}
.photo-frame:hover img,
.service-card:hover img { transform: scale(1.025); }
.hero-media { aspect-ratio: 1 / .82; }

.services-section { border-top: 1px solid var(--line); }
.section-heading {
  max-width: 780px;
  margin-bottom: clamp(58px, 7vw, 96px);
}
.service-list { display: grid; gap: clamp(64px, 8vw, 120px); }
.service-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, .8fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
}
.service-card.reversed .service-photo { order: 2; }
.service-card.reversed .service-copy { order: 1; }
.service-photo {
  margin: 0;
  aspect-ratio: 16 / 10;
  background: var(--soft);
  overflow: hidden;
  border-radius: 18px;
}
.service-copy {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.service-number {
  display: block;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 14px;
}
.service-copy p,
.feature-copy p,
.manufacturing-copy p,
.contact-card address {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.5;
}
.service-copy p { max-width: 560px; }

.fa-icon {
  display: inline-grid;
  place-items: center;
  width: 1.7em;
  height: 1.7em;
  margin-right: .55em;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: .62em;
  line-height: 1;
  vertical-align: .12em;
  font-weight: 700;
}
h3 .fa-icon { transform: translateY(-.08em); }
.icon-list {
  list-style: none;
  padding: 24px 0 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 11px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.icon-list .fa-icon {
  flex: 0 0 auto;
  width: 1.45em;
  height: 1.45em;
  margin-right: .45em;
  font-size: .58em;
}

.linux-section {
  background: var(--soft);
  border-block: 1px solid var(--line);
}
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 130px);
  align-items: start;
}
.feature-copy p { margin-bottom: 38px; }
.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.capability-grid div {
  min-height: 104px;
  padding: 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.35;
}
.capability-grid .fa-icon {
  display: inline-grid;
  margin-bottom: 18px;
  margin-right: 0;
}

.manufacturing-section { border-bottom: 1px solid var(--line); }
.manufacturing-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}
.manufacturing-copy p { max-width: 650px; }
.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  counter-reset: flow;
}
.process-flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 44px;
  height: 1px;
  background: var(--line);
}
.process-flow li {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  gap: 10px;
  padding: 0 10px;
}
.process-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 700;
  z-index: 1;
}
.process-flow strong {
  margin-top: 12px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
}
.process-flow span:last-child {
  max-width: 150px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.contact-section { padding-block: clamp(70px, 8vw, 120px); }
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
  padding-top: 48px;
  border-top: 1px solid var(--ink);
}
address { font-style: normal; }
address a { border-bottom: 1px solid currentColor; }

.site-footer { padding-block: 34px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}
.footer-inner a { color: var(--ink); }

@media (max-width: 1060px) {
  .process-flow {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .process-flow::before {
    left: 44px;
    right: auto;
    top: 40px;
    bottom: 40px;
    width: 1px;
    height: auto;
  }
  .process-flow li {
    grid-template-columns: 88px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
    column-gap: 22px;
    align-items: center;
  }
  .process-icon { grid-row: span 2; }
  .process-flow strong { margin-top: 0; }
  .process-flow span:last-child { max-width: none; }
}

@media (max-width: 920px) {
  .header-inner { min-height: 92px; }
  .brand-logo { width: 160px; }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition: transform .24s var(--ease);
  }
  body.nav-open .nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 92px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 20px var(--pad) 30px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform .28s var(--ease);
  }
  body.nav-open .site-nav { transform: translateY(0); }
  .site-nav a { padding: 17px 0; border-bottom: 1px solid var(--line); }
  .hero-grid,
  .service-card,
  .split-grid,
  .manufacturing-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .hero-media { aspect-ratio: 16 / 10; }
  .service-card.reversed .service-photo,
  .service-card.reversed .service-copy { order: initial; }
  .capability-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(46px, 17vw, 64px); }
  .service-number { margin-bottom: 28px; }
  .process-flow li {
    grid-template-columns: 72px minmax(0, 1fr);
  }
  .process-icon {
    width: 72px;
    height: 72px;
    font-size: 23px;
  }
  .process-flow::before { left: 36px; }
  .footer-inner { display: grid; }
}

/* v3 refinements */
.fa-icon {
  width: auto;
  height: auto;
  margin-right: .65em;
  border: 0;
  border-radius: 0;
  font-size: .62em;
  color: var(--ink);
}
.icon-list .fa-icon {
  width: 1.2em;
  height: auto;
  margin-right: .65em;
  border: 0;
  font-size: .75em;
  color: var(--ink);
}
.capability-grid .fa-icon {
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 18px;
  border: 0;
  font-size: 1.35rem;
}
.contact-details {
  display: grid;
  gap: 14px;
}
.contact-details span,
.contact-details a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-details a { border-bottom: 0; }
.contact-details i { width: 1.15em; color: var(--ink); }

.site-footer {
  padding-block: clamp(56px, 7vw, 92px) 28px;
  background: #242424;
  color: #e7e4de;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, .75fr) minmax(230px, .85fr) minmax(300px, 1.1fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}
.footer-logo {
  width: 172px;
  height: auto;
  filter: grayscale(1) brightness(0) invert(1) opacity(.9);
  margin-bottom: 14px;
}
.footer-brand p,
.footer-note {
  margin: 0 0 14px;
  color: #c9c5bd;
}
.footer-note {
  max-width: 310px;
  font-size: 15px;
  line-height: 1.55;
}
.site-footer h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
  color: #d8d4cc;
  font-size: 15px;
}
.footer-list a,
.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.footer-list a { transition: color .2s var(--ease); }
.footer-list a:hover { color: #ffffff; }
.footer-list i {
  width: 18px;
  flex: 0 0 18px;
  margin-top: 3px;
  color: #ffffff;
  opacity: .82;
}
.footer-map iframe {
  display: block;
  width: 100%;
  min-height: 230px;
  border: 0;
  filter: grayscale(.45) contrast(.95);
  background: #181818;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(44px, 6vw, 72px);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #aaa59c;
  font-size: 14px;
}
.footer-bottom a { color: #e7e4de; }

@media (max-width: 1060px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-map { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }
  .footer-map iframe { min-height: 260px; }
}


/* v4 refinements */
.photo-frame,
.service-photo,
.feature-photo,
.manufacturing-photo,
.card-image {
  border-radius: 18px;
  overflow: hidden;
}
.service-number { display: none; }
.contact-details a[href^="tel:"],
.contact-list a[href^="tel:"] {
  white-space: nowrap;
}

/* v5 layout refinements */
body {
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.brand.text-brand {
  width: auto;
  gap: 2px;
  line-height: 1;
}
.brand-word {
  display: block;
  color: var(--ink);
  font-size: clamp(30px, 2.7vw, 42px);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .9;
}
.brand-slogan {
  padding-left: 1px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .035em;
}

.services-section,
.manufacturing-section {
  background: var(--paper);
}
.linux-section,
.contact-section {
  background: var(--soft);
}

.service-list {
  gap: clamp(34px, 5vw, 72px);
}
.service-card {
  padding: clamp(26px, 4vw, 56px);
  border-radius: 22px;
}
.service-card:nth-child(odd) {
  background: var(--soft);
}
.service-card:nth-child(even) {
  background: var(--paper);
  border: 1px solid var(--line);
}
.service-copy {
  border-top: 0;
  padding-top: 0;
}
.service-details {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  gap: 14px;
}
.service-details div {
  background: var(--paper);
}
.service-card:nth-child(even) .service-details div {
  background: var(--soft);
}
.service-details .fa-icon {
  display: block;
  margin: 0 0 18px;
  font-size: 1.25rem;
}
.capability-grid div {
  border-radius: 14px;
}

.footer-logo { display: none; }
.footer-text-brand {
  display: inline-grid;
  gap: 7px;
  margin-bottom: 20px;
  color: #fff;
}
.footer-text-brand .brand-word {
  color: #fff;
  font-size: 40px;
}
.footer-text-brand span:last-child {
  color: #c9c5bd;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
}

@media (max-width: 1060px) {
  .service-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .brand-word { font-size: 34px; }
}


/* v6 refinements requested: keep actual logo image, unified detail blocks */
.brand {
  width: 206px;
  gap: 7px;
  line-height: 1;
}
.brand-logo {
  display: block;
  width: 188px;
  height: auto;
  filter: grayscale(1) contrast(1.05);
}
.brand-slogan {
  padding-left: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .085em;
  text-transform: uppercase;
}

.service-details {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
}
.service-details div,
.capability-grid div {
  min-height: 112px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 600;
  color: var(--ink);
}
.service-details div:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
.service-card:nth-child(odd) .service-details div,
.linux-section .capability-grid div {
  background: var(--bg);
}
.service-card:nth-child(even) .service-details div {
  background: var(--soft);
}

/* section alternation */
.services-section,
.manufacturing-section {
  background: var(--paper);
}
.linux-section,
.contact-section {
  background: var(--soft);
}

.footer-brand-logo {
  display: inline-grid;
  gap: 10px;
  margin-bottom: 20px;
  color: #c9c5bd;
}
.footer-logo {
  display: block;
  width: 172px;
  height: auto;
  filter: grayscale(1) brightness(0) invert(1) opacity(.92);
  margin: 0;
}
.footer-brand-logo span {
  color: #c9c5bd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .085em;
  text-transform: uppercase;
}
.footer-text-brand h2 {
  font-size: 150%;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  text-transform: uppercase;
}
.footer-text-brand span {
  text-transform: uppercase;
}
.footer-text-brand .brand-word {
  display: none;
}

@media (max-width: 1060px) {
  .service-details { grid-template-columns: 1fr; }
  .service-details div:last-child:nth-child(odd) { grid-column: auto; }
}

@media (max-width: 920px) {
  .brand { width: 178px; }
  .brand-logo { width: 160px; }
  .brand-slogan { font-size: 10px; letter-spacing: .06em; }
}


/* v6 corrections: main service layout restored; detail items remain as cards */
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.brand {
  display: grid;
  gap: 4px;
  width: 224px;
  line-height: normal;
}
.brand-logo {
  width: 188px;
  height: auto;
  filter: none;
}
.brand-slogan {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: none;
  padding-left: 2px;
}

.service-list {
  display: grid;
  gap: clamp(64px, 8vw, 120px);
}
.service-card,
.service-card:nth-child(odd),
.service-card:nth-child(even) {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, .8fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.service-card.reversed .service-photo { order: 2; }
.service-card.reversed .service-copy { order: 1; }
.service-copy {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.service-details {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
  gap: 14px;
}
.service-details div {
  min-height: 104px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.35;
  font-weight: 600;
  color: var(--ink);
}
.service-details div:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
.service-details .fa-icon {
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 18px;
  border: 0;
  border-radius: 0;
  font-size: 1.25rem;
}

.linux-section .capability-grid div {
  background: var(--bg);
}
.capability-grid div {
  border-radius: 14px;
}

.footer-logo {
  display: block;
  width: 172px;
  height: auto;
  filter: none;
  margin: 0;
}
.footer-brand-logo span {
  color: #c9c5bd;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: none;
}

@media (max-width: 920px) {
  .brand { width: 178px; }
  .brand-logo { width: 160px; }
  .brand-slogan { font-size: 11px; letter-spacing: .035em; }
  .service-card,
  .service-card:nth-child(odd),
  .service-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .service-card.reversed .service-photo,
  .service-card.reversed .service-copy { order: initial; }
}

@media (max-width: 1060px) {
  .service-details {
    grid-template-columns: 1fr;
  }
  .service-details div:last-child:nth-child(odd) {
    grid-column: auto;
  }
}


/* Mobile navigation */
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink, #111111);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 780px) {
  .header-inner {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav,
  body.nav-open .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid var(--line, #dedede);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    z-index: 50;
  }

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

  .site-nav a {
    padding: 0.85rem 0.25rem;
  }
}
