:root {
  --paper: #f5f0e6;
  --paper-light: #fffdf8;
  --ink: #171717;
  --muted: #68645d;
  --red: #ed4b36;
  --red-dark: #b72f21;
  --yellow: #f6c84c;
  --green: #27745b;
  --line: #d8d0c3;
  --shadow: 8px 8px 0 var(--ink);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(23, 23, 23, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 28px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 2px solid var(--ink);
  background: rgba(245, 240, 230, .94);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.04em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 13px;
  transform: rotate(-7deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #fff;
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  display: grid;
  min-height: calc(100vh - 76px);
  padding-block: 70px;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: clamp(40px, 7vw, 90px);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 7px 13px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(50px, 8vw, 104px);
  letter-spacing: -.075em;
}

h1 .scribble,
.accent {
  position: relative;
  color: var(--red);
  font-style: italic;
}

h1 .scribble::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 4px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6C48 1 72 9 108 5s57-3 90 1' fill='none' stroke='%23ed4b36' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.lead {
  max-width: 680px;
  margin: 0;
  color: #3f3c37;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.button-row {
  display: flex;
  margin-top: 32px;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 20px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 13px;
  box-shadow: 5px 5px 0 var(--red);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

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

.button.secondary {
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 5px 5px 0 var(--yellow);
}

.character-card {
  position: relative;
  min-height: 510px;
  padding: 32px;
  overflow: hidden;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 42% 58% 39% 61% / 49% 41% 59% 51%;
  box-shadow: 14px 14px 0 var(--ink);
  transform: rotate(2deg);
}

.character {
  position: absolute;
  right: 11%;
  bottom: -5%;
  left: 11%;
  height: 76%;
}

.character-head {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 150px;
  height: 175px;
  background: #d69b71;
  border: 3px solid var(--ink);
  border-radius: 46% 46% 48% 48%;
  transform: translateX(-50%);
}

.character-hair {
  position: absolute;
  z-index: 3;
  top: -18px;
  left: 50%;
  width: 165px;
  height: 82px;
  background: var(--ink);
  border-radius: 60% 48% 38% 35%;
  transform: translateX(-50%) rotate(-4deg);
}

.character-hair::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -47px;
  width: 27px;
  height: 90px;
  background: var(--ink);
  border-radius: 0 0 20px 20px;
  transform: rotate(-7deg);
}

.character-eye {
  position: absolute;
  z-index: 4;
  top: 83px;
  width: 15px;
  height: 4px;
  background: var(--ink);
  border-radius: 50%;
}

.character-eye.left {
  left: 38px;
  transform: rotate(10deg);
}

.character-eye.right {
  right: 38px;
  transform: rotate(-10deg);
}

.character-mouth {
  position: absolute;
  z-index: 4;
  bottom: 38px;
  left: 50%;
  width: 45px;
  height: 17px;
  border-top: 4px solid var(--ink);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-4deg);
}

.character-body {
  position: absolute;
  right: 5%;
  bottom: 0;
  left: 5%;
  height: 62%;
  background: var(--red);
  border: 3px solid var(--ink);
  border-radius: 80px 80px 18px 18px;
}

.character-body::after {
  content: "KERJA \A LAGI?";
  position: absolute;
  top: 38%;
  left: 50%;
  color: #fff;
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 900;
  line-height: .9;
  text-align: center;
  white-space: pre;
  transform: translate(-50%, -50%) rotate(-4deg);
}

.complaint-bubble {
  position: absolute;
  z-index: 7;
  top: 35px;
  right: 22px;
  max-width: 210px;
  padding: 16px 18px;
  background: var(--paper-light);
  border: 3px solid var(--ink);
  border-radius: 20px 20px 4px 20px;
  box-shadow: 6px 6px 0 var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  transform: rotate(3deg);
}

.tape {
  position: absolute;
  z-index: 8;
  top: 18px;
  left: 38px;
  width: 90px;
  height: 25px;
  background: rgba(255, 253, 248, .65);
  transform: rotate(-7deg);
}

.ticker {
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-block: 2px solid var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  padding: 14px 0;
  gap: 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: ticker 24s linear infinite;
}

.ticker-track span::before {
  content: "✦";
  margin-right: 28px;
  color: var(--yellow);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding-block: 90px;
}

.section.alt {
  background: var(--paper-light);
  border-block: 2px solid var(--ink);
}

