:root {
  --paper: #f3f0e9;
  --ink: #111111;
  --soft-ink: #55534e;
  --line: rgba(17, 17, 17, 0.18);
  --orange: #ff5c35;
  --acid: #d8ff36;
  --blue: #9adff2;
  --white: #fffefa;
  --max: 1440px;
  --pad: clamp(1.25rem, 3vw, 3.5rem);
  --radius: 1.2rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.paguru-fatti-notare-2026 {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.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;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 0.2s;
}

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

.reading-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 5.2rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--pad);
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(243, 240, 233, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  width: 7.4rem;
}

.brand img {
  height: 2.9rem;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2vw, 2.4rem);
  font-size: 0.78rem;
  font-weight: 750;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.38rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  transition: color 0.25s, background 0.25s, transform 0.25s;
}

.nav-cta:hover {
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-2px);
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.15rem;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s;
}

.menu-toggle > span:first-child {
  transform: translate(-50%, -0.25rem);
}

.menu-toggle > span:nth-child(2) {
  transform: translate(-50%, 0.25rem);
}

.menu-toggle[aria-expanded="true"] > span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  max-width: var(--max);
  grid-template-columns: minmax(0, 0.88fr) minmax(25rem, 1.12fr);
  grid-template-rows: 1fr auto;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  margin: 0 auto;
  padding: clamp(8.5rem, 14vh, 11rem) var(--pad) 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 2rem;
}

.eyebrow {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--ink);
  margin-bottom: clamp(2rem, 5vh, 4rem);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow p {
  margin: 0;
}

.hero h1,
.choice h2,
.service-heading h2,
.mix h2,
.proof h2,
.steps h2,
.faq h2,
.lead h2 {
  margin: 0;
  font-size: clamp(3.8rem, 8.4vw, 8.8rem);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.81;
}

.hero h1 span,
.choice h2 span,
.service-heading h2 span,
.mix h2 span,
.proof h2 span,
.steps h2 span,
.faq h2 span,
.lead h2 span {
  color: var(--orange);
}

.hero-lede {
  max-width: 37rem;
  margin: clamp(2rem, 4vh, 3.5rem) 0 0;
  color: var(--soft-ink);
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  font-weight: 500;
  line-height: 1.42;
}

.hero-actions,
.service-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.95rem 1.25rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  transition: color 0.25s, background 0.25s, transform 0.25s;
}

.button:hover {
  transform: translateY(-2px);
}

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 800;
}

.text-link span {
  transition: transform 0.25s;
}

.text-link:hover span {
  transform: translate(0.18rem, -0.18rem);
}

.hero-stage {
  position: relative;
  min-height: min(66vh, 45rem);
}

.hero-image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 0.8rem 0.8rem 0 var(--ink);
}

.hero-image img {
  height: 100%;
  object-fit: cover;
}

.hero-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: var(--white);
  font-size: 0.68rem;
}

.hero-image figcaption span {
  color: var(--soft-ink);
}

.hero-image-main {
  inset: 2% 6% 10% 3%;
  transform: rotate(1.5deg);
}

.hero-image-small {
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 39%;
  height: 45%;
  transform: rotate(-4deg);
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 1%;
  display: grid;
  width: clamp(8rem, 12vw, 11rem);
  aspect-ratio: 1;
  place-content: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  text-align: center;
  transform: rotate(8deg);
}

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

.hero-stamp span {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stamp strong {
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  letter-spacing: -0.06em;
}

.service-jump {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}

.service-jump a {
  display: grid;
  min-height: 6.4rem;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
  transition: background 0.25s;
}

.service-jump a:last-child {
  border-right: 0;
}

.service-jump a:hover {
  background: var(--acid);
}

.service-jump strong {
  align-self: start;
  font-size: 0.68rem;
}

.service-jump span {
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.service-jump i {
  font-style: normal;
  transition: transform 0.25s;
}

.service-jump a:hover i {
  transform: translate(0.2rem, 0.2rem);
}

.choice,
.mix,
.proof,
.steps,
.faq,
.lead {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 10rem) var(--pad);
}

.choice {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}

.kicker,
.service-index,
.detail-label {
  margin: 0 0 1.7rem;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.choice h2,
.mix h2,
.proof h2,
.steps h2,
.faq h2,
.lead h2 {
  font-size: clamp(3rem, 6.3vw, 6.7rem);
}

.choice-note {
  max-width: 34rem;
  padding-bottom: 0.5rem;
}

.choice-note p {
  margin: 0 0 2rem;
  color: var(--soft-ink);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.48;
}

.services {
  border-top: 1px solid var(--ink);
}

.service {
  padding: clamp(6rem, 10vw, 10rem) max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  border-bottom: 1px solid var(--ink);
}

.service-video,
.service-social {
  color: var(--white);
  background: var(--ink);
}

.service-photo {
  background: var(--blue);
}

.service-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  column-gap: clamp(3rem, 8vw, 9rem);
  row-gap: 1.5rem;
  align-items: end;
  margin-bottom: clamp(3.5rem, 7vw, 7rem);
}

.service-heading .service-index {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin-bottom: 0;
}

.service-heading h2 {
  font-size: clamp(3rem, 6vw, 6.4rem);
  grid-column: 1;
  grid-row: 2;
}

.service-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0;
  color: var(--soft-ink);
  font-size: 1rem;
  line-height: 1.55;
}

