:root {
  --bg: #f7f7f1;
  --paper: #fff;
  --ink: #090909;
  --muted: #666;
  --line: rgba(9, 9, 9, .16);
  --strong: rgba(9, 9, 9, .72);
  --accent: #b7ff2a;
  --blue: #69d2ff;
  --pink: #ff7a90;
  --danger: #d21f1f;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(9, 9, 9, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 9, 9, .045) 1px, transparent 1px),
    var(--bg);
  background-size: 24px 24px;
  font-family: Montserrat, system-ui, sans-serif;
  overflow-x: hidden;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(247, 247, 241, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 6px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-2deg);
}

.brand-mark i {
  background: var(--ink);
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text span:first-child {
  font-size: .98rem;
}

.brand-text span:last-child {
  margin-top: 4px;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
}

.page-hero {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 70px) 28px;
  border-bottom: 1px solid var(--line);
}

.eyebrow,
h2.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  line-height: .96;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 70px);
}

.prep-download {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .38fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid var(--strong);
  background: rgba(255, 255, 255, .68);
  box-shadow: 5px 5px 0 var(--ink);
}

.contact-page .prep-download {
  max-width: 920px;
  margin: 0 auto 22px;
}

.prep-download h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.15;
}

.prep-download p {
  margin-bottom: 12px;
  color: #303030;
  line-height: 1.62;
}

.prep-download .prep-note {
  margin: 0;
  color: var(--danger);
  font-size: .88rem;
  font-weight: 900;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-self: start;
}

.download-actions .button {
  min-width: 220px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  font-size: .76rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  border-top: 1px solid var(--strong);
  border-left: 1px solid var(--strong);
  background: rgba(255, 255, 255, .38);
}

.service-card {
  display: grid;
  grid-template-rows: auto 132px minmax(118px, auto) auto auto auto auto;
  align-content: start;
  gap: 16px;
  padding: 22px;
  border-right: 1px solid var(--strong);
  border-bottom: 1px solid var(--strong);
  background: rgba(255, 255, 255, .28);
  transition: transform .18s ease, background .18s ease;
}

.service-card:hover {
  background: var(--paper);
  transform: translateY(-4px);
}

.service-card.featured {
  color: var(--bg);
  background: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.service-card.featured:hover {
  background: #151515;
}

.option-label,
.package-label {
  color: var(--ink);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card.featured .option-label,
.service-card.featured .package-label {
  color: var(--accent);
}

.pixel-badge {
  width: 132px;
  max-width: 100%;
  height: 100px;
  align-self: start;
  object-fit: contain;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, .78);
  box-shadow: 5px 5px 0 var(--ink);
  shape-rendering: crispEdges;
}

.service-card.featured .pixel-badge {
  border-color: var(--bg);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--accent);
}

.service-card h3 {
  display: flex;
  align-items: flex-start;
  min-height: 2.65em;
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.15;
}

.px-ink { fill: var(--ink); }
.px-paper { fill: var(--paper); }
.px-accent { fill: var(--accent); }
.px-blue { fill: var(--blue); }
.px-pink { fill: var(--pink); }

.package-best {
  padding: 12px;
  border: 1px solid var(--strong);
  background: rgba(183, 255, 42, .14);
  color: #2d2d2d;
  font-size: .92rem;
  line-height: 1.55;
}

.service-card.featured .package-best {
  border-color: rgba(247, 247, 241, .45);
  background: rgba(183, 255, 42, .16);
  color: var(--bg);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-card.featured p {
  color: rgba(247, 247, 241, .78);
}

.package-list,
.package-excludes {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #303030;
  line-height: 1.45;
  list-style: none;
}

.service-card.featured .package-list,
.service-card.featured .package-excludes {
  color: rgba(247, 247, 241, .86);
}

.package-list li {
  position: relative;
  padding-left: 18px;
}

.package-list li::before {
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--accent);
  border: 1px solid var(--ink);
  transform: translateY(-50%);
}

.service-card.featured .package-list li::before {
  border-color: var(--bg);
}

.package-excludes {
  padding: 12px;
  border: 1px dashed var(--strong);
  color: var(--muted);
  font-size: .88rem;
}

