@font-face {
  font-family: "Playlist Caps";
  src: url("assets/fonts/Playlist Caps.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Playlist Script";
  src: url("assets/fonts/Playlist Script.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Playlist Ornament";
  src: url("assets/fonts/Playlist Ornament.otf") format("opentype");
  font-display: swap;
}

:root {
  --ink: #111111;
  --muted: #555555;
  --paper: #ffffff;
  --soft: #f4f7f1;
  --yellow: #ffd400;
  --green: #a7f000;
  --orange: #ff7438;
  --red: #f73554;
  --blue: #1c79ff;
  --line: rgba(17, 17, 17, 0.16);
  --shadow: 0 16px 50px rgba(17, 17, 17, 0.14);
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-drawn: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Playlist Script", "Comic Neue", "Comic Sans MS", cursive;
  --page-gutter: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
}

body.is-locked {
  overflow: hidden;
}

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

picture[data-modern-image] {
  display: contents;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-shell {
  width: min(1180px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.site-header-shell {
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px 20px;
  min-height: 72px;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  justify-self: start;
  text-decoration: none;
  font-family: var(--font-drawn);
  font-weight: 400;
  text-transform: uppercase;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand img {
  width: auto;
  height: clamp(96px, 9vw, 128px);
  max-width: min(36vw, 300px);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
  width: auto;
  max-width: 100%;
}

.lang-switcher {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.lang-switcher__btn {
  --tilt: -5deg;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  font-family: var(--font-drawn);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  opacity: 0.72;
  transform: rotate(var(--tilt));
  transition: transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 160ms ease;
}

.lang-switcher__btn:nth-child(1) {
  --tilt: -6deg;
}

.lang-switcher__btn:nth-child(2) {
  --tilt: 4deg;
}

.lang-switcher__btn:nth-child(3) {
  --tilt: -3deg;
}

.lang-switcher__btn:hover,
.lang-switcher__btn:focus-visible {
  opacity: 1;
  transform: rotate(0deg) translateY(-3px) scale(1.12);
  outline: none;
}

.lang-switcher__btn.is-active {
  opacity: 1;
  transform: rotate(0deg) scale(1.14);
}

.flag {
  display: inline-block;
  width: 46px;
  height: 32px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(2px 3px 0 rgba(17, 17, 17, 0.85));
}

.site-nav a {
  --tilt: -2deg;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--ink);
  font-family: var(--font-drawn);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(var(--tilt));
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.site-nav a:nth-child(1) {
  --tilt: -2deg;
  background: var(--red);
}

.site-nav a:nth-child(2) {
  --tilt: 1.5deg;
  background: var(--yellow);
}

.site-nav a:nth-child(3) {
  --tilt: -1deg;
  background: var(--green);
}

.site-nav a:nth-child(4) {
  --tilt: 2deg;
  background: var(--blue);
  color: var(--paper);
}

.site-nav a:nth-child(5) {
  --tilt: -2.5deg;
  background: var(--orange);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--orange);
  outline: 2px solid transparent;
  transform: translate(4px, 4px) rotate(0deg) scale(1.04);
  box-shadow: 1px 1px 0 var(--ink);
}

.site-nav .nav-cta {
  --tilt: 2.5deg;
  background: var(--ink);
  color: var(--paper);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--red);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  height: 100%;
}

.nav-toggle__bars span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--ink);
  transition: transform 220ms ease, opacity 180ms ease;
  transform-origin: center;
}

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

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

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

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  background: linear-gradient(120deg, var(--yellow) 0%, var(--green) 50%, var(--orange) 100%);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(45deg, rgba(17, 17, 17, 0.26) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(17, 17, 17, 0.26) 25%, transparent 25%);
  background-position: 0 0, 0 10px;
  background-size: 20px 20px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: 28px;
  min-height: calc(100vh - 72px);
  padding-block: 56px;
}

.hero__copy {
  max-width: 690px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--font-drawn);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  padding: 7px 10px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: 5px 5px 0 var(--ink);
}

.hero h1 {
  margin: 0;
  max-width: 13ch;
  font-family: var(--font-script);
  font-size: clamp(5rem, 7vw, 7.5rem);
  line-height: 0.92;
  font-weight: 400;
  text-transform: none;
}

.hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 1.38rem;
  font-weight: 600;
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.button--dark {
  background: var(--ink);
  color: var(--paper);
}

.button--light {
  background: var(--paper);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
}

.hero__stats div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 2px solid var(--ink);
  border-radius: 8px;
}

