:root {
  --cw-red: #B32D00;
  --cw-red-deep: #8a2300;
  --cw-orange: #E0531A;
  --cw-ink: #161616;
  --cw-ink-soft: #2a2a2a;
  --cw-paper: #ffffff;
  --cw-mist: #F4F4F2;
  --cw-mist-2: #ECEAE5;
  --cw-line: #E2E2DE;
  --cw-line-strong: #c9c9c2;
  --cw-cta: #0E7C86;
  --cw-cta-soft: #d4ebec;
  --cw-muted: #6b6b65;
  --cw-yellow: #F4C443;

  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(22, 22, 22, 0.06);
  --shadow-md: 0 4px 14px rgba(22, 22, 22, 0.08);
  --shadow-lg: 0 20px 50px rgba(22, 22, 22, 0.18);

  --nav-h: 72px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--cw-ink);
  background: var(--cw-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
p { margin: 0; }

/* ====== Layout ====== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 720px) {
  .container { padding: 0 18px; }
}

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-tight { padding: 48px 0; }
}

/* ====== Navbar ====== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--cw-line);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.nav-logo img { height: 32px; width: auto; }
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  flex: 1;
  margin-left: 12px;
}
.nav-link {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cw-ink);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-link:hover { background: var(--cw-mist); }
.nav-link.active {
  color: var(--cw-red);
  background: rgba(179, 45, 0, 0.06);
}
.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
}
.nav-burger:hover { background: var(--cw-mist); }
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta .btn-secondary { display: none; }
}
.nav-mobile {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--cw-paper);
  z-index: 49;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.nav-mobile .nav-link {
  font-size: 18px;
  padding: 14px 12px;
  border-bottom: 1px solid var(--cw-line);
  border-radius: 0;
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: transform 0.06s, background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
  border: 1px solid transparent;
  letter-spacing: -0.005em;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--cw-red);
  color: white;
}
.btn-primary:hover { background: var(--cw-red-deep); }
.btn-secondary {
  background: var(--cw-ink);
  color: white;
}
.btn-secondary:hover { background: #000; }
.btn-ghost {
  background: transparent;
  border-color: var(--cw-line-strong);
  color: var(--cw-ink);
}
.btn-ghost:hover { background: var(--cw-mist); border-color: var(--cw-ink); }
.btn-wa {
  background: #25D366;
  color: white;
}
.btn-wa:hover { background: #1ebe5b; }
.btn-cta {
  background: var(--cw-cta);
  color: white;
}
.btn-cta:hover { background: #0a626a; }
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ====== Floating Mobile bar + WhatsApp FAB ====== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 48;
  background: var(--cw-paper);
  border-top: 1px solid var(--cw-line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
}
.mobile-bar .btn { flex: 1; justify-content: center; padding: 12px 8px; }
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
}
.fab-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 47;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.15s;
}
.fab-wa:hover { transform: scale(1.06); }
@media (max-width: 720px) {
  .fab-wa { bottom: 84px; right: 16px; }
}

/* ====== Hero ====== */
.hero {
  position: relative;
  padding: 80px 0 0;
  background: var(--cw-paper);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding-top: 48px; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cw-red);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--cw-red);
}
.hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero h1 .ink { color: var(--cw-ink); }
.hero h1 .red { color: var(--cw-red); }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cw-red), var(--cw-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 19px;
  color: var(--cw-ink-soft);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.5;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--cw-muted);
  font-size: 13px;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hero right side – upload preview card */
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1.05;
  background: var(--cw-mist);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cw-line);
}
.hero-art::before {
  /* CMYK dots backdrop */
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(0,174,239,0.18) 0, transparent 18%),
    radial-gradient(circle at 78% 28%, rgba(236,0,140,0.16) 0, transparent 22%),
    radial-gradient(circle at 30% 78%, rgba(255,222,0,0.32) 0, transparent 20%),
    radial-gradient(circle at 86% 86%, rgba(22,22,22,0.10) 0, transparent 22%);
}
.upload-mock {
  position: absolute;
  inset: 36px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cw-line);
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.upload-mock-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.upload-mock-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.upload-mock-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--cw-red); animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.upload-mock-drop {
  flex: 1;
  border: 2px dashed var(--cw-line-strong);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  background: var(--cw-mist);
  gap: 10px;
}
.upload-mock-files {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.upload-mock-file {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--cw-mist);
  border-radius: var(--radius);
  font-size: 13px;
}
.upload-mock-file .ext {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: var(--cw-ink);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
}
.upload-mock-file .name { flex: 1; font-weight: 500; }
.upload-mock-file .size { color: var(--cw-muted); font-family: var(--font-mono); font-size: 11px; }
.upload-mock-progress {
  margin-top: 14px;
  height: 4px;
  background: var(--cw-mist-2);
  border-radius: 2px;
  overflow: hidden;
}
.upload-mock-progress span {
  display: block;
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--cw-red), var(--cw-orange));
  animation: progress 3s ease-in-out infinite;
}
@keyframes progress {
  0% { width: 12%; }
  60% { width: 84%; }
  100% { width: 96%; }
}

