:root {
  --ink: #101010;
  --soft-ink: #2d2d2d;
  --muted: #6d6d6d;
  --line: #dedede;
  --paper: #ffffff;
  --mist: #f6f6f4;
  --smoke: #ececea;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  height: 58px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #eeeeec;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  width: min(980px, calc(100% - 34px));
  height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  min-width: 168px;
}
.logo-mark {
  font-size: 30px;
  line-height: .8;
  font-weight: 600;
  letter-spacing: 9px;
}
.logo-line {
  font-size: 8px;
  line-height: 1;
  letter-spacing: 1.1px;
  color: var(--soft-ink);
  font-weight: 700;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.main-nav a {
  height: 58px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a.active { border-bottom-color: var(--ink); }
.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
}

.container { width: min(940px, calc(100% - 34px)); margin: 0 auto; }
.wide { width: min(1280px, 100%); margin: 0 auto; }

.home-hero {
  height: 258px;
  background: #151515;
  color: #fff;
  overflow: hidden;
}
.home-hero .wide {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 44%) 1fr;
}
.hero-copy {
  padding: 34px 0 0 max(34px, calc((100vw - 940px) / 2));
  background: linear-gradient(90deg, rgba(10,10,10,.98), rgba(10,10,10,.86));
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.hero-copy p {
  max-width: 360px;
  margin: 0 0 18px;
  color: #e7e7e2;
  font-size: 13px;
  line-height: 1.55;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.button.ghost { background: transparent; border-color: rgba(255,255,255,.72); color: #fff; }
.button.outline { background: #fff; color: var(--ink); border-color: var(--ink); }
.hero-photo {
  background: linear-gradient(90deg, rgba(15,15,15,.32), rgba(15,15,15,0)), url("../images/hero-garments.jpg") center / cover no-repeat;
}

.service-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.service-item {
  min-height: 132px;
  padding: 18px 28px 20px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.service-item:first-child { border-left: 0; }
.service-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 14px;
  border: 1px solid #7a7a7a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #444;
  font-size: 15px;
  font-weight: 700;
}
.service-item h3,
.category-card h3,
.mini-card h3 {
  margin: 0 0 8px;
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.service-item p,
.category-card p,
.mini-card p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 10.5px;
  line-height: 1.55;
}

.section { padding: 42px 0; }
.section.tight { padding: 28px 0; }
.section.mist { background: var(--mist); }
.section-kicker {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--muted);
}
.section-title {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.section-copy {
  margin: 0 0 12px;
  color: var(--soft-ink);
  font-size: 12px;
  line-height: 1.62;
}

.about-preview {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 54px;
  align-items: center;
}
.about-preview img {
  width: 100%;
  height: 164px;
  object-fit: cover;
  filter: grayscale(100%);
}
.center-title {
  text-align: center;
  margin: 0 0 20px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.expertise-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
}
.expertise-chip {
  min-height: 76px;
  display: grid;
  place-items: center;
  gap: 7px;
  text-align: center;
  border-left: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.expertise-chip:first-child { border-left: 0; }
.chip-icon { font-size: 22px; line-height: 1; color: #444; }

.location-band {
  background: #111;
  color: #fff;
  padding: 8px 0;
  border-bottom: 1px solid #262626;
}
.location-band .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: left;
}
.pin {
  width: 22px;
  height: 22px;
  border: 1px solid #aaa;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  flex: 0 0 auto;
}
.location-band strong {
  display: block;
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.location-band span {
  display: block;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #d7d7d7;
}

.page-hero {
  height: 126px;
  color: #fff;
  background: #111;
  display: flex;
  align-items: center;
}
.page-hero.about { background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.25)), url("../images/office-banner.jpg") center / cover no-repeat; }
.page-hero.what { background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.18)), url("../images/what-banner.jpg") center / cover no-repeat; }
.page-hero.expertise { background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.18)), url("../images/expertise-banner.jpg") center / cover no-repeat; }
.page-hero.quality { background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.18)), url("../images/quality-banner.jpg") center / cover no-repeat; }
.page-hero.contact { background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.18)), url("../images/contact-banner.jpg") center / cover no-repeat; }
.breadcrumb {
  margin: 4px 0 0;
  color: #ddd;
  font-size: 10px;
}
.page-hero h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.split {
  display: grid;
  grid-template-columns: 1fr 36%;
  gap: 48px;
  align-items: start;
}
.split.reverse { grid-template-columns: 36% 1fr; }
.split img {
  width: 100%;
  min-height: 170px;
  object-fit: cover;
  filter: grayscale(100%);
}
.grid { display: grid; gap: 0; }
.grid.two { grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.category-card,
.mini-card {
  min-height: 126px;
  padding: 22px;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.mini-card img {
  width: 100%;
  height: 126px;
  object-fit: cover;
  filter: grayscale(100%);
}
.category-card:nth-child(3n+1),
.mini-card:first-child { border-left: 0; }
.category-card:nth-child(-n+3) { border-top: 0; }
.category-card img {
  height: 88px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 14px;
  filter: grayscale(100%);
}
.quality-points {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid var(--line);
  text-align: center;
  gap: 0;
}
.quality-point {
  padding: 0 10px 24px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 48px;
}
.contact-list {
  display: grid;
  gap: 9px;
  margin: 20px 0;
  color: var(--soft-ink);
  font-size: 12px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 7px;
  color: var(--soft-ink);
  font-size: 12px;
}
.check-list li::before { content: "✓"; margin-right: 8px; }
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 11px 12px;
  font: inherit;
  font-size: 12px;
  background: #fff;
}
.contact-form textarea,
.contact-form .full { grid-column: 1 / -1; }
.contact-form textarea { min-height: 116px; resize: vertical; }

.site-footer {
  background: #111;
  color: #fff;
  padding: 28px 0 12px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.1fr 1.1fr 1.15fr;
  gap: 38px;
  padding-bottom: 22px;
}
.site-footer .logo-mark { font-size: 24px; color: #fff; }
.site-footer .logo-line { color: #ddd; }
.social-row { display: flex; gap: 12px; margin-top: 16px; color: #ddd; font-size: 16px; }
.footer-title {
  margin: 0 0 12px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}
.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 6px;
  color: #d7d7d7;
  font-size: 10.5px;
}
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 30px; }
.copyright {
  border-top: 1px solid #252525;
  padding-top: 10px;
  text-align: center;
  color: #a7a7a7;
  font-size: 10px;
}

@media (max-width: 820px) {
  .site-header, .header-inner { height: 62px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .main-nav a { height: auto; padding: 14px 18px; border-top: 1px solid var(--line); }
  .home-hero { height: auto; }
  .home-hero .wide { grid-template-columns: 1fr; min-height: 520px; }
  .hero-copy { padding: 52px 24px 36px; background: rgba(10,10,10,.86); }
  .hero-photo { min-height: 250px; order: -1; }
  .service-grid, .expertise-row, .quality-points, .footer-grid, .contact-wrap, .split, .split.reverse, .grid.two, .grid.three, .about-preview {
    grid-template-columns: 1fr;
  }
  .service-item, .expertise-chip, .category-card, .mini-card { border-left: 0; border-top: 1px solid var(--line); }
  .service-item:first-child, .expertise-chip:first-child { border-top: 0; }
  .about-preview { gap: 24px; }
  .section { padding: 34px 0; }
  .location-band .container { justify-content: flex-start; }
}

@media (max-width: 520px) {
  .logo-mark { font-size: 25px; letter-spacing: 7px; }
  .logo-line { font-size: 7px; }
  .hero-copy h1 { font-size: 30px; }
  .contact-form { grid-template-columns: 1fr; }
}
