:root {
  --red: #ff3131;
  --cream: #e5dcd3;
  --paper: #f5eee7;
  --black: #0b0b0b;
  --white: #fffaf5;
  --line: 2px solid var(--black);
  --radius: 1.35rem;
  --max: 1480px;
  --header-h: 78px;
  --shadow: 10px 10px 0 var(--black);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--red) var(--cream);
}

body {
  margin: 0;
  color: var(--black);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }

::selection {
  color: var(--black);
  background: #fff;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; display: block; }

.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;
}

.skip-link {
  position: fixed;
  left: 1rem; top: 1rem;
  z-index: 999;
  padding: .8rem 1rem;
  background: var(--black);
  color: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 clamp(1rem, 4vw, 4rem);
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  border-bottom: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.brand-script {
  font: italic 700 clamp(2rem, 4vw, 3rem)/.8 Georgia, "Times New Roman", serif;
}

.brand-lab {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 900;
  letter-spacing: -.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.2rem);
  font-weight: 800;
  font-size: .92rem;
}

.main-nav a:not(.nav-cta) {
  position: relative;
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -.25rem;
  height: 2px;
  background: var(--black);
  transition: right .25s ease;
}
.main-nav a:hover::after { right: 0; }

.nav-cta {
  padding: .78rem 1rem;
  background: var(--red);
  border: var(--line);
  box-shadow: 4px 4px 0 var(--black);
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--black);
}

.menu-toggle {
  display: none;
  width: 50px; height: 44px;
  background: var(--red);
  border: var(--line);
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--black);
}

.hero {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  background: var(--red);
  border-bottom: var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.35rem;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 6vw, 7rem);
}

.eyebrow,
.section-kicker {
  width: fit-content;
  margin: 0;
  padding: .45rem .7rem;
  border: var(--line);
  background: var(--cream);
  text-transform: uppercase;
  font-weight: 950;
  font-size: .78rem;
  letter-spacing: .12em;
  box-shadow: 4px 4px 0 var(--black);
}

.section-kicker.light {
  background: var(--white);
  color: var(--black);
}

.hero-title {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(3.5rem, 8vw, 8.9rem);
  line-height: .83;
  letter-spacing: -.075em;
  font-weight: 950;
}

.hero-title span { display: block; }
.hero-title em {
  display: inline-block;
  margin: 0 .04em .03em 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.06em;
}

.hero-description {
  max-width: 700px;
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: .85rem 1.2rem;
  border: var(--line);
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button-dark {
  color: var(--white);
  background: var(--black);
  box-shadow: 6px 6px 0 var(--cream);
}
.button-dark:hover {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 var(--cream);
}

.button-ghost { background: transparent; }
.button-ghost:hover { background: var(--cream); }

.button-light {
  color: var(--black);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--black);
}
.button-light:hover {
  transform: translate(4px, 4px);
  box-shadow: 3px 3px 0 var(--black);
}

.hero-art {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-left: var(--line);
  background:
    linear-gradient(90deg, transparent 49.6%, rgba(0,0,0,.1) 50%, transparent 50.4%),
    linear-gradient(transparent 49.6%, rgba(0,0,0,.1) 50%, transparent 50.4%),
    var(--cream);
  background-size: 54px 54px;
}

.big-mark {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -52%) rotate(-8deg);
  font: italic 700 clamp(16rem, 32vw, 33rem)/.7 Georgia, "Times New Roman", serif;
  color: var(--red);
  text-shadow: 8px 8px 0 var(--black);
}

.orbit {
  position: absolute;
  border: var(--line);
  border-radius: 50%;
  animation: orbit 14s linear infinite;
}
.orbit-one {
  inset: 12% 8%;
}
.orbit-two {
  inset: 24% 18%;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 10s;
}
@keyframes orbit { to { transform: rotate(1turn); } }

.sticker {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 120px;
  aspect-ratio: 1;
  padding: 1rem;
  border: var(--line);
  border-radius: 50%;
  background: var(--white);
  text-align: center;
  font-weight: 950;
  line-height: 1;
  box-shadow: 7px 7px 0 var(--black);
}
.sticker-one { left: 7%; top: 10%; transform: rotate(-12deg); }
.sticker-two { right: 8%; bottom: 12%; background: var(--red); transform: rotate(9deg); }

