/* ===== Goy Marketing — neo-brutalist / editorial ===== */
:root {
  --cream: #f1ede3;
  --ink: #1a1a18;
  --acid: #a9c4cf;      /* calm dusty blue — primary accent */
  --acid-2: #8fb0bd;    /* darker hover */
  --pink: #d99c84;      /* muted terracotta — secondary accent */
  --paper: #faf7ef;
  --line: #0e0e0c;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-lg: 10px 10px 0 var(--ink);
  --maxw: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

h1, h2, h3, h4, .footer-big, .logo-mark, .hero-title { font-family: "Archivo Black", system-ui, sans-serif; }
.mono, .idx, .srv-no, .proc-no, .kicker, .ci-label, .work-year, .work-tag { font-family: "Space Mono", monospace; }

a { color: inherit; text-decoration: none; }
svg { display: block; }

/* ===== Custom cursor (desktop) ===== */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 22px; height: 22px;
  border: 2.5px solid var(--ink);
  background: var(--acid);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.18s, height 0.18s, background 0.18s;
  mix-blend-mode: normal;
}
.cursor.hover { width: 44px; height: 44px; background: var(--pink); }

/* ===== Ticker ===== */
.ticker {
  background: var(--ink);
  color: var(--acid);
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  border-bottom: 3px solid var(--ink);
}
.ticker-track { display: inline-flex; animation: ticker 22s linear infinite; }
.ticker-track span { padding-right: 20px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--acid);
  border: 3px solid var(--ink);
  font-size: 24px;
  box-shadow: 3px 3px 0 var(--ink);
}
.logo-text { font-family: "Space Grotesk"; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.logo-text em { font-style: normal; -webkit-text-stroke: 0.7px var(--ink); color: transparent; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 600; font-size: 15px; position: relative; }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2.5px; background: var(--ink); transition: width 0.25s;
}
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--ink); color: var(--acid);
  padding: 9px 16px; border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--acid);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--acid); }

.burger { display: none; flex-direction: column; gap: 6px; background: var(--acid); border: 3px solid var(--ink); padding: 9px; cursor: none; }
.burger span { width: 22px; height: 3px; background: var(--ink); transition: 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 30px;
  font-weight: 700; font-size: 16px;
  border: 3px solid var(--ink);
  cursor: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-block { width: 100%; }
.btn-fill { background: var(--acid); color: var(--ink); box-shadow: var(--shadow); }
.btn-fill:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-lg); }
.btn-line { background: transparent; box-shadow: var(--shadow); }
.btn-line:hover { background: var(--ink); color: var(--cream); transform: translate(-3px, -3px); box-shadow: var(--shadow-lg); }

