@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #101010;
  --paper: #f5f1e8;
  --white: #fffdf8;
  --blue: #3154e8;
  --coral: #ff604a;
  --line: rgba(16, 16, 16, .16);
  --muted: #686762;
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scrollbar-color: var(--coral) var(--ink);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  min-height: 48px;
  background: var(--coral);
  border: 3px solid var(--ink);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

::-webkit-scrollbar-corner {
  background: var(--ink);
}

body {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
main, header, footer, section, nav, form, article, div { min-width: 0; }
main, footer { max-width: 100%; overflow-x: hidden; overflow-x: clip; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", Arial, sans-serif; line-height: .98; }
h1, h2 { letter-spacing: -.065em; }
h1 { font-size: clamp(4rem, 8.5vw, 8.5rem); margin: 20px 0 28px; }
h2 { font-size: clamp(3rem, 6vw, 6rem); margin: 14px 0 0; }
h1 em, h2 em { color: var(--blue); font-family: Georgia, serif; font-weight: 400; }

.site-header {
  width: 100%;
  max-width: 100%;
  height: 82px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 232, .9);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 30;
}
.logo { display: flex; align-items: center; gap: 11px; font: 800 .9rem/1 "Manrope"; letter-spacing: .12em; }
.logo-mark { display: grid; place-items: center; width: 34px; height: 34px; color: var(--paper); background: var(--ink); border-radius: 50%; font: 800 1.2rem/1 Georgia; }
.site-nav { display: flex; align-items: center; gap: clamp(.8rem, 1.6vw, 2rem); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.site-nav a:not(.nav-cta) { position: relative; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px; background: var(--blue); transition: right .25s; }
.site-nav a:hover::after { right: 0; }
.nav-cta { padding: 12px 18px; color: var(--paper); background: var(--ink); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: var(--ink); margin: 6px 0; transition: .2s; }

.hero { min-height: calc(100vh - 82px); display: grid; grid-template-columns: 47% 53%; border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-copy { padding: clamp(50px, 8vw, 120px) 5vw 45px; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0; text-transform: uppercase; font-size: .72rem; font-weight: 800; letter-spacing: .18em; display: flex; align-items: center; gap: 12px; }
.eyebrow > span { width: 34px; height: 2px; background: var(--coral); }
.eyebrow.light { color: var(--paper); }
.hero-text { max-width: 480px; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.35rem); }
.button-row { display: flex; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 36px; padding: 17px 24px; font-weight: 800; font-size: .77rem; text-transform: uppercase; letter-spacing: .1em; border: 1px solid var(--ink); transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-3px); }
.button-dark { color: var(--paper); background: var(--ink); }
.button-light { background: transparent; }
.button-light:hover { color: var(--paper); background: var(--ink); }
.hero-proof { display: flex; gap: 32px; margin-top: auto; padding-top: 55px; }
.hero-proof div { display: flex; align-items: flex-start; gap: 9px; }
.hero-proof strong { color: var(--coral); font-size: .7rem; }
.hero-proof span { font-size: .72rem; line-height: 1.25; text-transform: uppercase; letter-spacing: .1em; }
.hero-visual { position: relative; background: var(--blue); min-height: 650px; overflow: hidden; }
.hero-visual::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.15); pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-stamp { position: absolute; left: 6%; bottom: 7%; width: 112px; height: 112px; border-radius: 50%; display: grid; place-content: center; text-align: center; background: var(--coral); color: var(--ink); transform: rotate(-8deg); font: 800 .86rem/1.15 "Manrope"; letter-spacing: .12em; }
.vertical-note { position: absolute; right: 18px; top: 30px; writing-mode: vertical-rl; color: var(--white); font-size: .62rem; letter-spacing: .22em; font-weight: 800; }

.service-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-bottom: 1px solid var(--line); }
.service-strip article { min-height: 210px; padding: 35px 28px; display: flex; gap: 18px; border-right: 1px solid var(--line); }
.service-strip article:last-child { border: 0; }
.service-number { color: var(--coral); font-size: .7rem; font-weight: 800; }
.service-strip h3 { margin: 4px 0 18px; font-size: 1.3rem; }
.service-strip p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }

