:root {
  --pink: #f29acb;
  --pink-soft: #ffd7ea;
  --orange: #ff4f1f;
  --ink: #241719;
  --paper: #fff7ef;
  --mint: #b9f2d2;
  --blue: #5b70ff;
  --line: rgba(36, 23, 25, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 247, 239, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  width: 164px;
  height: 48px;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 34px);
  font-size: 0.92rem;
  font-weight: 750;
}

nav a {
  border-bottom: 2px solid transparent;
  padding: 8px 0;
}

nav a:hover {
  border-color: var(--orange);
}

.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: stretch;
  gap: 0;
  background: linear-gradient(90deg, var(--paper) 0 49%, var(--pink) 49% 100%);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  align-self: center;
  padding: clamp(42px, 7vw, 96px) clamp(20px, 5vw, 74px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 9vw, 8.4rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 5.8vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow),
.split > div > p,
.contact p {
  max-width: 620px;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--ink);
}

.button.primary,
button {
  background: var(--orange);
}

.button.secondary {
  background: var(--pink-soft);
}

.button:hover,
button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.hero-art {
  min-height: 560px;
  overflow: hidden;
  border-left: 1px solid var(--ink);
  background: var(--pink);
}

.hero-art img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 52% center;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--ink);
  background: var(--orange);
  color: var(--paper);
}

.intro-band div {
  min-height: 150px;
  padding: 26px clamp(18px, 3vw, 42px);
  border-right: 1px solid rgba(255, 247, 239, 0.48);
}

.intro-band div:last-child {
  border-right: 0;
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.intro-band span {
  max-width: 330px;
  line-height: 1.42;
}

.section {
  padding: clamp(58px, 8vw, 116px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article {
  min-height: 230px;
  padding: 24px;
  border: 2px solid var(--ink);
  background: #ffffff;
  box-shadow: 6px 6px 0 var(--pink);
}

.service-grid span {
  display: block;
  margin-bottom: 44px;
  color: var(--orange);
  font-weight: 950;
}

.service-grid p,
.work-card p,
.process span,
.trust-list p,
footer p {
  line-height: 1.45;
}

.portfolio {
  background: var(--pink-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(120px, 220px) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: start;
  margin-bottom: 34px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.work-card {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.work-card.featured {
  grid-column: span 2;
}

.work-card > div:last-child {
  padding: 20px;
}

.work-card p {
  margin-bottom: 10px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.mockup {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}

.print-pack {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  padding: 22px;
  background: var(--pink);
}

.print-pack span {
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--orange);
  font-size: clamp(1.6rem, 4vw, 4.2rem);
  font-weight: 950;
  line-height: 0.9;
}

.print-pack span:first-child {
  grid-row: span 2;
  background: var(--orange);
  color: var(--pink-soft);
}

.poster {
  background:
    linear-gradient(135deg, transparent 0 36%, var(--orange) 36% 52%, transparent 52%),
    repeating-linear-gradient(90deg, var(--paper) 0 18px, var(--mint) 18px 36px);
}

.cards {
  background: var(--mint);
}

.cards::before,
.cards::after,
.digital::before,
.digital::after {
  position: absolute;
  content: "";
  border: 2px solid var(--ink);
  background: var(--paper);
}

.cards::before {
  inset: 58px 34px auto 52px;
  height: 112px;
  rotate: -7deg;
  box-shadow: 8px 8px 0 var(--orange);
}

.cards::after {
  inset: 132px 48px auto 28px;
  height: 112px;
  rotate: 8deg;
  box-shadow: 8px 8px 0 var(--blue);
}

.digital {
  background: var(--orange);
}

.digital::before {
  inset: 36px 30px 88px;
  background: var(--pink-soft);
}

.digital::after {
  width: 54%;
  height: 34px;
  right: 30px;
  bottom: 36px;
  background: var(--mint);
}

.process {
  background: var(--paper);
}

.process ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 2px solid var(--ink);
  background: var(--ink);
}

.process li {
  min-height: 230px;
  padding: 24px;
  background: #ffffff;
}

.process li::before {
  display: block;
  margin-bottom: 50px;
  color: var(--orange);
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
  content: counter(list-item, decimal-leading-zero);
}

.process strong,
.process span {
  display: block;
}

.process strong {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.trust {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 88px);
  background: var(--ink);
  color: var(--paper);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-list p {
  min-height: 138px;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(255, 247, 239, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 0.78fr);
  gap: clamp(28px, 7vw, 98px);
  padding: clamp(58px, 8vw, 116px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 79, 31, 0.12) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(255, 79, 31, 0.12) 0 1px, transparent 1px 100%),
    var(--paper);
  background-size: 42px 42px;
}

form {
  display: grid;
  gap: 14px;
  align-self: start;
  padding: 20px;
  border: 2px solid var(--ink);
  background: var(--pink);
  box-shadow: 8px 8px 0 var(--orange);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

input {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  padding: 12px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: var(--orange);
  color: var(--paper);
}

footer img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--paper);
}

footer p {
  max-width: 520px;
  margin: 0;
  text-align: right;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .trust,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    background: var(--paper);
  }

  .hero-art {
    min-height: 420px;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .hero-art img {
    min-height: 420px;
  }

  .intro-band,
  .process ol {
    grid-template-columns: 1fr;
  }

  .intro-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 247, 239, 0.48);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.84rem;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.8rem);
  }

  .service-grid,
  .section-heading,
  .portfolio-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .work-card.featured {
    grid-column: span 1;
  }

  .work-card,
  .service-grid article,
  .process li {
    min-height: auto;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  footer p {
    text-align: left;
  }
}
