/* ============================================================
   Printicity One-Pager — Brutal Type
   styles-alt.css — isolated from main styles.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Mono:wght@400;500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ---- Reset ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---- Design Tokens ---- */
:root {
  --white:  #F8F6F2;
  --black:  #0A0A0A;
  --copper: #C87941;
  --muted:  #6E6B67;
  --border: #1A1A1A;

  --font-display: 'Bebas Neue', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;
  --font-body:    'DM Sans', sans-serif;
}

/* ---- Base ---- */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img, video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---- Hero ---- */
.hero {
  height: 100vh;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero__left {
  background: var(--white);
  padding: 3rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: start;
}

.hero__logo {
  display: inline-block;
}

.hero__logo-img {
  height: 4rem;
  width: auto;
  filter: invert(1);
}

.hero__headline {
  align-self: center;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--black);
  display: flex;
  flex-direction: column;
}

.hero__headline .line {
  display: block;
}

.hero__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--copper);
  text-transform: uppercase;
  align-self: end;
}

.hero__right {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

/* ---- Statement ---- */
.statement {
  background: var(--black);
  border-top: 1px solid var(--copper);
  border-bottom: 1px solid var(--copper);
  padding: 2.5rem 3rem;
  text-align: center;
}

.statement__text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  letter-spacing: 0.04em;
  color: var(--white);
}

/* ---- Services ---- */
.services {
  background: var(--white);
  padding: 5rem 3rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.services__card {
  position: relative;
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 0.3s ease;
  overflow: hidden;
}

.services__card:last-child {
  border-right: none;
}

.services__card:hover {
  border-bottom-color: var(--copper);
}

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

/* Service card image */
.services__image {
  position: relative;
  width: calc(100% + 4rem);      /* bleed past card padding */
  margin: -2.5rem -2rem 2rem;    /* pull flush to card edges, then space below */
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--border);
}

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

.services__image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 246, 242, 0.2);
  background: var(--black);
}

/* Hide placeholder when the img loads */
.services__image img:not([style*="display:none"]) + .services__image-placeholder {
  display: none;
}

.services__number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-mono);
  font-size: 5rem;
  line-height: 1;
  color: var(--black);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}

.services__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 1rem;
  position: relative;
}

.services__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
  position: relative;
}

/* ---- Work ---- */
.work {
  background: var(--white);
  padding: 5rem 3rem;
  border-top: 1px solid var(--border);
}

.work__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.work__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.work__card {
  display: flex;
  flex-direction: column;
  color: inherit;
  background: var(--white);
}

.work__image {
  background: var(--black);
  height: 260px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.work__image-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(240, 237, 232, 0.15);
  pointer-events: none;
  user-select: none;
}

.work__card--featured .work__image-text {
  font-size: 2.5rem;
}

.work__meta {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}

.work__card--featured .work__meta {
  padding: 1.5rem 1.5rem;
}

.work__tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--copper);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.work__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.work__card--featured .work__title {
  font-size: 2rem;
}

.work__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---- CTA ---- */
.cta {
  background: var(--black);
  padding: 7rem 3rem;
  text-align: center;
}

.cta__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.cta__btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  background: var(--white);
  color: var(--black);
  padding: 1rem 3rem;
  border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.cta__btn:hover {
  background: var(--copper);
  color: var(--white);
}

/* ---- Footer ---- */
.footer {
  background: var(--black);
  border-top: 1px solid var(--copper);
  padding: 2rem 3rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__logo-img {
  height: 1.5rem;
  width: auto;
  filter: invert(1);
}

.footer__tagline {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__links a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--white);
}

/* ---- Mobile (≤ 768px) ---- */
@media (max-width: 768px) {

  /* Hero: stack vertically */
  .hero {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero__left {
    padding: 2rem 1.5rem;
    min-height: 65vh;
  }

  .hero__right {
    height: 40vw;
    min-height: 200px;
    position: relative;
  }

  .hero__headline {
    font-size: clamp(3.5rem, 15vw, 6rem);
  }

  /* Statement */
  .statement {
    padding: 2rem 1.5rem;
  }

  /* Services: stack to single column */
  .services {
    padding: 3rem 1.5rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .services__card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .services__card:last-child {
    border-bottom: none;
  }

  /* Work: stack */
  .work {
    padding: 3rem 1.5rem;
  }

  .work__grid {
    grid-template-columns: 1fr;
  }

  .work__image {
    height: 200px;
  }

  /* CTA */
  .cta {
    padding: 5rem 1.5rem;
  }

  /* Footer: two rows */
  .footer {
    padding: 2rem 1.5rem;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer__links {
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
  }
}