.hero__stats dt {
  font-family: var(--font-drawn);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 800;
}

.hero__stats dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero__art {
  position: relative;
  min-height: 570px;
}

.hero__art::before {
  content: "";
  position: absolute;
  inset: 12% 6% 6% 0;
  background:
    radial-gradient(circle, rgba(17, 17, 17, 0.88) 0 2px, transparent 2.5px) 0 0 / 22px 22px,
    linear-gradient(135deg, #ffb22b 0%, #ffa51f 54%, #ff8a28 100%);
  border: 3px solid var(--ink);
  border-radius: 8px;
  transform: rotate(-4deg);
  box-shadow: 16px 16px 0 rgba(17, 17, 17, 0.24);
}

.hero__art img {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: 690px;
  margin-left: auto;
  object-fit: contain;
  filter: drop-shadow(15px 20px 0 rgba(17, 17, 17, 0.24));
}

.intro {
  padding-block: 80px;
}

.intro__grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 52px;
  align-items: start;
}

.intro h2,
.section-heading h2,
.contact-grid h2 {
  margin: 0;
  font-family: var(--font-drawn);
  font-size: 3.25rem;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}

.intro__copy p,
.section-heading p,
.contact-grid p,
.process-grid p,
.service-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro__copy p:first-child {
  margin-top: 0;
}

.work-band,
.pricing-band,
.contact-band {
  padding-block: 82px;
}

.work-band {
  background:
    radial-gradient(circle, rgba(17, 17, 17, 0.08) 22%, transparent 23%) 0 0 / 18px 18px,
    linear-gradient(125deg, #fff6d4 0%, #dff3c6 48%, #d8ecff 100%);
  color: var(--ink);
}

.work-band .section-heading p,
.work-band .section-kicker {
  color: rgba(17, 17, 17, 0.8);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 14px 0 0;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter {
  min-height: 42px;
  padding: 8px 13px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
}

.filter:hover,
.filter:focus-visible,
.filter.is-active {
  background: var(--ink);
  color: var(--paper);
  outline: none;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.work-card {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--ink);
  color: var(--ink);
}

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

.work-carousel {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eeeeee;
}

.work-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  opacity: 0;
  transition: opacity 520ms ease;
  pointer-events: none;
  z-index: 0;
}

.work-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .work-carousel__slide {
    transition: none;
  }
}

.work-carousel__slide[hidden] {
  display: block;
}

.work-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.work-carousel__nav {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  gap: 6px;
}

.work-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.work-carousel__dot.is-active {
  background: var(--accent);
}

.image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #eeeeee;
  cursor: zoom-in;
}

.image-button img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 240ms ease;
}

.work-card:hover .work-carousel__slide.is-active img,
.work-card:hover .image-button img {
  transform: scale(1.04);
}

.work-card figcaption {
  padding: 12px 13px 14px;
  font-family: var(--font-body);
  font-weight: 700;
}

.services {
  padding-block: 82px;
}

.service-grid,
.pricing-layout,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.price-table,
.process-grid article,
.contact-card {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
}

.service-card {
  min-height: 260px;
  padding: 22px;
}

.service-card span,
.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 1000;
}

.service-card:nth-child(2) span {
  background: var(--orange);
}

.service-card:nth-child(3) span {
  background: var(--yellow);
}

.service-card:nth-child(4) span {
  background: var(--red);
  color: var(--paper);
}

.service-card h3,
.price-table h3,
.process-grid h3 {
  margin: 0 0 10px;
  font-family: var(--font-drawn);
  font-size: 1.28rem;
  line-height: 1.12;
  font-weight: 800;
}

.service-card p,
.process-grid p {
  margin: 0;
}

.pricing-band {
  background:
    linear-gradient(120deg, rgba(255, 212, 0, 0.86), rgba(167, 240, 0, 0.78)),
    var(--yellow);
}

.pricing-layout {
  display: block;
  column-count: 3;
  column-gap: 16px;
}

.price-table {
  overflow: hidden;
  margin: 0 0 16px;
  break-inside: avoid;
  box-shadow: 8px 8px 0 var(--ink);
}

.price-table h3 {
  margin: 0;
  padding: 18px;
  background: var(--ink);
  color: var(--paper);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-top: 2px solid var(--line);
}