.section-head {
  display: flex;
  margin-bottom: 38px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-head h2,
.page-hero h1 {
  max-width: 800px;
  margin-bottom: 0;
  font-size: clamp(38px, 6vw, 72px);
  letter-spacing: -.06em;
}

.section-head p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.story-card,
.value-card,
.contact-card {
  position: relative;
  padding: 28px;
  background: var(--paper-light);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--ink);
}

.story-card:nth-child(2n) {
  transform: rotate(1deg);
}

.story-card:nth-child(3n) {
  transform: rotate(-1deg);
}

.card-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  place-items: center;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.story-card h3,
.value-card h3,
.contact-card h2 {
  margin-bottom: 12px;
  font-size: 25px;
  letter-spacing: -.035em;
}

.story-card p,
.value-card p {
  margin: 0;
  color: var(--muted);
}

.quote-section {
  padding-block: 100px;
  color: #fff;
  background: var(--red);
  border-block: 3px solid var(--ink);
}

.big-quote {
  max-width: 950px;
  margin: 0 auto;
  font-size: clamp(34px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.08;
  text-align: center;
}

.big-quote footer {
  margin-top: 24px;
  color: #ffe8b2;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.page-hero {
  padding-block: 90px 65px;
}

.page-hero .lead {
  margin-top: 24px;
}

.two-column {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(32px, 7vw, 90px);
}

.sticky-note {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 34px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.sticky-note strong {
  display: block;
  margin-bottom: 15px;
  font-size: 26px;
  line-height: 1.15;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin: 55px 0 18px;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -.045em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  color: #45413b;
  font-size: 17px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  padding: 24px;
  background: var(--paper-light);
  border: 2px solid var(--ink);
  border-radius: 18px;
  grid-template-columns: 90px 1fr;
  gap: 20px;
}

.timeline-item time {
  color: var(--red-dark);
  font-weight: 900;
}

.timeline-item h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.filter-list {
  display: flex;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  padding: 8px 14px;
  color: var(--ink);
  background: var(--paper-light);
  border: 2px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.filter-button.active,
.filter-button:hover {
  color: #fff;
  background: var(--ink);
}

.complaint-card {
  display: flex;
  min-height: 210px;
  padding: 26px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper-light);
  border: 2px solid var(--ink);
  border-radius: 20px;
  box-shadow: 5px 5px 0 var(--ink);
}

.complaint-card[hidden] {
  display: none;
}

.complaint-card .tag {
  align-self: flex-start;
  padding: 5px 10px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.complaint-card blockquote {
  margin: 22px 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.complaint-card small {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-list {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.contact-list a {
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 15px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--paper-light);
  border: 2px solid var(--ink);
  border-radius: 11px;
  outline: 0;
}

.field input:focus,
.field textarea:focus {
  box-shadow: 4px 4px 0 var(--yellow);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  padding-block: 45px;
  color: #fff;
  background: var(--ink);
  border-top: 3px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 40px;
}

.site-footer h2 {
  margin-bottom: 12px;
  font-size: 25px;
}

.site-footer p {
  max-width: 470px;
  color: #c9c4ba;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: var(--yellow);
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--yellow);
}

.copyright {
  margin-top: 40px;
  padding-top: 20px;
  color: #aaa49b;
  border-top: 1px solid #494949;
  font-size: 12px;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: 77px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px;
    align-items: stretch;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
  }

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

  .site-nav a {
    padding: 13px 16px;
    border-radius: 10px;
  }

  .hero {
    min-height: auto;
    padding-block: 55px 80px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero .lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .character-card {
    width: min(520px, 100%);
    margin-inline: auto;
  }

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

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .sticky-note {
    position: relative;
    top: auto;
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .nav-wrap,
  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand {
    font-size: 18px;
  }

  h1 {
    font-size: clamp(45px, 17vw, 72px);
  }

  .hero {
    gap: 48px;
  }

  .character-card {
    min-height: 410px;
    padding: 20px;
    border-radius: 32px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .complaint-bubble {
    top: 25px;
    right: 14px;
    max-width: 165px;
    padding: 12px;
    font-size: 12px;
  }

  .character-head {
    width: 125px;
    height: 145px;
  }

  .character-hair {
    width: 138px;
  }

  .character-eye {
    top: 71px;
  }

  .character-eye.left {
    left: 32px;
  }

  .character-eye.right {
    right: 32px;
  }

  .character-mouth {
    bottom: 28px;
  }

  .section,
  .quote-section {
    padding-block: 65px;
  }

  .card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > :first-child {
    grid-column: auto;
  }

  .story-card:nth-child(n) {
    transform: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .hero-actions .button,
  .button-row .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    animation-duration: .01ms;
    animation-iteration-count: 1;
  }
}