.pixel {
  position: absolute;
  width: 34px;
  height: 34px;
  background: var(--black);
}
.pixel-a { right: 10%; top: 14%; }
.pixel-b { left: 10%; bottom: 14%; background: var(--red); border: var(--line); }

.ticker {
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border-bottom: var(--line);
  padding: .8rem 0;
  font-weight: 950;
  letter-spacing: .05em;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.ticker-track span { padding-right: 2rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-pad {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 7rem);
}

.about { background: var(--cream); border-bottom: var(--line); }

.about-grid,
.faq-layout {
  max-width: var(--max);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 7vw, 8rem);
  align-items: start;
}

.display-title {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7.8rem);
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 950;
}

.display-title em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.about-copy {
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 750;
}
.about-copy p { margin-top: 0; }
.about-note {
  margin-top: 2.5rem !important;
  padding: 1.4rem;
  border: var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
}

.services { background: var(--paper); border-bottom: var(--line); }

.section-heading {
  max-width: var(--max);
  margin: 0 auto 3.2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}
.section-heading .section-kicker { margin-bottom: 1.4rem; }
.section-intro {
  max-width: 460px;
  margin: 0;
  font-size: 1.15rem;
  font-weight: 720;
}

.service-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 590px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: var(--line);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.65), transparent 36%),
    var(--cream);
  box-shadow: 8px 8px 0 var(--black);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:nth-child(2),
.service-card:nth-child(3) { background-color: var(--red); }
.service-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 13px 13px 0 var(--black);
}

.service-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-weight: 950;
}
.service-number {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 2.3rem;
}
.service-tag {
  padding: .35rem .6rem;
  border: 1.5px solid var(--black);
  background: var(--white);
  font-size: .76rem;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 720px;
  margin: 2.7rem 0 1rem;
  font-size: clamp(2.4rem, 4.7vw, 5.2rem);
  line-height: .9;
  letter-spacing: -.06em;
}
.service-card > p {
  max-width: 700px;
  margin: 0;
  font-size: 1.08rem;
  font-weight: 650;
}
.service-card ul {
  display: grid;
  gap: .6rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}
.service-card li::before { content: "✦ "; }

.service-footer {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-top: 1.5px solid var(--black);
}
.price { display: flex; flex-direction: column; line-height: .9; }
.price span { margin-bottom: .5rem; font-weight: 900; text-transform: uppercase; font-size: .78rem; }
.price strong { font-size: clamp(3rem, 6vw, 6rem); letter-spacing: -.08em; }

.round-link {
  width: 62px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: var(--line);
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 1.7rem;
  transition: transform .25s ease;
}
.round-link:hover { transform: rotate(45deg) scale(1.05); }

.included {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(3rem, 7vw, 8rem);
  background: var(--black);
  color: var(--white);
  border-bottom: 2px solid var(--white);
}
.included-heading { position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; }
.included-heading .display-title { margin-top: 2rem; }
.included-heading em { color: var(--red); }

.included-list { border-top: 1px solid rgba(255,255,255,.5); }
.included-item {
  display: grid;
  grid-template-columns: 55px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.5);
}
.included-item span {
  font: italic 700 1.3rem/1 Georgia, serif;
  color: var(--red);
}
.included-item p {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  font-weight: 800;
}
.included-item b { color: var(--red); font-size: 1.4rem; }

.process { background: var(--red); border-bottom: var(--line); }
.process-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  border: var(--line);
}
.process-card {
  min-height: 360px;
  padding: 1.5rem;
  background: var(--cream);
  border-right: var(--line);
}
.process-card:last-child { border-right: 0; }
.process-card span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  border: var(--line);
  border-radius: 50%;
  background: var(--red);
  font: italic 700 1.25rem/1 Georgia, serif;
}
.process-card h3 {
  margin: 5rem 0 1rem;
  font-size: clamp(1.7rem, 2.4vw, 2.7rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.process-card p { margin: 0; font-weight: 650; }

.extras {
  min-height: 620px;
  display: grid;
  grid-template-columns: .35fr 1fr .5fr;
  align-items: center;
  gap: 2rem;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 6vw, 7rem);
  background: var(--cream);
  border-bottom: var(--line);
  overflow: hidden;
}
.extras-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 950;
  letter-spacing: .1em;
}
.extras-copy h2 {
  max-width: 900px;
  margin: 0;
  font: italic 700 clamp(4rem, 8vw, 9rem)/.82 Georgia, "Times New Roman", serif;
  letter-spacing: -.06em;
}
.extras-copy p {
  max-width: 760px;
  margin: 2rem 0;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 700;
}
.text-link {
  display: inline-block;
  padding-bottom: .2rem;
  border-bottom: 2px solid currentColor;
  font-weight: 950;
}
.extras-shape {
  font-size: clamp(10rem, 24vw, 24rem);
  color: var(--red);
  line-height: .8;
  animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(1turn); } }

