:root {
  --color-white: #ffffff;
  --color-ink: #09090b;
  --color-muted: #55545c;
  --color-soft: #f6f6f7;
  --color-line: #e8e8ec;
  --color-magenta: #ff007f;
  --color-yellow: #ffd400;
  --color-blue: #0057ff;
  --color-black: #000000;
  --shadow: 0 24px 70px rgba(9, 9, 11, 0.12);
  --shadow-small: 0 10px 30px rgba(9, 9, 11, 0.1);
  --radius: 8px;
  --radius-sm: 4px;
  --wrap: 1180px;
  --header-height: 76px;
  --font-base: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: var(--font-base);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--color-white);
  background: var(--color-ink);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.section-pad {
  padding: 72px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(232, 232, 236, 0.85);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--color-white);
  background: var(--color-ink);
  border-radius: var(--radius-sm);
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: inset 0 -5px 0 var(--color-magenta);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.brand small {
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 0.72rem;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--color-ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  position: fixed;
  inset: var(--header-height) 16px auto;
  display: grid;
  gap: 4px;
  padding: 12px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-panel a {
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  color: var(--color-muted);
  font-weight: 800;
}

.nav-panel a:hover {
  color: var(--color-ink);
  background: var(--color-soft);
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 48px;
}

.hero::before,
.hero::after,
.alt-band::before,
.portfolio::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  width: 180px;
  height: 22px;
  top: 110px;
  left: -40px;
  background: var(--color-magenta);
  transform: rotate(-8deg);
}

.hero::after {
  width: 130px;
  height: 130px;
  right: -38px;
  bottom: 30px;
  background-image: radial-gradient(var(--color-ink) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.22;
}

.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-magenta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-size: 3.3rem;
}

h2 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: 2.25rem;
}

h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.hero-lead {
  max-width: 620px;
  color: var(--color-muted);
  font-size: 1.14rem;
}

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

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 2px solid var(--color-ink);
  border-radius: var(--radius-sm);
  font-weight: 900;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 var(--color-yellow);
}

.btn-primary {
  color: var(--color-white);
  background: var(--color-ink);
}

.btn-secondary {
  background: var(--color-white);
}

.brand-phrase {
  max-width: 620px;
  margin: 26px 0 0;
  padding-left: 16px;
  color: var(--color-muted);
  border-left: 5px solid var(--color-magenta);
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px -10px -12px 16px;
  z-index: -1;
  border: 2px solid var(--color-ink);
  border-radius: var(--radius);
  background: var(--color-yellow);
}

.hero-visual img,
.image-frame img,
.audience-card img,
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual img {
  aspect-ratio: 1 / 0.85;
  border: 2px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  max-width: 180px;
  padding: 14px;
  color: var(--color-white);
  background: var(--color-ink);
  border: 2px solid var(--color-white);
  border-radius: var(--radius-sm);
}

.hero-badge span,
.hero-badge strong {
  display: block;
}