/* ===== Hero ===== */
.hero { padding: 70px 32px 50px; max-width: var(--maxw); margin: 0 auto; }
.hero-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 40px; align-items: start; }
.kicker { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 22px; }
.hero-title { font-size: clamp(48px, 9vw, 130px); line-height: 0.92; letter-spacing: -0.03em; text-transform: uppercase; }
.hero-title .hl { background: var(--acid); padding: 0 8px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hero-title .outline { -webkit-text-stroke: 2px var(--ink); color: transparent; }
.hero-flag { font-family: "Space Mono", monospace; font-size: 13px; font-weight: 700; margin-top: 22px; display: inline-block; background: var(--acid); padding: 6px 12px; border: 2.5px solid var(--ink); }
.hero-sub { font-size: 19px; max-width: 460px; margin: 22px 0 36px; font-weight: 500; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-right { display: grid; gap: 16px; position: relative; padding-top: 30px; }
.sticker {
  position: absolute; top: -16px; right: 0;
  background: var(--pink); color: var(--ink);
  font-family: "Archivo Black"; font-size: 18px; line-height: 1;
  padding: 12px 14px; text-align: center;
  border: 3px solid var(--ink);
  transform: rotate(8deg);
  box-shadow: 4px 4px 0 var(--ink);
  z-index: 2;
}
.stat-block {
  background: var(--paper); border: 3px solid var(--ink);
  padding: 22px 20px; box-shadow: var(--shadow);
}
.stat-block.alt { background: var(--acid); }
.stat-num { display: block; font-family: "Archivo Black"; font-size: 52px; line-height: 1; }
.stat-label { font-family: "Space Mono", monospace; font-size: 13px; }

/* ===== Clients marquee ===== */
.clients { border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); background: var(--ink); overflow: hidden; }
.marquee { overflow: hidden; white-space: nowrap; padding: 18px 0; }
.marquee-track { display: inline-flex; animation: marquee 26s linear infinite; }
.marquee-track span {
  font-family: "Archivo Black"; font-size: 34px; color: var(--cream);
  padding: 0 40px; -webkit-text-stroke: 1px var(--cream);
}
.marquee-track span:nth-child(even) { color: transparent; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Sections ===== */
.section { padding: 90px 32px; max-width: var(--maxw); margin: 0 auto; }
.section-dark { max-width: none; background: var(--ink); color: var(--cream); }
.section-dark .section { max-width: var(--maxw); margin: 0 auto; }
.section-cream { max-width: none; background: var(--paper); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.section-dark > *, .section-cream > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

.section-head { margin-bottom: 50px; }
.idx { display: inline-block; font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.idx.light { color: var(--acid); }
.section-title { font-size: clamp(34px, 6vw, 78px); line-height: 0.95; letter-spacing: -0.02em; }
.section-note { font-family: "Space Mono", monospace; font-size: 15px; margin-top: 14px; max-width: 480px; }
.section-note.light { color: #b9b9ad; }

/* ===== Services list ===== */
.services-list { border-top: 3px solid var(--ink); }
.service-row {
  display: grid; grid-template-columns: 80px 1.1fr 2fr 40px;
  gap: 20px; align-items: center;
  padding: 26px 8px;
  border-bottom: 3px solid var(--ink);
  transition: background 0.2s, padding 0.2s;
}
.service-row:hover { background: var(--acid); padding-left: 24px; }
.srv-no { font-size: 15px; font-weight: 700; }
.srv-name { font-family: "Archivo Black"; font-size: clamp(20px, 3vw, 30px); }
.srv-desc { font-size: 15px; font-weight: 500; }
.srv-arrow { font-size: 26px; font-weight: 700; text-align: right; transition: transform 0.2s; }
.service-row:hover .srv-arrow { transform: translate(4px, -4px); }

/* ===== Work grid ===== */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card {
  background: var(--cream); color: var(--ink);
  border: 3px solid var(--cream);
  padding: 26px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.work-card:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--acid); }
.work-card.accent { background: var(--acid); }
.work-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.work-tag { font-size: 12px; font-weight: 700; background: var(--ink); color: var(--cream); padding: 5px 10px; }
.work-card.accent .work-tag { background: var(--ink); color: var(--acid); }
.work-year { font-size: 14px; font-weight: 700; }
.work-card h3 { font-size: 23px; margin-bottom: 10px; line-height: 1.05; }
.work-card > p { font-size: 15px; font-weight: 500; margin-bottom: 22px; }
.work-stats { display: flex; gap: 24px; border-top: 2.5px solid var(--ink); padding-top: 16px; }
.work-stats strong { display: block; font-family: "Archivo Black"; font-size: 28px; }
.work-stats span { font-family: "Space Mono", monospace; font-size: 12px; }

/* ===== Process ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 3px solid var(--ink); }
.proc-step { padding: 30px 24px; border-right: 3px solid var(--ink); transition: background 0.2s; }
.proc-step:last-child { border-right: 0; }
.proc-step:hover { background: var(--acid); }
.proc-no { display: block; font-size: 16px; font-weight: 700; margin-bottom: 40px; }
.proc-step h3 { font-size: 22px; margin-bottom: 12px; }
.proc-step p { font-size: 15px; font-weight: 500; }

/* ===== Studio ===== */
.studio-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center; }
.studio-lead { font-size: 20px; font-weight: 500; margin: 24px 0; }
.hl-text { background: var(--acid); padding: 0 4px; }
.checklist { list-style: none; display: grid; gap: 12px; margin-top: 10px; }
.checklist li { padding-left: 34px; position: relative; font-weight: 600; font-size: 16px; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 24px; height: 24px; background: var(--ink); color: var(--acid);
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
}
.studio-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 3px solid var(--ink); }
.num-box { padding: 28px 22px; border-right: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.num-box:nth-child(even) { border-right: 0; }
.num-box:nth-child(3), .num-box:nth-child(4) { border-bottom: 0; }
.num-box strong { display: block; font-family: "Archivo Black"; font-size: 40px; line-height: 1; }
.num-box span { font-family: "Space Mono", monospace; font-size: 12px; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-title { font-size: clamp(50px, 9vw, 100px); margin: 8px 0 18px; }
.contact-lead { font-size: 17px; font-weight: 500; max-width: 380px; margin-bottom: 30px; color: #cfcfc4; }
.contact-list { list-style: none; display: grid; gap: 18px; margin-bottom: 28px; }
.contact-list li { display: grid; gap: 4px; }
.ci-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--acid); }
.contact-list a, .contact-list span { font-size: 16px; font-weight: 500; }
.contact-list a:hover { color: var(--acid); }

.socials { display: flex; gap: 14px; flex-wrap: wrap; }
.socials a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 16px; border: 2.5px solid var(--cream);
  font-weight: 600; font-size: 14px; transition: 0.18s;
}
.socials a:hover { background: var(--acid); color: var(--ink); border-color: var(--acid); }

.contact-form {
  background: var(--cream); color: var(--ink);
  border: 3px solid var(--cream);
  padding: 30px;
  display: grid; gap: 16px;
  box-shadow: 8px 8px 0 var(--acid);
}
.field { display: grid; gap: 6px; }
.field label { font-family: "Space Mono", monospace; font-size: 13px; font-weight: 700; }
.field input, .field textarea {
  background: var(--paper);
  border: 2.5px solid var(--ink);
  padding: 13px 14px;
  color: var(--ink);
  font-family: inherit; font-size: 15px; font-weight: 500;
  resize: vertical;
  transition: box-shadow 0.15s;
}
.field input:focus, .field textarea:focus { outline: none; box-shadow: 4px 4px 0 var(--acid); }
.field input.invalid, .field textarea.invalid { border-color: var(--pink); box-shadow: 4px 4px 0 var(--pink); }
.form-note { font-family: "Space Mono", monospace; font-size: 12px; text-align: center; }
.form-success { font-weight: 700; text-align: center; background: var(--acid); padding: 10px; border: 2.5px solid var(--ink); }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: var(--cream); padding: 50px 32px 28px; border-top: 3px solid var(--acid); }
.footer-big { font-size: clamp(40px, 13vw, 180px); line-height: 0.9; letter-spacing: -0.03em; color: transparent; -webkit-text-stroke: 1.5px var(--cream); text-align: center; margin-bottom: 40px; }
.footer-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: var(--maxw); margin: 0 auto 36px; }
.footer-col h4 { font-size: 15px; margin-bottom: 16px; color: var(--acid); }
.footer-col a, .footer-col span { display: block; font-size: 15px; margin-bottom: 10px; color: #cfcfc4; transition: color 0.18s; }
.footer-col a:hover { color: var(--acid); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; max-width: var(--maxw); margin: 0 auto; padding-top: 24px; border-top: 2px solid #2a2a26; font-family: "Space Mono", monospace; font-size: 12px; color: #8f8f86; }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .hero-grid, .studio-grid, .contact-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .proc-step:nth-child(2) { border-right: 0; }
  .proc-step:nth-child(1), .proc-step:nth-child(2) { border-bottom: 3px solid var(--ink); }
  .hero-right { padding-top: 50px; }
}
@media (max-width: 680px) {
  body { cursor: auto; }
  .cursor { display: none; }
  .nav {
    position: fixed; inset: 0 0 auto 0; top: 78px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 3px solid var(--ink);
    padding: 0;
    transform: translateY(-130%); transition: transform 0.35s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 18px 32px; border-bottom: 2px solid var(--ink); }
  .nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { box-shadow: none; margin: 0; }
  .burger { display: flex; cursor: pointer; }
  .btn { cursor: pointer; }
  .work-grid, .process-grid, .studio-numbers, .footer-inner { grid-template-columns: 1fr; }
  .proc-step { border-right: 0 !important; border-bottom: 3px solid var(--ink); }
  .proc-step:last-child { border-bottom: 0; }
  .num-box { border-right: 0 !important; border-bottom: 3px solid var(--ink) !important; }
  .num-box:last-child { border-bottom: 0 !important; }
  .service-row { grid-template-columns: 50px 1fr; grid-template-areas: "no name" "desc desc"; row-gap: 8px; }
  .srv-no { grid-area: no; } .srv-name { grid-area: name; } .srv-desc { grid-area: desc; }
  .srv-arrow { display: none; }
  .section { padding: 60px 22px; }
  .hero { padding: 50px 22px 40px; }
}