.section { padding: clamp(80px, 10vw, 150px) 5vw; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 50px; margin-bottom: 70px; }
.section-heading > p { max-width: 420px; margin-bottom: 10px; color: var(--muted); font-size: 1.05rem; }
.section-heading.compact { margin-bottom: 55px; }
.portfolio-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 25px; }
.project { min-height: 450px; position: relative; overflow: hidden; padding: 36px; display: flex; align-items: center; justify-content: center; }
.project-apparel { background: #d9d2c6; min-height: 620px; }
.project-cards { background: var(--blue); }
.project-stickers { background: var(--ink); }
.project-flyer { background: #d9d2c6; min-height: 620px; }
.project-meta { position: absolute; inset: auto 30px 28px; padding: 16px; background: var(--paper); display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.project-meta span { color: var(--muted); text-transform: uppercase; font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.project-meta strong { font-size: .82rem; }
.shirt-mockup { width: 58%; aspect-ratio: .9; background: var(--ink); clip-path: polygon(27% 0, 39% 8%, 61% 8%, 73% 0, 100% 18%, 85% 40%, 76% 34%, 76% 100%, 24% 100%, 24% 34%, 15% 40%, 0 18%); display: grid; place-items: center; filter: drop-shadow(12px 18px 14px rgba(0,0,0,.2)); }
.shirt-mockup span { color: var(--coral); font: 800 3rem/1 Georgia; border: 2px solid var(--coral); border-radius: 50%; padding: 15px; }
.card-stack { width: 70%; height: 220px; position: relative; transform: rotate(-7deg); }
.card-stack span { position: absolute; inset: 10px 0 auto; height: 140px; background: var(--paper); padding: 25px; color: var(--ink); font: 800 .7rem/1 "Manrope"; letter-spacing: .12em; box-shadow: 10px 15px 20px rgba(0,0,0,.18); }
.card-stack span:last-child { background: var(--coral); transform: translate(45px, 70px) rotate(13deg); display: flex; align-items: flex-end; }
.sticker-sheet { display: flex; flex-wrap: wrap; gap: 20px; max-width: 280px; justify-content: center; transform: rotate(-8deg); }
.sticker-sheet i { width: 100px; height: 100px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); color: var(--blue); font: 800 2rem/1 "Manrope"; box-shadow: 0 8px 0 var(--coral); }
.sticker-sheet i:nth-child(2) { background: var(--coral); color: var(--ink); font-size: 1.1rem; }
.flyer-mockup { width: min(330px, 75%); aspect-ratio: .7; padding: 45px 32px; background: var(--coral); transform: rotate(6deg); box-shadow: 16px 22px 0 var(--blue); display: flex; flex-direction: column; justify-content: center; }
.flyer-mockup small { letter-spacing: .2em; font-weight: 800; }
.flyer-mockup b { font: 800 clamp(3rem, 6vw, 5rem)/.9 "Manrope"; letter-spacing: -.09em; margin: 30px 0; }
.flyer-mockup span { border-top: 2px solid; padding-top: 14px; }

.about { background: var(--ink); color: var(--paper); display: grid; grid-template-columns: 45% 55%; align-items: center; overflow: hidden; }
.about-art { min-height: 600px; position: relative; display: grid; place-items: center; }
.giant-c { color: var(--blue); font: 800 clamp(18rem, 32vw, 34rem)/1 Georgia; }
.circle-copy { position: absolute; width: 280px; height: 280px; display: grid; place-items: center; border: 2px solid var(--coral); border-radius: 50%; color: var(--coral); font-size: .65rem; letter-spacing: .18em; text-align: center; padding: 60px; transform: rotate(-18deg); }
.about-copy { padding-left: 8vw; max-width: 760px; }
.about-copy h2 em { color: var(--coral); }
.about-copy > p:not(.eyebrow) { max-width: 590px; color: #b9b7b0; font-size: 1.05rem; margin: 40px 0; }
.mission { border-top: 1px solid #444; padding-top: 25px; display: grid; grid-template-columns: 100px 1fr; gap: 30px; }
.mission span { color: var(--coral); text-transform: uppercase; font-size: .66rem; letter-spacing: .15em; font-weight: 800; }
.mission p { margin: 0; max-width: 400px; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line); }
.benefit-grid article { padding: 38px 28px; min-height: 310px; border-right: 1px solid var(--line); }
.benefit-grid article:last-child { border: 0; }
.benefit-grid article > span { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 65px; background: var(--blue); color: var(--paper); font-size: 1.3rem; border-radius: 50%; }
.benefit-grid article:nth-child(even) > span { background: var(--coral); color: var(--ink); }
.benefit-grid h3 { font-size: 1.18rem; margin-bottom: 18px; }
.benefit-grid p { color: var(--muted); font-size: .88rem; }

.products { background: #e8e2d6; }
.product-list { border-top: 1px solid var(--ink); }
.product-list article { display: grid; grid-template-columns: 70px minmax(0, 1fr) minmax(0, 1fr) 40px; align-items: center; gap: 25px; padding: 28px 10px; border-bottom: 1px solid var(--line); transition: padding .25s, background .25s; }
.product-list article:hover { padding-left: 25px; padding-right: 25px; background: var(--paper); }
.product-list article > span { color: var(--coral); font-size: .7rem; font-weight: 800; }
.product-list h3 { margin: 0; font-size: clamp(1.25rem, 2vw, 1.9rem); }
.product-list p { margin: 0; color: var(--muted); }
.product-list b { font-size: 1.4rem; }

.process { background: var(--blue); color: var(--paper); display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: 10vw; }
.process-intro h2 em { color: var(--coral); }
.process-intro > p:last-child { margin-top: 35px; color: #d5dcff; }
.process-steps article { display: grid; grid-template-columns: 90px 1fr; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.25); }
.process-steps article:last-child { border-bottom: 1px solid rgba(255,255,255,.25); }
.process-steps article > span { color: var(--coral); font-size: .72rem; font-weight: 800; }
.process-steps h3 { margin: 0 0 12px; font-size: 1.5rem; }
.process-steps p { color: #d5dcff; margin: 0; font-size: .92rem; }

.quote { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 9vw; }
.quote-intro > p:not(.eyebrow) { color: var(--muted); max-width: 430px; margin: 35px 0; }
.quote-intro > a { border-bottom: 1px solid; padding-bottom: 4px; font-weight: 700; font-size: .88rem; }
.quote-form { padding: 40px; background: var(--white); border: 1px solid var(--line); }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px; }
label { display: block; margin-bottom: 22px; text-transform: uppercase; letter-spacing: .1em; font-size: .65rem; font-weight: 800; }
input, select, textarea { display: block; width: 100%; border: 0; border-bottom: 1px solid #aaa69e; border-radius: 0; padding: 12px 0; background: transparent; color: var(--ink); font: 400 .95rem/1.4 "DM Sans"; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); }
textarea { resize: vertical; }
.file-field input { position: absolute; opacity: 0; pointer-events: none; }
.file-field span { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid #aaa69e; color: #77736c; text-transform: none; letter-spacing: 0; font-size: .92rem; font-weight: 400; cursor: pointer; }
.file-field b { color: var(--blue); font-size: 1.1rem; }
.submit-button { width: 100%; border: 0; cursor: pointer; margin-top: 10px; }
.form-note { color: var(--muted); font-size: .7rem; text-align: center; margin: 12px 0 0; }

.cta-banner { text-align: center; padding: clamp(80px, 11vw, 150px) 5vw; background: var(--coral); }
.cta-banner > p { text-transform: uppercase; font-size: .72rem; letter-spacing: .18em; font-weight: 800; }
.cta-banner h2 { margin: 25px auto 45px; max-width: 1000px; }
.cta-banner h2 em { color: var(--ink); }
.button-coral { background: var(--ink); color: var(--paper); }

footer { background: var(--ink); color: var(--paper); padding: 70px 5vw 25px; }
.footer-top { display: grid; grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr)); gap: 55px; padding-bottom: 70px; }
.logo-light .logo-mark { background: var(--paper); color: var(--ink); }
.footer-brand p { margin: 30px 0 0; color: var(--coral); font: italic 2rem/1 Georgia; }
.footer-top h3 { color: #777; text-transform: uppercase; font: 800 .65rem/1 "DM Sans"; letter-spacing: .16em; margin: 10px 0 24px; }
.footer-top > div:not(.footer-brand) a, .footer-top > div:not(.footer-brand) p { display: block; margin: 0 0 11px; color: #c9c6bd; font-size: .85rem; }
.footer-top a { overflow-wrap: anywhere; }
.footer-top a:hover { color: var(--coral) !important; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid #333; color: #777; text-transform: uppercase; letter-spacing: .1em; font-size: .6rem; }

@media (max-width: 1000px) {
  .site-nav { gap: 1rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 700px; }
  .hero-visual { min-height: 70vw; }
  .service-strip, .benefit-grid { grid-template-columns: 1fr 1fr; }
  .service-strip article:nth-child(2), .benefit-grid article:nth-child(2) { border-right: 0; }
  .service-strip article { border-bottom: 1px solid var(--line); }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .project, .project-apparel, .project-flyer { min-height: 480px; }
  .about { grid-template-columns: 1fr; }
  .about-art { min-height: 420px; }
  .about-copy { padding: 30px 5vw 100px; }
  .quote { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .site-header { height: 70px; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; top: 69px; left: 0; right: 0; width: 100%; max-width: 100%; padding: 35px 5vw; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; transform: translateY(-140%); transition: transform .25s; z-index: -1; overflow: hidden; }
  .site-nav.open { transform: translateY(0); }
  .hero-copy { min-height: 650px; padding-top: 80px; }
  .hero-proof { gap: 15px; }
  .hero-visual { min-height: 105vw; }
  .service-strip, .benefit-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .service-strip article, .benefit-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding-left: 6vw; padding-right: 6vw; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 35px; }
  .project, .project-apparel, .project-flyer { min-height: 450px; }
  .portfolio-grid, .project, .about, .about-art, .cta-banner { overflow-x: hidden; overflow-x: clip; }
  .card-stack { max-width: calc(100% - 45px); }
  .flyer-mockup { max-width: calc(100% - 24px); }
  .about-art { min-height: 360px; }
  .giant-c { font-size: 20rem; }
  .circle-copy { width: 220px; height: 220px; }
  .product-list article { grid-template-columns: 35px 1fr 25px; gap: 15px; }
  .product-list article p { grid-column: 2 / 4; }
  .process { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 28px 22px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 20px; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
}

@media (max-width: 430px) {
  h1 { font-size: clamp(3.1rem, 17vw, 3.7rem); }
  h2 { font-size: clamp(2.5rem, 13vw, 2.9rem); }
  .logo { font-size: .76rem; }
  .button-row { flex-direction: column; }
  .button { width: 100%; }
  .button { gap: 18px; padding-inline: 18px; }
  .hero-proof { display: none; }
  .hero-copy { min-height: 570px; }
  .service-strip { grid-template-columns: 1fr; }
  .project, .project-apparel, .project-flyer { min-height: 400px; padding: 20px; }
  .project-meta { inset: auto 16px 16px; display: block; }
  .project-meta span { display: block; margin-bottom: 5px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .process-steps article { grid-template-columns: 55px 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 350px) {
  .site-header { padding-inline: 15px; }
  .logo { gap: 8px; font-size: .68rem; letter-spacing: .08em; }
  .logo-mark { width: 30px; height: 30px; }
  .section { padding-left: 18px; padding-right: 18px; }
  .hero-copy { padding-left: 18px; padding-right: 18px; }
  .project-meta { overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