.price-row span {
  font-weight: 700;
}

.price-row strong {
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 1.18rem;
  font-weight: 800;
}

.pricing-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.pricing-actions .flyer-link {
  width: fit-content;
  max-width: min(100%, 420px);
}

.flyer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--blue);
  color: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.flyer-link:hover,
.flyer-link:focus-visible {
  background: var(--green);
  color: var(--ink);
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.process {
  padding-block: 82px;
}

.process-grid article {
  padding: 22px;
}

.process-grid span {
  background: var(--blue);
  color: var(--paper);
}

.faq {
  padding-block: 82px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
}

.faq-item:nth-child(2) {
  background: #fff7cb;
}

.faq-item:nth-child(3) {
  background: #edffd7;
}

.faq-item:nth-child(4) {
  background: #ffe2d3;
}

.faq-item summary {
  position: relative;
  padding: 18px 56px 18px 18px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 14px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
  background: var(--orange);
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-weight: 650;
}

.contact-band {
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 38px;
  align-items: start;
}

.contact-grid p {
  max-width: 680px;
}

.contact-panel {
  display: block;
}

.contact-form {
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

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

.contact-form label:not(.form-check) {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: #fffdf3;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.contact-form .button {
  width: 100%;
  cursor: pointer;
}

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
}

.contact-form label.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.45;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  padding: 0;
  flex: 0 0 20px;
  accent-color: var(--ink);
  cursor: pointer;
}

.form-check span {
  flex: 1;
  font-weight: 600;
}

.form-legal {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.form-legal a {
  color: var(--ink);
  font-weight: 800;
}

.form-legal a:hover,
.form-legal a:focus-visible {
  text-decoration: underline;
}

.legal-page {
  padding: 36px 0 56px;
}

.legal-page__inner {
  max-width: 760px;
}

.legal-page__back {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page h1 {
  margin: 0 0 8px;
  font-family: var(--font-drawn);
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.05;
}

.legal-page__updated {
  margin: 0 0 28px;
  color: var(--muted);
  font-weight: 600;
}

.legal-section {
  margin-bottom: 24px;
}

.legal-section h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
}

.legal-section p {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.6;
}

.contact-actions {
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}

.budget {
  min-width: 0;
  margin: 4px 0 16px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fffdf3;
}

.budget legend {
  padding: 3px 11px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.budget__hint {
  margin: 12px 0 12px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.budget__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 4px 0 0;
  max-height: 340px;
  overflow-y: auto;
  list-style: none;
}

.budget__group {
  margin-top: 6px;
  padding: 4px 2px;
  border-bottom: 2px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.budget__group:first-child {
  margin-top: 0;
}

.budget__item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--paper);
  transition: background 140ms ease, transform 140ms ease;
}

.budget__item.is-selected {
  background: var(--yellow);
  transform: translateX(2px);
}

.budget__name {
  font-size: 1rem;
  font-weight: 800;
}

.budget__price {
  white-space: nowrap;
  font-weight: 800;
}

.budget__stepper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.budget__btn {
  width: 30px;
  height: 30px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 2px 2px 0 var(--ink);
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, box-shadow 120ms ease;
}

.budget__btn:hover,
.budget__btn:focus-visible {
  background: var(--green);
  outline: none;
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--ink);
}

.budget__count {
  min-width: 22px;
  text-align: center;
  font-weight: 800;
}

.budget__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
}