.hero-bar {
  margin-top: 80px;
  border-top: 1px solid var(--cw-line);
  border-bottom: 1px solid var(--cw-line);
  padding: 18px 0;
  background: var(--cw-mist);
}
.hero-bar-inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 13px;
  color: var(--cw-ink-soft);
  align-items: center;
}
.hero-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-bar-item b { color: var(--cw-ink); font-weight: 600; }

/* ====== Section header ====== */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--cw-red);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
.section-title {
  font-size: clamp(32px, 4.4vw, 52px);
  letter-spacing: -0.03em;
  max-width: 720px;
}
.section-sub {
  font-size: 17px;
  color: var(--cw-muted);
  max-width: 460px;
  line-height: 1.5;
}

/* ====== Service cards ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cw-line);
  border: 1px solid var(--cw-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--cw-paper);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: background 0.18s;
  min-height: 240px;
  position: relative;
}
.service-card:hover { background: var(--cw-mist); }
.service-card .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cw-muted);
  letter-spacing: 0.08em;
}
.service-card h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
}
.service-card .desc {
  font-size: 14px;
  color: var(--cw-muted);
  line-height: 1.5;
  flex: 1;
}
.service-card .card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 13px;
}
.service-card .card-foot .from {
  font-weight: 500;
  color: var(--cw-ink);
}
.service-card .arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cw-ink);
  color: white;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.18s;
}
.service-card:hover .arrow { transform: rotate(-45deg) scale(1.08); background: var(--cw-red); }

.service-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cw-red);
  margin-bottom: 6px;
}

/* ====== How it works ====== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  background: var(--cw-paper);
  border: 1px solid var(--cw-line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--cw-red);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 18px;
}
.step h4 {
  font-size: 22px;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--cw-muted);
  line-height: 1.6;
}

/* ====== Why colorwings teaser ====== */
.why {
  background: var(--cw-ink);
  color: var(--cw-paper);
}
.why .section-eyebrow { color: var(--cw-yellow); }
.why .section-title { color: var(--cw-paper); }
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) { .why-grid { grid-template-columns: 1fr; } }
.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
}
.review-stars {
  color: var(--cw-yellow);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-quote {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.review-attr {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.why-stat .num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--cw-orange);
  letter-spacing: -0.03em;
  line-height: 1;
}
.why-stat .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
}