.service-card.featured .package-excludes {
  border-color: rgba(247, 247, 241, .5);
}

.package-excludes li::before {
  content: "No ";
  color: var(--ink);
  font-weight: 900;
}

.service-card.featured .package-excludes li::before {
  color: var(--accent);
}

.package-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: .88rem;
}

.service-card.featured .button {
  border-color: var(--bg);
  box-shadow: 4px 4px 0 var(--accent);
}

.service-support {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(260px, .42fr);
  gap: 18px;
  margin-top: 20px;
}

.addon-panel,
.pricing-notes {
  padding: 20px;
  border: 1px solid var(--strong);
  background: rgba(255, 255, 255, .58);
}

.addon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.addon-list li {
  padding: 8px 10px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-notes {
  display: grid;
  gap: 12px;
  align-content: start;
}

.pricing-notes p,
.addon-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-card,
.info-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.contact-page .info-card {
  margin-top: 22px;
}

.services-page .info-card {
  max-width: none;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--strong);
  background: rgba(255, 255, 255, .58);
  box-shadow: none;
}

.info-list,
.hours-list {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.info-list a {
  color: var(--ink);
  font-weight: 700;
}

.hours-list {
  color: #303030;
  line-height: 1.55;
}

.info-note {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
}

.contact-form,
.modal-form {
  display: grid;
  gap: 14px;
}

.contact-form label,
.modal-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  outline: none;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.modal-form textarea {
  min-height: 116px;
  resize: vertical;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  min-height: 100dvh;
  padding: 20px;
  background: rgba(9, 9, 9, .58);
}

.modal.open {
  display: grid;
}

.modal-panel {
  width: min(100%, 560px);
  max-height: calc(100dvh - 40px);
  overflow: auto;
  padding: 20px;
  border: 1px solid var(--ink);
  background: var(--bg);
  box-shadow: 8px 8px 0 var(--ink);
}

.modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.tiny-button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.whatsapp-float {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 6px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .16s ease, box-shadow .16s ease;
}

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

.whatsapp-float img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer {
  padding: 28px clamp(18px, 5vw, 70px) 16px;
  border-top: 1px solid var(--bg);
  background: var(--ink);
  color: var(--bg);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

.footer-brand {
  display: inline-block;
  font-size: clamp(1.35rem, 2.8vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.footer-note {
  max-width: 36ch;
  margin: 12px 0 0;
  color: rgba(247, 247, 241, .72);
  font-size: .84rem;
  line-height: 1.55;
}

.footer-heading {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--bg);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.copyright {
  margin: 26px 0 0;
  color: rgba(247, 247, 241, .62);
  font-size: .75rem;
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-support,
  .prep-download {
    grid-template-columns: 1fr;
  }

  .download-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-rows: auto auto auto auto auto auto auto;
    min-height: 0;
  }

  .pixel-badge {
    height: auto;
  }

  .service-card h3 {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    padding: 13px 16px;
  }

  .brand-mark {
    width: 40px;
  }

  .brand-text span:first-child {
    font-size: .9rem;
  }

  .nav-toggle {
    position: relative;
    z-index: 42;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--ink);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 4px 4px 0 var(--ink);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
  }

  .nav-lines {
    display: grid;
    gap: 5px;
  }

  .nav-lines span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: transform .2s;
  }

  .nav-open .nav-lines span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-open .nav-lines span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 40;
    display: grid;
    align-content: start;
    gap: 6px;
    width: min(calc(100vw - 28px), 360px);
    height: 100dvh;
    padding: 92px 24px 28px;
    overflow: auto;
    background: var(--bg);
    border-left: 1px solid var(--ink);
    box-shadow: -24px 0 70px rgba(0, 0, 0, .16);
    pointer-events: none;
    transform: translateX(105%);
    transition: transform .2s ease;
  }

  .nav-open .site-nav {
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 1rem;
  }

  .page-hero {
    padding-top: 40px;
  }

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

  .download-actions .button {
    min-width: 0;
  }

  .whatsapp-float {
    left: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    padding: 5px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 520px) {
  .service-card,
  .addon-panel,
  .pricing-notes,
  .prep-download {
    padding: 16px;
  }
}
