/* Kan Screenprinters — redesign prototype
   Brand: CMYK accents on light ground, professional service positioning */

:root {
  --c-cyan: #00c8e8;
  --c-magenta: #e6007e;
  --c-yellow: #f5e000;
  --c-black: #0c0c0c;
  --c-white: #fafafa;
  --c-paper: #ffffff;
  --c-ink: #1a1a1a;
  --c-ink-muted: #5c5c5c;
  --c-border: rgba(12, 12, 12, 0.08);
  --c-glow-cyan: rgba(0, 200, 232, 0.25);
  --c-glow-magenta: rgba(230, 0, 126, 0.2);
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 4px 24px rgba(12, 12, 12, 0.06);
  --shadow-lift: 0 12px 40px rgba(12, 12, 12, 0.1);
  --space-section: clamp(4rem, 10vw, 7rem);
  --max-read: 38rem;
  --max-content: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--c-magenta);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--c-cyan);
}

/* —— Top service strip —— */
.service-strip {
  background: var(--c-black);
  color: var(--c-paper);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.5rem 1rem;
  overflow: hidden;
}

.service-strip__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  text-align: center;
}

.service-strip span {
  white-space: nowrap;
}

.service-strip .t-cyan {
  color: var(--c-cyan);
}
.service-strip .t-magenta {
  color: #ff4db8;
}
.service-strip .t-yellow {
  color: var(--c-yellow);
}
.service-strip .t-white {
  color: #e8e8e8;
}
.service-strip .t-blue {
  color: #7ec8ff;
}
.service-strip .t-pink {
  color: #ffb8e0;
}
.service-strip .t-lime {
  color: #c8f070;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}

.site-header__bar {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 52px;
  height: auto;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__name {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand__tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--c-ink-muted);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-ink);
  text-decoration: none;
}

.nav-desktop a:hover {
  color: var(--c-magenta);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--c-magenta), #ff2d78);
  color: #fff;
  box-shadow: 0 4px 18px rgba(230, 0, 126, 0.35);
}

.btn--primary:hover {
  color: #fff;
  box-shadow: 0 6px 24px rgba(230, 0, 126, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1px solid var(--c-border);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  background: var(--c-white);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--c-black);
  border-radius: 1px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1.25rem 1rem;
  border-bottom: 1px solid var(--c-border);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  font-weight: 600;
  padding: 0.65rem 0;
  color: var(--c-ink);
  text-decoration: none;
}

.nav-mobile .btn--primary {
  margin-top: 0.5rem;
  text-align: center;
}

@media (min-width: 880px) {
  .nav-desktop {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .nav-mobile {
    display: none !important;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4rem) 1.25rem var(--space-section);
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 15% 20%, var(--c-glow-cyan), transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 15%, var(--c-glow-magenta), transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 85%, rgba(245, 224, 0, 0.15), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12, 12, 12, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 12, 12, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr 1.05fr;
  }
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-magenta);
  margin-bottom: 0.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--c-black);
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  color: var(--c-ink-muted);
  max-width: var(--max-read);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--c-border);
}

.hero__trust-item {
  font-size: 0.8125rem;
}

.hero__trust-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-ink-muted);
  font-weight: 600;
}

.hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero__visual-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.reg-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

/* —— Section titles —— */
.section {
  padding: var(--space-section) 1.25rem;
}

.section--muted {
  background: var(--c-white);
}

.section__head {
  max-width: var(--max-content);
  margin: 0 auto 2.75rem;
  text-align: center;
}

.section__head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section__head p {
  margin: 0 auto;
  max-width: 40rem;
  color: var(--c-ink-muted);
}

/* —— Value pillars —— */
.pillars {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .pillars {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pillar {
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  background: var(--c-paper);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pillar:hover {
  border-color: rgba(0, 200, 232, 0.35);
  box-shadow: var(--shadow-soft);
}

.pillar__accent {
  width: 4px;
  height: 36px;
  border-radius: 2px;
  margin-bottom: 0.85rem;
}

.pillar__accent--c {
  background: var(--c-cyan);
}
.pillar__accent--m {
  background: var(--c-magenta);
}
.pillar__accent--y {
  background: var(--c-yellow);
}
.pillar__accent--k {
  background: var(--c-black);
}

.pillar h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 800;
}

.pillar p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--c-ink-muted);
}

/* —— Process —— */
.process {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .process {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
}

.process-step__num {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  background: var(--c-black);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 200, 232, 0.2);
}

.process-step:nth-child(2) .process-step__num {
  box-shadow: 0 0 0 4px rgba(230, 0, 126, 0.2);
}
.process-step:nth-child(3) .process-step__num {
  box-shadow: 0 0 0 4px rgba(245, 224, 0, 0.35);
}
.process-step:nth-child(4) .process-step__num {
  box-shadow: 0 0 0 4px rgba(12, 12, 12, 0.15);
}

.process-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
}

.process-step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--c-ink-muted);
}

/* —— Services —— */
.services-grid {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  background: var(--c-paper);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.service-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.service-card .chip {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
}

.service-card ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--c-ink-muted);
  flex-grow: 1;
}

.service-card ul li {
  margin-bottom: 0.35rem;
}

.service-card footer {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-magenta);
}

.chip--c {
  background: rgba(0, 200, 232, 0.18);
  color: #0088a8;
}
.chip--m {
  background: rgba(230, 0, 126, 0.12);
  color: #b80062;
}
.chip--y {
  background: rgba(245, 224, 0, 0.35);
  color: #665f00;
}
.chip--k {
  background: rgba(12, 12, 12, 0.08);
  color: var(--c-black);
}

/* —— About split —— */
.about-split {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
  }
}

.about-split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.about-split__img img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}

.about-split__copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
  font-weight: 800;
}

.about-split__copy p {
  color: var(--c-ink-muted);
  margin: 0 0 1rem;
}

.tagline-quote {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--c-magenta);
  background: rgba(230, 0, 126, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--c-black);
}

/* —— Gallery —— */
.gallery {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery__cell {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery__cell--wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

@media (min-width: 700px) {
  .gallery__cell--hero {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }
}

.gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__cell:hover img {
  transform: scale(1.04);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 12, 0.65), transparent 45%);
  opacity: 0;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.gallery__cell:hover .gallery__overlay {
  opacity: 1;
}

/* —— Contact —— */
.contact-block {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-block {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-cards {
  display: grid;
  gap: 0.85rem;
}

.contact-card {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  background: var(--c-paper);
}

.contact-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-ink-muted);
}

.contact-card p,
.contact-card a {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-ink);
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--c-magenta);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  min-height: 280px;
  background: var(--c-white);
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

.quote-cta-box {
  margin-top: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--c-black) 0%, #1a2530 100%);
  color: #fff;
}

.quote-cta-box p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  opacity: 0.92;
}

.quote-cta-box .btn--primary {
  width: 100%;
}

.quote-cta-box a:not(.btn) {
  color: var(--c-cyan);
}

/* —— Footer —— */
.site-footer {
  padding: 2.5rem 1.25rem;
  border-top: 1px solid var(--c-border);
  background: var(--c-black);
  color: #aaa;
  font-size: 0.875rem;
}

.site-footer__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 720px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }
}

.site-footer strong {
  color: #fff;
}

.site-footer a {
  color: var(--c-cyan);
  text-decoration: none;
}

/* —— Skip link —— */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--c-magenta);
  color: #fff;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}