.budget__total span {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.budget__total strong {
  font-size: 1.5rem;
  font-weight: 800;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: 3px 3px 0 var(--ink);
}

.contact-card__icon .social-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.contact-card--email .contact-card__icon {
  background: #ffd6d1;
}

.contact-card--whatsapp .contact-card__icon {
  background: #c8f5d8;
}

.contact-card--instagram .contact-card__icon {
  background: #ffd0e0;
}

.contact-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.social-icon {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  flex-shrink: 0;
}

.social-icon--lg {
  width: 1.35rem;
  height: 1.35rem;
}

.contact-card__label {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-card__value {
  overflow-wrap: anywhere;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

a.contact-card:hover,
a.contact-card:focus-visible {
  background: var(--yellow);
  outline: none;
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
}

.footer-inner__brand {
  display: grid;
  gap: 4px;
}

.footer-inner__brand p {
  margin: 0;
  font-family: var(--font-drawn);
  font-weight: 700;
  font-size: 1.15rem;
}

.footer-inner__brand span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  font-weight: 700;
}

.footer-inner__top {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-inner__top:hover,
.footer-inner__top:focus-visible {
  color: var(--yellow);
  outline: none;
}

.footer-inner__social {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-inner__social-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-inner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.footer-inner__actions a {
  --tilt: -4deg;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 1;
  text-decoration: none;
  opacity: 0.92;
  transform: rotate(var(--tilt));
  transition: transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 160ms ease;
}

.footer-inner__actions .footer-social--email {
  --tilt: -5deg;
}

.footer-inner__actions .footer-social--whatsapp {
  --tilt: 4deg;
}

.footer-inner__actions .footer-social--instagram {
  --tilt: -3deg;
}

.footer-inner__actions a:hover,
.footer-inner__actions a:focus-visible {
  opacity: 1;
  transform: rotate(0deg) translateY(-3px) scale(1.12);
  outline: none;
}

.social-badge {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(2px 3px 0 rgba(17, 17, 17, 0.85));
}

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transition:
    opacity 200ms ease,
    visibility 200ms ease,
    transform 200ms ease,
    gap 200ms ease;
}

.float-actions.is-scrolled {
  gap: 10px;
}

.float-actions.is-near-footer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
}

.back-top,
.whatsapp-float {
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.back-top {
  width: 44px;
  height: 44px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition:
    opacity 200ms ease,
    visibility 200ms ease,
    max-height 200ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.float-actions.is-scrolled .back-top {
  max-height: 44px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.back-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.back-top:hover,
.back-top:focus-visible,
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translate(2px, 2px);
  outline: none;
}

.back-top:hover,
.back-top:focus-visible {
  box-shadow: 2px 2px 0 var(--ink);
}

.whatsapp-float {
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  box-shadow: 3px 3px 0 var(--ink);
}

.whatsapp-float .social-icon {
  width: 30px;
  height: 30px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  width: min(100%, 1100px);
  max-height: calc(100vh - 56px);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 110px);
  object-fit: contain;
  background: var(--paper);
  border-radius: 8px;
}

.lightbox figcaption {
  margin-top: 10px;
  color: var(--paper);
  font-weight: 800;
  text-align: center;
}

.lightbox__close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border: 2px solid var(--paper);
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.lightbox__nav {
  position: fixed;
  top: 50%;
  z-index: 1;
  width: 46px;
  height: 46px;
  border: 2px solid var(--paper);
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox__nav--prev {
  left: 16px;
}

.lightbox__nav--next {
  right: 16px;
}

.lightbox__nav[hidden] {
  display: none;
}

@media (min-width: 1080px) {
  .site-header-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px 20px;
    padding: 8px 24px;
    min-height: 72px;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 2px solid var(--ink);
    backdrop-filter: blur(14px);
  }

  .site-header {
    display: contents;
    padding: 0;
    min-height: 0;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .lang-switcher {
    grid-column: 3;
    grid-row: 1;
  }

  .site-nav {
    grid-column: 2;
    grid-row: 1;
    flex-wrap: nowrap;
    justify-self: center;
    justify-content: center;
  }
}

@media (max-width: 1380px) and (min-width: 1080px) {
  .site-header-shell {
    gap: 12px 16px;
    padding: 8px 16px;
  }

  .brand img {
    height: 88px;
    max-width: 210px;
  }

  .site-nav {
    gap: 6px;
    flex-wrap: nowrap;
    justify-self: start;
    justify-content: flex-start;
  }

  .site-nav a {
    min-height: 42px;
    padding: 8px 11px;
    font-size: 0.92rem;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .flag {
    width: 34px;
    height: 24px;
  }
}

@media (max-width: 1079px) {
  .site-header {
    position: relative;
    z-index: 81;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 8px 16px;
    min-height: auto;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .brand img {
    width: auto;
    height: 88px;
    max-width: min(58vw, 220px);
  }

  .lang-switcher {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-self: end;
    align-self: center;
    gap: 6px;
    margin-right: 50px;
  }

  .lang-switcher .flag {
    width: 28px;
    height: 20px;
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    align-self: center;
    position: relative;
    z-index: 80;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height, 88px);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    padding: 20px 16px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background:
      radial-gradient(circle at top left, rgba(255, 212, 0, 0.22), transparent 38%),
      radial-gradient(circle at bottom right, rgba(167, 240, 0, 0.18), transparent 34%),
      rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

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

  .site-nav a {
    width: min(100%, 320px);
    min-height: 54px;
    padding: 14px 22px;
    font-size: 1.18rem;
    box-shadow: 5px 5px 0 var(--ink);
    transition:
      transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1),
      box-shadow 160ms ease,
      background 160ms ease,
      opacity 240ms ease;
    opacity: 0;
    transform: rotate(var(--tilt)) translateY(12px);
  }

  .site-nav.is-open a {
    opacity: 1;
    transform: rotate(var(--tilt)) translateY(0);
  }

  .site-nav.is-open a:nth-child(1) { transition-delay: 40ms; }
  .site-nav.is-open a:nth-child(2) { transition-delay: 70ms; }
  .site-nav.is-open a:nth-child(3) { transition-delay: 100ms; }
  .site-nav.is-open a:nth-child(4) { transition-delay: 130ms; }
  .site-nav.is-open a:nth-child(5) { transition-delay: 160ms; }
  .site-nav.is-open a:nth-child(6) { transition-delay: 190ms; }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    transform: translate(4px, 4px) rotate(0deg) scale(1.03);
    box-shadow: 1px 1px 0 var(--ink);
  }
}

@media (max-width: 960px) {
  :root {
    --page-gutter: 20px;
  }

  .hero__inner,
  .intro__grid,
  .contact-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    min-height: auto;
  }

  .hero__art {
    order: -1;
  }

  .hero h1 {
    max-width: 14ch;
    font-size: 4rem;
  }

  .hero__lead {
    font-size: 1.12rem;
  }

  .hero__stats,
  .service-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-layout {
    column-count: 2;
  }

  .hero__art {
    min-height: 420px;
  }

  .hero__art img {
    margin: 0 auto;
    max-height: 480px;
  }

  .intro h2,
  .section-heading h2,
  .contact-grid h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 620px) {
  :root {
    --page-gutter: 20px;
  }

  .site-header {
    padding-inline: var(--page-gutter);
  }

  .brand img {
    height: 92px;
    max-width: min(62vw, 240px);
  }

  .lang-switcher .flag {
    width: 26px;
    height: 18px;
  }

  .hero__inner {
    padding-block: 36px 48px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero__actions,
  .service-grid,
  .process-grid,
  .faq-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

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

  .pricing-layout {
    column-count: 1;
  }

  .pricing-actions {
    margin-top: 4px;
    padding-top: 4px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__art {
    min-height: 320px;
  }

  .hero__art::before {
    inset: 18% 10% 5% 4%;
  }

  .hero__art img {
    max-height: 360px;
  }

  .contact-form {
    padding: 16px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .budget {
    margin-top: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .budget__list {
    max-height: none;
    overflow-y: visible;
    gap: 0;
    padding: 0;
  }

  .budget__group {
    margin-top: 16px;
    padding: 0 0 6px;
    border-bottom: 0;
  }

  .budget__group:first-child {
    margin-top: 8px;
  }

  .budget__item {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "name name"
      "price stepper";
    gap: 8px 12px;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }

  .budget__item.is-selected {
    margin-inline: -8px;
    padding-inline: 8px;
    border-bottom-color: transparent;
    border-radius: 6px;
    transform: none;
  }

  .budget__item:last-child {
    border-bottom: 0;
  }

  .budget__name {
    grid-area: name;
  }

  .budget__price {
    grid-area: price;
    align-self: center;
  }

  .budget__stepper {
    grid-area: stepper;
    justify-self: end;
  }

  .budget__btn {
    width: 44px;
    height: 44px;
  }

  .intro,
  .work-band,
  .services,
  .pricing-band,
  .process,
  .faq,
  .contact-band {
    padding-block: 56px;
  }

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

  .faq-item {
    box-shadow: 4px 4px 0 var(--ink);
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }

  .footer-inner__social {
    justify-items: stretch;
  }

  .footer-inner__actions {
    flex-direction: row;
    justify-content: center;
  }

  .float-actions.is-scrolled {
    gap: 8px;
  }

  .float-actions {
    right: 14px;
    bottom: 14px;
    gap: 0;
  }

  .float-actions.is-scrolled .back-top {
    max-height: 40px;
  }

  .back-top {
    width: 40px;
    height: 40px;
  }

  .back-top svg {
    width: 20px;
    height: 20px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