.service-video .service-heading > p:last-child,
.service-social .service-heading > p:last-child {
  color: rgba(255, 254, 250, 0.7);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: stretch;
}

.service-layout-reverse .service-visual {
  grid-column: 2;
}

.service-layout-reverse .service-detail {
  grid-column: 1;
  grid-row: 1;
}

.service-visual {
  position: relative;
  min-height: clamp(27rem, 58vw, 47rem);
  overflow: hidden;
  margin: 0;
  border: 1px solid currentColor;
}

.service-visual img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.service-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.service-social .service-visual {
  background: var(--ink);
}

.service-social .service-visual img {
  object-fit: contain;
  object-position: center;
}

.service-visual:hover img {
  transform: scale(1.025);
}

.service-social .service-visual:hover img {
  transform: none;
}

.service-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: var(--acid);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail ul {
  padding: 0;
  border-top: 1px solid currentColor;
  margin: 0;
  list-style: none;
}

.service-detail li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid currentColor;
}

.service-detail li span {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 750;
  letter-spacing: -0.035em;
}

.service-detail li i {
  font-size: 0.65rem;
  font-style: normal;
}

.service-fit {
  max-width: 37rem;
  margin: 2rem 0 0;
  color: var(--soft-ink);
  line-height: 1.55;
}

.service-fit b {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink);
}

.service-video .service-fit,
.service-social .service-fit {
  color: rgba(255, 254, 250, 0.68);
}

.service-video .service-fit b,
.service-social .service-fit b {
  color: var(--white);
}

.button-service {
  align-self: flex-start;
  margin-top: 2rem;
  background: var(--acid);
}

.service-photo .button-service {
  background: var(--orange);
}

.service-video .button-service,
.service-social .button-service {
  color: var(--ink);
  border-color: var(--white);
}

.button-service:hover {
  color: var(--white);
  background: var(--orange);
}

.service-links .button-service {
  margin-top: 0;
}

.service-video .text-link,
.service-social .text-link {
  color: var(--white);
}

.mix-heading,
.steps-heading {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.mix-heading .kicker,
.steps-heading .kicker {
  min-width: 10rem;
}

.mix-heading h2,
.steps-heading h2 {
  width: min(72%, 60rem);
}

.mix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ink);
}

.mix-card {
  min-height: 27rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid var(--ink);
}

.mix-card:last-child {
  border-right: 0;
}

.mix-card > span {
  display: block;
  margin-bottom: 8rem;
  font-size: 0.68rem;
  font-weight: 850;
}

.mix-card h3 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  letter-spacing: -0.055em;
}

.mix-card p {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.55;
}

.mix-card-accent {
  background: var(--acid);
}

.mix-card-accent p {
  color: var(--ink);
}

.proof {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 9rem);
  color: var(--white);
  background: var(--orange);
}

.proof-copy {
  padding-left: max(0px, calc((100vw - var(--max)) / 2));
}

.proof-copy > p:not(.kicker) {
  max-width: 40rem;
  margin: 2rem 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.proof h2 span {
  color: var(--ink);
}

.proof-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-content: center;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.proof-numbers div {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border-right: 1px solid var(--ink);
}

.proof-numbers div:last-child {
  border-right: 0;
}

.proof-numbers strong {
  color: var(--ink);
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  letter-spacing: -0.07em;
}

.proof-numbers span {
  max-width: 8rem;
  font-size: 0.72rem;
  font-weight: 750;
}

.steps-list {
  padding: 0;
  border-top: 1px solid var(--ink);
  margin: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 0.2fr 0.8fr;
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--ink);
}

