/* ===== BRUTALIST / GRID — FashionPatternMaker.com v2 ===== */
:root {
  --ink: #080808;
  --white: #ffffff;
  --off: #f0f0ee;
  --lime: #b8ff00;
  --muted: #555550;
  --border: #080808;
  --thick: 3px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--off); color: var(--ink); font-family: 'Arial Black', 'Arial Bold', Arial, sans-serif; line-height: 1.4; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* HEADER */
.header {
  display: flex;
  align-items: stretch;
  border-bottom: var(--thick) solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo {
  display: flex;
  align-items: center;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.01em;
  border-right: var(--thick) solid var(--border);
  text-transform: uppercase;
}
.logo span { font-weight: 400; }
.header nav {
  display: flex;
  flex: 1;
}
.header nav a {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-right: 1px solid #ddd;
  transition: background .15s;
}
.header nav a:hover { background: var(--lime); }
.hphone {
  display: flex;
  align-items: center;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 900;
  background: var(--ink);
  color: var(--lime);
  letter-spacing: .04em;
  white-space: nowrap;
  border-left: var(--thick) solid var(--border);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  border-bottom: var(--thick) solid var(--border);
}
.hero-left {
  padding: 56px 48px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: var(--thick) solid var(--border);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--lime);
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  border: var(--thick) solid var(--ink);
  margin-bottom: 24px;
}
.hero-left h1 {
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.03em;
  margin: 0 0 32px;
  text-transform: uppercase;
}
.h1-stroke {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.hero-desc {
  font-size: 16px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  color: #b8b8b0;
  line-height: 1.65;
  margin: 0 0 36px;
  max-width: 400px;
}
.hero-contact { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-brutal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  background: var(--lime);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: var(--thick) solid var(--ink);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.btn-brutal:hover { background: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: #555;
}
.btn-ghost:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.hero-right {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 88vh;
  filter: grayscale(20%) contrast(1.05);
}
.hero-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 20px;
  background: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: var(--thick) solid var(--border);
}

/* MARQUEE */
.marquee-bar {
  overflow: hidden;
  background: var(--lime);
  border-bottom: var(--thick) solid var(--border);
  padding: 12px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  display: inline-block;
  padding: 0 20px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* BRUTAL TAG */
.brutal-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  font-family: 'Courier New', monospace;
}

/* SERVICES */
.services {
  padding: 0;
  border-bottom: var(--thick) solid var(--border);
}
.services-hd {
  padding: 56px 48px 40px;
  border-bottom: var(--thick) solid var(--border);
  background: var(--white);
}
.services-hd h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.02em;
  max-width: 760px;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: var(--thick) solid var(--border);
}
.svc-block {
  padding: 36px 32px;
  border-right: var(--thick) solid var(--border);
  border-bottom: var(--thick) solid var(--border);
  background: var(--off);
  transition: background .15s;
}
.svc-block:hover { background: var(--lime); }
.svc-idx {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  color: var(--muted);
  margin-bottom: 16px;
  font-family: 'Courier New', monospace;
}
.svc-block h3 {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.svc-block p {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  font-family: Arial, sans-serif;
  line-height: 1.7;
  color: var(--muted);
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  border-bottom: var(--thick) solid var(--border);
  background: var(--white);
}
.about-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  color: var(--lime);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: var(--ink);
  border-right: var(--thick) solid var(--border);
  padding: 24px 0;
  letter-spacing: -.04em;
}
.about-copy {
  padding: 56px 48px;
  border-right: var(--thick) solid var(--border);
}
.about-copy h2 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 900;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1;
}
.about-copy p {
  font-size: 14px;
  font-family: Arial, sans-serif;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 16px;
}
.about-img { overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; filter: grayscale(30%); }

/* PROCESS */
.process {
  padding: 56px 48px;
  border-bottom: var(--thick) solid var(--border);
  background: var(--off);
}
.process h2 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 900;
  margin: 0 0 48px;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: var(--thick) solid var(--border);
}
.proc-step {
  display: flex;
  flex-direction: column;
  border-right: var(--thick) solid var(--border);
}
.proc-step:last-child { border-right: none; }
.proc-n {
  display: block;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  padding: 20px 24px 12px;
  border-bottom: var(--thick) solid var(--border);
  background: var(--lime);
  color: var(--ink);
}
.proc-body { padding: 24px; flex: 1; }
.proc-body h3 {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 12px;
}
.proc-body p {
  font-size: 13px;
  font-family: Arial, sans-serif;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* CONTACT */
.contact {
  background: var(--ink);
  color: var(--white);
  padding: 72px 48px;
  border-bottom: var(--thick) solid var(--border);
}
.contact .brutal-tag { color: var(--lime); }
.contact-inner h2 {
  font-size: clamp(30px, 4vw, 64px);
  font-weight: 900;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1;
}
.contact-inner p {
  font-size: 15px;
  font-family: Arial, sans-serif;
  font-weight: 400;
  color: #aaa;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 0 40px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #333;
  margin-bottom: 36px;
}
.cg-block {
  padding: 24px;
  border-right: 1px solid #333;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cg-block:last-child { border-right: none; }
.cg-label {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--lime);
  font-family: 'Courier New', monospace;
}
.cg-block a, .cg-block span {
  font-size: 14px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .02em;
}

/* FOOTER */
.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 48px;
  background: var(--off);
  border-top: var(--thick) solid var(--border);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .header { flex-direction: column; position: relative; }
  .logo { padding: 16px 20px; border-right: none; border-bottom: var(--thick) solid var(--border); }
  .header nav { flex-wrap: wrap; }
  .header nav a { padding: 12px 16px; font-size: 10px; }
  .hphone { padding: 14px 20px; border-left: none; border-top: var(--thick) solid var(--border); }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 40px 20px; }
  .hero-left h1 { font-size: 52px; }
  .hero-right img { min-height: 300px; height: 300px; }
  .services-hd { padding: 40px 20px 28px; }
  .svc-grid { grid-template-columns: 1fr; border-left: none; }
  .svc-block { border-right: none; }
  .about { grid-template-columns: 1fr; }
  .about-number { writing-mode: horizontal-tb; font-size: 60px; padding: 20px; border-right: none; border-bottom: var(--thick) solid var(--border); }
  .about-copy { padding: 36px 20px; border-right: none; }
  .about-img img { min-height: 240px; height: 240px; }
  .process { padding: 40px 20px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact { padding: 48px 20px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer { padding: 14px 20px; }
}