/* ====== Gallery strip ====== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
@media (max-width: 980px) { .gallery-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 580px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }
.gallery-tile {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cw-mist);
  position: relative;
}
.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.gallery-tile:hover img { transform: scale(1.05); }
.gallery-tile .tile-label {
  position: absolute;
  left: 12px; bottom: 12px;
  background: rgba(0,0,0,0.7);
  color: white;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
}
.gallery-tile:hover .tile-label { opacity: 1; transform: translateY(0); }

/* ====== Contact strip ====== */
.contact-strip {
  background: var(--cw-mist);
  border-top: 1px solid var(--cw-line);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-cell .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--cw-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-cell .val {
  font-size: 17px;
  font-weight: 500;
  color: var(--cw-ink);
}
.contact-cell .val a { color: var(--cw-ink); }
.contact-cell .val a:hover { color: var(--cw-red); }

/* ====== Footer ====== */
.footer {
  background: var(--cw-ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 {
  color: white;
  font-size: 13px;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-link {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}
.footer-link:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { color: white; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.footer-tag { font-size: 14px; color: rgba(255, 255, 255, 0.65); max-width: 380px; margin-top: 12px; line-height: 1.5; }
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.15s, color 0.15s;
}
.footer-socials a:hover { background: var(--cw-red); color: white; border-color: var(--cw-red); }

/* ====== Page header (sub-pages) ====== */
.page-head {
  background: var(--cw-mist);
  border-bottom: 1px solid var(--cw-line);
  padding: 56px 0 56px;
}
.crumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cw-muted);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.crumb a { color: var(--cw-red); cursor: pointer; }
.crumb a:hover { text-decoration: underline; }
.page-head h1 {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.035em;
}
.page-head .lead {
  font-size: 19px;
  color: var(--cw-ink-soft);
  margin-top: 18px;
  max-width: 720px;
}

/* ====== Service detail ====== */
.svc-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
}
@media (max-width: 980px) { .svc-layout { grid-template-columns: 1fr; } }
.svc-bullets {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
@media (max-width: 580px) { .svc-bullets { grid-template-columns: 1fr; } }
.svc-bullets li {
  padding-left: 22px;
  position: relative;
  font-size: 15px;
  color: var(--cw-ink-soft);
  line-height: 1.5;
}
.svc-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 2px;
  background: var(--cw-red);
}
.specs {
  border: 1px solid var(--cw-line);
  border-radius: var(--radius-lg);
  background: var(--cw-paper);
  overflow: hidden;
  margin-top: 32px;
}
.specs-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid var(--cw-line);
}
.specs-row:last-child { border-bottom: none; }
.specs-row .k {
  background: var(--cw-mist);
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cw-muted);
}
.specs-row .v {
  padding: 14px 18px;
  font-size: 14px;
}
.svc-side {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  align-self: start;
}
.quote-card {
  border: 1px solid var(--cw-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--cw-paper);
  box-shadow: var(--shadow-md);
}
.quote-card .price-from {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}
.quote-card .price-from .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cw-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.quote-card .price-from .val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}
.quote-card .turnaround {
  font-size: 13px;
  color: var(--cw-muted);
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--cw-line);
}
.quote-card .turnaround b { color: var(--cw-cta); font-weight: 600; }
.quote-card .actions { display: flex; flex-direction: column; gap: 10px; }
.quote-card .actions .btn { width: 100%; justify-content: center; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--cw-line);
  padding: 18px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 16px;
}
.faq-q .plus {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cw-red);
  transition: transform 0.2s;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  font-size: 14px;
  color: var(--cw-muted);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding-top: 0;
}
.faq-item.open .faq-a {
  max-height: 240px;
  padding-top: 12px;
}

/* Upload form */
.upload-page {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
}
@media (max-width: 980px) { .upload-page { grid-template-columns: 1fr; } }
.upload-form {
  background: var(--cw-paper);
  border: 1px solid var(--cw-line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.drop {
  border: 2px dashed var(--cw-line-strong);
  border-radius: var(--radius-lg);
  padding: 56px 24px;
  text-align: center;
  background: var(--cw-mist);
  transition: border-color 0.15s, background 0.15s;
}
.drop.over { border-color: var(--cw-red); background: rgba(179, 45, 0, 0.04); }
.drop h3 { font-size: 22px; margin-bottom: 10px; }
.drop p { color: var(--cw-muted); font-size: 14px; margin-bottom: 18px; }
.drop .types {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cw-muted);
  margin-top: 18px;
  letter-spacing: 0.06em;
}
.file-list { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.file-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--cw-mist);
  border-radius: var(--radius);
}
.file-row .ext {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--cw-ink);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}
.file-row .info { flex: 1; }
.file-row .name { font-weight: 500; font-size: 14px; }
.file-row .meta { font-family: var(--font-mono); font-size: 11px; color: var(--cw-muted); }
.file-row .x {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cw-muted);
}
.file-row .x:hover { background: var(--cw-line); color: var(--cw-red); }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--cw-muted);
  text-transform: uppercase;
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--cw-line-strong);
  border-radius: var(--radius);
  background: var(--cw-paper);
  color: var(--cw-ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cw-red);
  box-shadow: 0 0 0 3px rgba(179, 45, 0, 0.12);
}
.field textarea { resize: vertical; min-height: 96px; }
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 580px) { .row-2 { grid-template-columns: 1fr; } }