.steps-list > li > span {
  font-size: 0.68rem;
  font-weight: 850;
}

.steps-list h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  letter-spacing: -0.045em;
}

.steps-list p {
  margin: 0;
  color: var(--soft-ink);
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 9rem);
  border-top: 1px solid var(--ink);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq details {
  border-bottom: 1px solid var(--ink);
}

.faq summary {
  display: flex;
  min-height: 5.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  font-weight: 750;
  letter-spacing: -0.025em;
  list-style: none;
}

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

.faq summary span {
  flex: 0 0 auto;
  font-size: 1.2rem;
  transition: transform 0.25s;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 44rem;
  margin: -0.3rem 0 1.8rem;
  color: var(--soft-ink);
  line-height: 1.55;
}

.lead {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.82fr) minmax(27rem, 1.18fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding-right: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  padding-left: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  color: var(--white);
  background: var(--ink);
}

.lead h2 span {
  color: var(--acid);
}

.lead-copy > p:not(.kicker) {
  max-width: 34rem;
  margin: 2rem 0;
  color: rgba(255, 254, 250, 0.72);
  line-height: 1.55;
}

.lead-direct {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 3rem;
}

.lead-direct a {
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 750;
}

.lead-form {
  display: block;
  padding: clamp(1.5rem, 3vw, 3rem);
  color: var(--ink);
  background: var(--white);
}

.lead-form-fields {
  display: grid;
  gap: 1.25rem;
}

.form-success-panel {
  display: none;
  min-height: clamp(30rem, 58vw, 44rem);
  align-content: space-between;
  gap: 2.5rem;
  padding: clamp(0.25rem, 1vw, 1rem);
}

.lead-form.is-submitted {
  background: #e7ece6;
}

.lead-form.is-submitted .lead-form-fields {
  display: none;
}

.lead-form.is-submitted .form-success-panel {
  display: grid;
}

.form-success-kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-success-panel h3 {
  margin: auto 0 0;
  font-size: clamp(3.8rem, 7vw, 7.5rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.form-success-panel h3 span {
  color: var(--orange);
}

.form-success-panel > p:not(.form-success-kicker) {
  max-width: 28rem;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.45;
}

.form-success-action {
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  color: var(--white);
  background: var(--ink);
  font-size: 0.8rem;
  font-weight: 850;
  transition: color 0.25s, background 0.25s;
}

.form-success-action:hover {
  color: var(--ink);
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lead-form label:not(.privacy-check):not(.form-hp) {
  display: grid;
  gap: 0.55rem;
}

.lead-form label > span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 0.9rem 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  outline: 0;
  background: transparent;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 2px 0 var(--orange);
}

.lead-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.privacy-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  cursor: pointer;
}

.privacy-check input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  accent-color: var(--orange);
}

.privacy-check span {
  color: var(--soft-ink);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.privacy-check a {
  border-bottom: 1px solid currentColor;
  font-weight: 750;
}

.form-hp {
  position: absolute !important;
  left: -9999px !important;
}

.form-submit {
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border: 1px solid var(--ink);
  background: var(--acid);
  cursor: pointer;
  font-weight: 850;
  transition: color 0.25s, background 0.25s;
}

.form-submit:hover {
  color: var(--white);
  background: var(--orange);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.67rem;
  line-height: 1.45;
}

.form-status {
  display: none;
  padding: 0.9rem 1rem;
  border: 1px solid currentColor;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  font-weight: 750;
}

.form-status:not(:empty) {
  display: block;
}

.form-status.is-success {
  color: var(--ink);
  background: var(--acid);
}

.form-status.is-error {
  color: #7b1b09;
  background: #ffe1d7;
}

.form-status.is-pending {
  color: var(--ink);
  background: var(--paper);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 0.7fr);
  gap: 2rem;
  padding: clamp(4rem, 8vw, 7rem) var(--pad) 2rem;
  color: var(--white);
  background: var(--ink);
}

.footer-brand img {
  width: min(12rem, 70%);
  filter: invert(1);
}

.footer-brand > p {
  margin: 1.2rem 0 0;
  color: rgba(255, 254, 250, 0.62);
  font-size: 0.8rem;
  line-height: 1.45;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.78rem;
}