.hero-badge span {
  color: var(--color-yellow);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-badge strong {
  font-size: 1.5rem;
  line-height: 1;
}

.split {
  display: grid;
  gap: 30px;
  align-items: center;
}

.section-copy p,
.section-head p,
.quote-copy p,
.final-contact p {
  max-width: 680px;
  color: var(--color-muted);
  font-size: 1.02rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li,
.audience-list li {
  padding: 10px 12px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-left: 5px solid var(--color-magenta);
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.tag-list li:nth-child(3n + 2),
.audience-list li:nth-child(3n + 2) {
  border-left-color: var(--color-blue);
}

.tag-list li:nth-child(3n),
.audience-list li:nth-child(3n) {
  border-left-color: var(--color-yellow);
}

.image-frame {
  position: relative;
  min-height: 300px;
  margin: 0;
  border: 2px solid var(--color-ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-small);
}

.image-frame::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 14px;
  right: 20px;
  top: 20px;
  background: var(--color-magenta);
  transform: rotate(-6deg);
}

.brush-frame::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 26px;
  left: 18px;
  bottom: 24px;
  z-index: 1;
  background: var(--color-blue);
  transform: rotate(4deg);
}

.alt-band {
  position: relative;
  overflow: clip;
  background: var(--color-soft);
}

.alt-band::before {
  width: 180px;
  height: 180px;
  top: -70px;
  right: -70px;
  border: 22px solid var(--color-yellow);
  border-radius: 50%;
  opacity: 0.8;
}

.audience-grid {
  display: grid;
  gap: 26px;
}

.audience-card {
  min-height: 300px;
  border: 2px solid var(--color-ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-small);
}

.audience-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head.compact {
  max-width: 620px;
}

.portfolio {
  position: relative;
  overflow: clip;
}

.portfolio::before {
  width: 160px;
  height: 18px;
  top: 42px;
  right: 4vw;
  background: var(--color-blue);
  transform: rotate(8deg);
}

.portfolio-grid {
  display: grid;
  gap: 16px;
}

.work-card {
  position: relative;
  min-height: 320px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.work-card img {
  position: absolute;
  inset: 0;
  opacity: 0.78;
  transition: transform 300ms ease, opacity 300ms ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
}

.work-card:hover img {
  transform: scale(1.04);
  opacity: 0.92;
}

.work-card div {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.work-card span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 8px;
  color: var(--color-ink);
  background: var(--color-yellow);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 128px;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-top: 6px solid var(--color-ink);
  border-radius: var(--radius);
}

.process-list li:nth-child(2) {
  border-top-color: var(--color-magenta);
}

.process-list li:nth-child(3) {
  border-top-color: var(--color-blue);
}

.process-list li:nth-child(4) {
  border-top-color: var(--color-yellow);
}

.process-list li span {
  display: block;
  margin-bottom: 18px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-list li strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.1;
}

.quote-grid {
  display: grid;
  gap: 32px;
}

.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-strip a,
.contact-card a,
.contact-card span {
  display: block;
  padding: 12px;
  background: var(--color-soft);
  border-left: 5px solid var(--color-magenta);
  border-radius: var(--radius-sm);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-strip a:nth-child(2),
.contact-card a:nth-child(2) {
  border-left-color: var(--color-blue);
}

.contact-strip a:nth-child(3),
.contact-card a:nth-child(3) {
  border-left-color: var(--color-yellow);
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: var(--color-white);
  border: 2px solid var(--color-ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  font-size: 0.88rem;
  font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
}

.form-row textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--color-blue);
}

.form-row small {
  color: var(--color-muted);
}

.form-submit {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--color-muted);
  font-weight: 800;
}

.faq-grid {
  display: grid;
  gap: 24px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

summary {
  padding: 18px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--color-muted);
}

.final-contact {
  color: var(--color-white);
  background:
    linear-gradient(90deg, rgba(255, 0, 127, 0.28) 0 12px, transparent 12px),
    var(--color-ink);
}

.final-contact .eyebrow {
  color: var(--color-yellow);
}

.final-contact p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-grid {
  display: grid;
  gap: 24px;
}

.contact-card {
  display: grid;
  gap: 10px;
  margin: 0;
  font-style: normal;
}

.contact-card a,
.contact-card span {
  color: var(--color-ink);
  background: var(--color-white);
}

.site-footer {
  padding: 28px 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-line);
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.footer-row p {
  margin: 0;
}

.footer-row a {
  font-weight: 900;
  color: var(--color-ink);
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  color: var(--color-white);
  background: var(--color-ink);
  border: 2px solid var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: 6px 6px 0 var(--color-magenta);
  font-weight: 900;
}

@media (min-width: 700px) {
  .section-pad {
    padding: 92px 0;
  }

  h1 {
    font-size: 4.7rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-grid,
  .split,
  .quote-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reverse .section-copy {
    order: 2;
  }

  .audience-grid {
    grid-template-columns: 0.95fr 1.1fr;
    align-items: center;
  }

  .audience-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
  }

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

  .process-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .quote-form {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
  }

  .form-row-wide,
  .form-submit,
  .form-note {
    grid-column: 1 / -1;
  }

  .faq-grid {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .footer-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-panel a {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    align-items: center;
    padding-top: 34px;
    padding-bottom: 64px;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  h1 {
    font-size: 5.35rem;
  }

  h2 {
    font-size: 3.4rem;
  }

  .hero-visual img {
    aspect-ratio: 1 / 0.78;
  }

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

  .work-card:nth-child(2) {
    grid-row: span 2;
  }

  .work-card:nth-child(2),
  .work-card:nth-child(4) {
    min-height: 440px;
  }
}

@media (max-width: 380px) {
  .wrap {
    width: min(calc(100% - 24px), var(--wrap));
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .brand small {
    display: none;
  }
}

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