.faq { background: var(--paper); border-bottom: var(--line); }
.faq-list { border-top: var(--line); }
.faq-item { border-bottom: var(--line); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.3rem 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 900;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  aspect-ratio: 1;
  border: var(--line);
  border-radius: 50%;
  background: var(--red);
  transition: transform .25s ease;
}
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item p {
  max-width: 700px;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  font-weight: 650;
}

.final-cta {
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 5rem 1.25rem;
  text-align: center;
  color: var(--white);
  background: var(--red);
  border-bottom: var(--line);
}
.final-cta h2 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 11rem);
  line-height: .78;
  letter-spacing: -.08em;
}
.final-cta em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.site-footer {
  display: grid;
  grid-template-columns: .7fr 1.1fr .7fr;
  gap: 2rem;
  align-items: start;
  padding: 3rem clamp(1.25rem, 6vw, 7rem);
  color: var(--white);
  background: var(--black);
}
.site-footer p { margin: 0; max-width: 520px; font-weight: 650; }
.site-footer > div { display: flex; flex-direction: column; gap: .45rem; font-weight: 850; }
.site-footer small { grid-column: 1 / -1; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.35); }

.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: flex;
  gap: .5rem;
  align-items: center;
  padding: .75rem 1rem;
  border: var(--line);
  background: var(--white);
  box-shadow: 5px 5px 0 var(--black);
  font-weight: 950;
  transition: transform .2s ease;
}
.floating-wa:hover { transform: translateY(-4px); }

.cursor-dot {
  position: fixed;
  left: 0; top: 0;
  z-index: 100;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--black);
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@supports (animation-timeline: view()) {
  .extras-shape {
    animation: spin linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
}

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; }
  .hero-art { min-height: 520px; border-left: 0; border-top: var(--line); }
  .included { grid-template-columns: 1fr; }
  .included-heading { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card:nth-child(2) { border-right: 0; }
  .process-card:nth-child(-n+2) { border-bottom: var(--line); }
  .extras { grid-template-columns: 80px 1fr; }
  .extras-shape { grid-column: 1 / -1; justify-self: center; }
}

@media (max-width: 820px) {
  :root { --header-h: 68px; }
  .site-header { padding-inline: 1rem; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 1rem;
    background: var(--cream);
    border-bottom: var(--line);
    transform: translateY(-120%);
    transition: transform .3s ease;
  }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a {
    padding: 1rem;
    border-bottom: 1px solid rgba(0,0,0,.25);
  }
  .nav-cta { margin-top: 1rem; text-align: center; }
  .about-grid,
  .faq-layout,
  .service-grid { grid-template-columns: 1fr; }
  .section-heading { display: grid; align-items: start; }
  .service-card { min-height: 540px; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer small { grid-column: auto; }
  .cursor-dot { display: none; }
}

@media (max-width: 620px) {
  .hero-copy { padding-top: 4.5rem; }
  .hero-title { font-size: clamp(3.2rem, 17vw, 5.2rem); }
  .hero-art { min-height: 390px; }
  .sticker { width: 92px; font-size: .8rem; }
  .section-pad { padding-block: 4.7rem; }
  .display-title { font-size: clamp(3rem, 15vw, 5rem); }
  .service-card { min-height: 500px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { border-right: 0; border-bottom: var(--line); }
  .process-card:last-child { border-bottom: 0; }
  .process-card:nth-child(2) { border-bottom: var(--line); }
  .extras { grid-template-columns: 1fr; min-height: auto; }
  .extras-label { writing-mode: initial; transform: none; }
  .extras-copy h2 { font-size: clamp(3.6rem, 17vw, 6rem); }
  .extras-shape { display: none; }
  .floating-wa span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