.footer-column > p {
  margin: 0 0 0.6rem;
  color: rgba(255, 254, 250, 0.48);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column address {
  color: rgba(255, 254, 250, 0.75);
  font-style: normal;
  line-height: 1.55;
}

.footer-column a:hover {
  color: var(--acid);
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 254, 250, 0.2);
  margin-top: 3rem;
  color: rgba(255, 254, 250, 0.52);
  font-size: 0.68rem;
}

.back-to-top {
  position: fixed;
  z-index: 90;
  right: clamp(1rem, 2vw, 2rem);
  bottom: clamp(1rem, 2vw, 2rem);
  display: grid;
  width: 3.7rem;
  height: 3.7rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 0.7rem 1.8rem rgba(17, 17, 17, 0.16);
  font-size: 1.35rem;
  font-weight: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.7rem) scale(0.9);
  pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s, transform 0.3s var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal[data-delay="1"] {
  transition-delay: 0.12s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.22s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .service-heading {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .service-heading h2 {
    grid-column: 1;
  }

  .service-heading > p:last-child {
    grid-column: 2;
  }

  .site-footer {
    grid-template-columns: 1.2fr repeat(2, 0.8fr);
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 5.4rem;
  }

  .site-header {
    min-height: 4.9rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 6rem var(--pad) 3rem;
    background: var(--acid);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: opacity 0.25s, visibility 0.25s, transform 0.35s var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a:not(.nav-cta) {
    width: 100%;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--ink);
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 850;
    letter-spacing: -0.06em;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 2rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding-top: 7.5rem;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-stage {
    min-height: 34rem;
  }

  .service-jump {
    grid-template-columns: 1fr 1fr;
  }

  .service-jump a:nth-child(2) {
    border-right: 0;
  }

  .service-jump a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .choice,
  .proof,
  .faq,
  .lead {
    grid-template-columns: 1fr;
  }

  .service-heading {
    grid-template-columns: 1fr;
  }

  .service-heading .service-index {
    grid-column: 1;
    grid-row: 1;
  }

  .service-heading h2,
  .service-heading > p:last-child {
    grid-column: 1;
  }

  .service-heading h2 {
    grid-row: 2;
  }

  .service-heading > p:last-child {
    grid-row: 3;
    align-self: start;
  }

  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-layout-reverse .service-visual,
  .service-layout-reverse .service-detail {
    grid-column: 1;
  }

  .service-layout-reverse .service-visual {
    grid-row: 1;
  }

  .service-layout-reverse .service-detail {
    grid-row: 2;
  }

  .service-visual {
    height: clamp(18rem, 58vw, 26rem);
    min-height: 0;
  }

  .service-web .service-visual {
    height: auto;
    aspect-ratio: 3 / 2;
    background: var(--paper);
  }

  .service-web .service-visual img {
    object-fit: cover;
    object-position: center;
  }

  .service-web .service-visual:hover img {
    transform: none;
  }

  .service-social .service-visual {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .service-social .service-visual img {
    object-fit: cover;
    object-position: center;
  }

  .mix-heading,
  .steps-heading {
    display: block;
  }

  .mix-heading h2,
  .steps-heading h2 {
    width: 100%;
  }

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

  .mix-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .mix-card:last-child {
    border-bottom: 0;
  }

  .mix-card > span {
    margin-bottom: 5rem;
  }

  .proof-copy {
    padding-left: 0;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 22vw, 7rem);
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-stage {
    min-height: 27rem;
  }

  .hero-image-main {
    inset: 4% 4% 11% 0;
  }

  .hero-image-small {
    width: 45%;
    height: 40%;
  }

  .hero-stamp {
    right: 0;
    width: 7.5rem;
  }

  .service-jump a {
    min-height: 5rem;
    padding: 0.9rem 0.6rem;
  }

  .service-jump span {
    font-size: 1rem;
  }

  .choice,
  .mix,
  .proof,
  .steps,
  .faq,
  .lead {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .service {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .service-heading h2,
  .choice h2,
  .mix h2,
  .proof h2,
  .steps h2,
  .faq h2,
  .lead h2 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  .service-detail li {
    padding: 1rem 0;
  }

  .service-detail li span {
    font-size: 1.05rem;
  }

  .proof-numbers {
    grid-template-columns: 1fr;
  }

  .proof-numbers div {
    min-height: 9rem;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .proof-numbers div:last-child {
    border-bottom: 0;
  }

  .steps-list li {
    grid-template-columns: 3rem 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 1.25rem;
  }

  .form-success-panel {
    min-height: 28rem;
    padding: 0;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 3.25rem;
    height: 3.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
