/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }

:root {
  --bg: #f7f5f1;
  --ink: #111111;
  --ink-soft: #55524c;
  --line: rgba(17,17,17,0.12);
  --panel: #ffffff;
  --cream-deep: #ebdfc9;
  --accent: #1e4fc4;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  opacity: 0.035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247,245,241,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand .logo-mark { width: 28px; height: 28px; color: var(--ink); }
.brand .logo-text { font-family: 'Anton', sans-serif; font-size: 17px; letter-spacing: 0.06em; }
.nav-links { display: flex; align-items: center; gap: 28px; flex-shrink: 0; }
.nav-links a { position: relative; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); transition: color .2s ease; white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--accent);
}
.nav-cta {
  border: 1.5px solid var(--ink); padding: 10px 20px; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; border-radius: 999px;
  white-space: nowrap; flex-shrink: 0;
  transition: background .2s ease, color .2s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }
.nav-toggle { display: none; background: none; border: none; width: 32px; height: 22px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink);
}
.nav-toggle span { top: 10px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  position: relative; padding-top: 76px;
}
.hero-rings {
  position: absolute; top: 50%; right: -120px; transform: translateY(-50%);
  width: 620px; height: 620px; color: var(--ink); opacity: 0.05; pointer-events: none;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 26px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
.hero h1 {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: clamp(48px, 8.6vw, 118px); line-height: 0.94; letter-spacing: -0.01em;
  margin: 0 0 28px; max-width: 15ch;
}
.hero h1 em { font-style: normal; color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px); color: var(--ink-soft); max-width: 46ch; line-height: 1.6;
  margin: 0 0 40px;
}
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.btn-primary {
  background: var(--ink); color: var(--bg); padding: 16px 30px; border-radius: 999px;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; display: inline-flex;
  align-items: center; gap: 10px; transition: transform .25s ease, background .25s ease;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--accent); }
.btn-ghost {
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink);
  border-bottom: 1.5px solid var(--ink); padding-bottom: 3px;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 32px; display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
}
.hero-scroll .line { width: 1px; height: 40px; background: var(--line); position: relative; overflow: hidden; }
.hero-scroll .line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--ink); animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0; overflow: hidden; white-space: nowrap;
}
.marquee-track { display: inline-flex; animation: marquee 26s linear infinite; }
.marquee-track span {
  font-family: 'Anton', sans-serif; font-size: 20px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--ink-soft); padding: 0 28px;
  display: inline-flex; align-items: center; gap: 28px;
}
.marquee-track span::after { content: '\2726'; color: var(--accent); font-size: 12px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Section shell ---------- */
section { padding: 130px 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 64px; }
.tag {
  display: inline-block; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px; font-weight: 600;
}
.section-head h2 {
  font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.05; margin: 0 0 20px; letter-spacing: -0.01em;
}
.section-head p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; margin: 0; }

/* ---------- About ---------- */
.about { background: var(--cream-deep); border-top: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-copy p { font-size: 18px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 22px; }
.about-copy p strong { color: var(--ink); font-weight: 600; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.stat { border-top: 1px solid var(--line); padding-top: 18px; }
.stat .num { font-family: 'Anton', sans-serif; font-size: 44px; display: block; }
.stat .label { font-size: 13px; color: var(--ink-soft); letter-spacing: 0.04em; }

/* ---------- Work / clients ---------- */
.work { background: var(--ink); color: var(--bg); }
.work .tag { color: var(--accent); }
.work .section-head p { color: rgba(247,245,241,0.65); }
.client-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.client-card {
  border: 1px solid rgba(247,245,241,0.15); border-top: 3px solid var(--accent); border-radius: 20px; padding: 40px;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.client-card:hover {
  border-left-color: rgba(247,245,241,0.4); border-right-color: rgba(247,245,241,0.4); border-bottom-color: rgba(247,245,241,0.4);
  transform: translateY(-4px); background: rgba(247,245,241,0.03);
}
.client-card .client-name {
  font-family: 'Anton', sans-serif; font-size: 30px; margin-bottom: 14px; letter-spacing: 0.01em;
}
.client-card .client-desc { color: rgba(247,245,241,0.6); font-size: 15px; line-height: 1.7; margin: 0 0 18px; }
.client-card .client-meta {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 8px;
}
.work-note {
  margin-top: 32px; font-size: 13px; color: rgba(247,245,241,0.45); max-width: 60ch; line-height: 1.7;
}

/* ---------- Process ---------- */
.process-list { border-top: 1px solid var(--line); }
.process-item {
  display: grid; grid-template-columns: 90px 1fr 1.2fr; gap: 40px; align-items: start;
  padding: 40px 0; border-bottom: 1px solid var(--line);
}
.process-item .idx { font-family: 'Anton', sans-serif; font-size: 20px; color: var(--accent); }
.process-item h3 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 26px; margin: 0; }
.process-item p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin: 0; }

/* ---------- Services / blank garments ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  padding: 34px 22px 28px; text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(17,17,17,0.07); border-color: rgba(17,17,17,0.22); }
.service-icon { display: block; width: 96px; height: 108px; margin: 0 auto 22px; color: var(--ink); }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 19px; margin: 0 0 8px; letter-spacing: 0.01em; }
.service-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; margin: 0; }
.service-card--more { background: transparent; border-style: dashed; border-color: rgba(17,17,17,0.25); }
.service-card--more .service-icon { color: var(--accent); }
.service-card--more:hover { border-color: var(--accent); }

/* ---------- Page header (subpages) ---------- */
.page-header { padding: 158px 0 64px; border-bottom: 1px solid var(--line); }
.page-header h1 {
  font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(38px, 6vw, 68px);
  line-height: 1.03; margin: 0 0 20px; letter-spacing: -0.01em; max-width: 17ch;
}
.page-header p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; max-width: 56ch; margin: 0; }