.upload-side h3 {
  font-size: 22px;
  margin-bottom: 16px;
}
.upload-side .tip {
  background: var(--cw-mist);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--cw-ink-soft);
  line-height: 1.5;
}
.upload-side .tip b { color: var(--cw-ink); }
.tip-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--cw-red);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
  display: block;
}

.success {
  background: linear-gradient(135deg, #f3fbfb, #e0f1f2);
  border: 1px solid var(--cw-cta-soft);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
}
.success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cw-cta);
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.success h3 { font-size: 28px; margin-bottom: 12px; }
.success p { color: var(--cw-ink-soft); margin-bottom: 22px; }
.success-ref {
  font-family: var(--font-mono);
  font-size: 13px;
  background: white;
  border: 1px solid var(--cw-line);
  border-radius: var(--radius);
  padding: 10px 14px;
  display: inline-block;
  margin-bottom: 22px;
}

/* Gallery page */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--cw-line-strong);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  background: var(--cw-paper);
}
.chip:hover { background: var(--cw-mist); }
.chip.active { background: var(--cw-ink); border-color: var(--cw-ink); color: white; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid .gallery-tile { aspect-ratio: 4 / 3; border-radius: var(--radius-lg); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* About / Why / Careers / Contact pages */
.prose {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--cw-ink-soft);
}
.prose p { margin-bottom: 18px; }
.prose h2 {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--cw-ink);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
}
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo {
  background: var(--cw-mist);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--cw-line);
  position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.placeholder-photo {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(135deg,
      var(--cw-mist) 0, var(--cw-mist) 14px,
      var(--cw-mist-2) 14px, var(--cw-mist-2) 28px);
  text-align: center;
  padding: 24px;
  gap: 8px;
}
.placeholder-photo .ph-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cw-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.placeholder-photo .ph-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cw-ink);
  font-weight: 600;
}

/* Contact map */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
@media (max-width: 880px) { .contact-layout { grid-template-columns: 1fr; } }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cw-line);
  background: var(--cw-mist);
  aspect-ratio: 4 / 5;
  position: relative;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(.9) contrast(1.04);
}
.contact-list { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  border-bottom: 1px solid var(--cw-line);
  padding-bottom: 24px;
}
.contact-item:last-child { border-bottom: none; }
.contact-item .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cw-red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-item h3 { font-size: 22px; margin-bottom: 8px; letter-spacing: -0.02em; }
.contact-item p, .contact-item a { font-size: 15px; color: var(--cw-ink-soft); line-height: 1.55; }
.contact-item a:hover { color: var(--cw-red); }

/* Pricing-from chip */
.from-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cw-mist);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--cw-ink);
  border: 1px solid var(--cw-line);
}
.from-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cw-cta); }
.from-chip.tbd .dot { background: var(--cw-muted); }

/* Page transition */
.page-enter {
  animation: pageIn 0.28s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Status banner — Why/About inline */
.callout {
  border-left: 3px solid var(--cw-red);
  padding: 14px 18px;
  background: var(--cw-mist);
  font-size: 14px;
  color: var(--cw-ink-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.callout b { color: var(--cw-ink); font-weight: 600; }

/* Hide / utility */
.sr { position: absolute; left: -9999px; }

/* CMYK bar */
.cmyk-bar {
  display: flex;
  height: 6px;
  width: 80px;
  border-radius: 3px;
  overflow: hidden;
}
.cmyk-bar span { flex: 1; }
.cmyk-bar .c { background: #00aeef; }
.cmyk-bar .m { background: #ec008c; }
.cmyk-bar .y { background: #fff200; }
.cmyk-bar .k { background: #161616; }

/* Tag */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  background: var(--cw-mist);
  color: var(--cw-ink-soft);
  border-radius: var(--radius);
  text-transform: uppercase;
}
.tag.red { background: rgba(179,45,0,0.08); color: var(--cw-red); }
.tag.teal { background: var(--cw-cta-soft); color: #066970; }

/* Career */
.career-card {
  background: var(--cw-mist);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

/* Why values */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 880px) { .values { grid-template-columns: 1fr; } }
.value {
  padding: 28px;
  border: 1px solid var(--cw-line);
  border-radius: var(--radius-lg);
  background: var(--cw-paper);
}
.value .icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cw-red);
  margin-bottom: 16px;
}
.value h4 { font-size: 20px; margin-bottom: 8px; }
.value p { font-size: 14px; color: var(--cw-muted); line-height: 1.55; }