/* ---------- CTA band (subpage bottom) ---------- */
.cta-band { background: var(--ink); color: var(--bg); text-align: center; padding: 96px 0; }
.cta-band h2 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(30px, 4.2vw, 50px); margin: 0 0 30px; }
.cta-band .btn-primary { background: var(--accent); color: #111; }
.cta-band .btn-primary:hover { background: var(--bg); color: var(--ink); }

/* ---------- Quote page ---------- */
.quote-page { background: #0d0d0c; color: var(--bg); padding: 158px 0 120px; }
.quote-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px; align-items: start; }
.quote-copy .tag { color: var(--accent); }
.quote-copy h1 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(38px, 6vw, 64px); margin: 0 0 22px; line-height: 1.03; }
.quote-copy h1 em { font-style: italic; color: var(--accent); }
.quote-copy > p { color: rgba(247,245,241,0.65); font-size: 17px; line-height: 1.7; max-width: 46ch; margin: 0 0 46px; }
.quote-steps { display: flex; flex-direction: column; gap: 26px; }
.quote-step { display: flex; align-items: center; gap: 20px; }
.quote-step .n {
  width: 40px; height: 40px; border: 1px solid rgba(247,245,241,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-family: 'Anton', sans-serif;
  font-size: 13px; flex-shrink: 0;
}
.quote-step p { margin: 0; font-size: 16px; color: rgba(247,245,241,0.85); }
.quote-form { background: rgba(247,245,241,0.03); border: 1px solid rgba(247,245,241,0.12); border-radius: 22px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.field label { display: block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(247,245,241,0.5); margin-bottom: 10px; }
.field input, .field textarea, .field select {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(247,245,241,0.25);
  color: var(--bg); font-size: 15px; font-family: inherit; padding: 6px 0 10px; outline: none;
  transition: border-color .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(247,245,241,0.32); }
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 96px; border: 1px solid rgba(247,245,241,0.25); border-radius: 10px; padding: 12px; }
.field.full { margin-bottom: 28px; }
.package-options { display: flex; gap: 14px; }
.package-option { flex: 1; cursor: pointer; }
.package-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.package-option .card {
  display: block; border: 1px solid rgba(247,245,241,0.22); border-radius: 12px; padding: 16px;
  transition: border-color .2s ease, background .2s ease;
}
.package-option input:checked + .card { border-color: var(--accent); background: rgba(30,79,196,0.10); }
.package-option input:focus-visible + .card { outline: 2px solid var(--accent); outline-offset: 2px; }
.package-option .name { display: block; font-family: 'Anton', sans-serif; font-size: 16px; letter-spacing: 0.01em; color: var(--bg); }
.package-option .desc { display: block; margin-top: 4px; font-size: 12px; color: rgba(247,245,241,0.5); line-height: 1.5; }
.field input[type="file"] {
  border: 1px dashed rgba(247,245,241,0.3); border-radius: 10px; padding: 14px;
  font-size: 13px; color: rgba(247,245,241,0.55); cursor: pointer;
}
.field input[type="file"]::file-selector-button {
  background: var(--accent); color: #111; border: none; padding: 8px 14px; margin-right: 14px;
  border-radius: 6px; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 700; cursor: pointer; transition: background .2s ease;
}
.field input[type="file"]:hover::file-selector-button { background: #5b8def; }
.field-hint { margin-top: 8px; font-size: 12px; color: rgba(247,245,241,0.4); }
.quote-submit {
  width: 100%; background: var(--accent); color: #111; border: none; padding: 18px; border-radius: 10px;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}
.quote-submit:hover { background: #5b8def; transform: translateY(-2px); }
.form-note { margin-top: 16px; font-size: 12px; color: rgba(247,245,241,0.4); line-height: 1.6; }

/* ---------- CTA / Contact ---------- */
.contact { border-top: 1px solid var(--line); }
.contact-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: end;
}
.contact h2 {
  font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(36px, 5vw, 64px);
  line-height: 1.03; margin: 0 0 24px; letter-spacing: -0.01em;
}
.contact p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; max-width: 44ch; margin: 0 0 34px; }
.contact-links { display: flex; flex-direction: column; gap: 4px; }
.contact-link {
  font-family: 'Anton', sans-serif; font-size: 30px; padding: 18px 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; transition: color .2s ease, padding-left .2s ease;
}
.contact-link:hover { color: var(--accent); padding-left: 8px; }
.contact-link .arrow { font-size: 20px; }
.contact-note { margin-top: 22px; font-size: 13px; color: var(--ink-soft); line-height: 1.7; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .logo-mark { width: 20px; height: 20px; }
.footer-brand span { font-family: 'Anton', sans-serif; font-size: 14px; letter-spacing: 0.05em; }
.footer-meta { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.03em; }
.footer-socials { display: flex; gap: 22px; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-socials a { color: var(--ink-soft); transition: color .2s ease; }
.footer-socials a:hover { color: var(--ink); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .client-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-item { grid-template-columns: 50px 1fr; }
  .process-item p { grid-column: 1 / -1; }
  .quote-grid { grid-template-columns: 1fr; gap: 56px; }
  .form-row { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 700px) {
  .hero-scroll { display: none; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 90px 0; }
  .page-header { padding: 128px 0 48px; }
  .quote-page { padding: 128px 0 80px; }
  .quote-form { padding: 28px; }
}
