:root {
  --navy: #073b73;
  --navy-dark: #05294f;
  --blue: #72c4eb;
  --blue-soft: #e8f7fd;
  --pink: #f47eb4;
  --pink-ink: #c13c7b;
  --pink-soft: #ffe8f2;
  --peach: #ffb991;
  --yellow: #ffd268;
  --cream: #fff8f1;
  --paper: #ffffff;
  --ink: #17324d;
  --muted: #5f7183;
  --line: rgba(7, 59, 115, 0.16);
  --shadow: 0 24px 70px rgba(21, 55, 88, 0.14);
  --radius-xl: 2.5rem;
  --radius-lg: 1.75rem;
  --radius-md: 1.1rem;
  --shell: 1180px;
  --heading: ui-rounded, "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  --body: "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(244, 126, 180, 0.12), transparent 20rem),
    radial-gradient(circle at 92% 16%, rgba(114, 196, 235, 0.16), transparent 24rem),
    var(--cream);
  font-family: var(--body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

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

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

::selection {
  color: var(--navy-dark);
  background: var(--pink-soft);
}

.shell {
  width: min(calc(100% - 2.5rem), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  color: var(--paper);
  background: var(--navy);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.top-note {
  position: relative;
  z-index: 30;
  color: var(--navy-dark);
  background: var(--pink);
  font-size: 0.83rem;
  letter-spacing: 0.025em;
}

.top-note__inner {
  display: flex;
  min-height: 2.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 248, 241, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(7, 59, 115, 0.08);
}

.site-header__inner {
  display: flex;
  min-height: 5.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy);
  text-decoration: none;
}

.brand img {
  width: 3.5rem;
  height: 3.5rem;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--paper);
  object-fit: cover;
  box-shadow: 3px 3px 0 var(--pink);
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: -0.05em;
}

.brand small {
  margin-top: 0.25rem;
  color: var(--pink-ink);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 2rem);
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--navy-dark);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 3px;
  border-radius: 10px;
  background: var(--pink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.menu-toggle {
  display: none;
  min-width: 4.8rem;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.menu-toggle__lines {
  display: grid;
  width: 1.1rem;
  gap: 3px;
}

.menu-toggle__lines i {
  display: block;
  height: 2px;
  border-radius: 5px;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines i:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] .menu-toggle__lines i:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 3.55rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  border: 2px solid var(--navy-dark);
  border-radius: 999px;
  color: var(--paper);
  background: var(--navy);
  box-shadow: 5px 5px 0 var(--pink);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  background: var(--navy-dark);
  box-shadow: 2px 2px 0 var(--pink);
  transform: translate(3px, 3px);
}

.button--small {
  min-height: 2.85rem;
  padding: 0.6rem 1.1rem;
  box-shadow: 3px 3px 0 var(--pink);
  font-size: 0.88rem;
}

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

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

.button--yellow {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--navy);
}

.button--yellow:hover {
  color: var(--navy);
  background: #ffc43d;
  box-shadow: 2px 2px 0 var(--navy);
}

.button--wide {
  width: 100%;
}

.eyebrow {
  display: flex;
  margin: 0 0 0.85rem;
  align-items: center;
  gap: 0.5rem;
  color: var(--pink-ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.hero {
  display: grid;
  min-height: calc(100vh - 7.7rem);
  align-items: center;
  padding-top: clamp(3.5rem, 6vw, 6rem);
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 8%;
  left: -5rem;
  width: 10rem;
  height: 10rem;
  border: 2px dashed rgba(7, 59, 115, 0.16);
}

.hero::after {
  right: 2%;
  bottom: 8%;
  width: 1rem;
  height: 1rem;
  background: var(--pink);
  box-shadow: -3rem 2rem 0 var(--blue), 2rem -2.5rem 0 var(--yellow);
  transform: rotate(45deg);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(25rem, 0.82fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero h1,
.section-heading h2,
.about h2,
.areas h2,
.faq h2,
.contact h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--heading);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 16ch;
  font-size: clamp(2.35rem, 5.4vw, 4.2rem);
}

.hero__tagline {
  display: block;
  margin: 0.55rem 0 0;
  color: var(--pink-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.06em;
  transform: rotate(-2deg);
  transform-origin: left;
}

.hero__lead {
  max-width: 39rem;
  margin: 1.65rem 0 0;
  color: #435d75;
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  margin-top: 2rem;
  align-items: center;
  gap: 1.5rem;
}

.text-link {
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(0.25rem);
}

.trust-list {
  display: flex;
  margin: 2.2rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.45rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy-dark);
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  font-weight: 800;
}

.trust-list li span {
  display: grid;
  width: 1.2rem;
  height: 1.2rem;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--pink);
  font-size: 0.7rem;
}

.hero__visual {
  position: relative;
  min-height: 42rem;
}

.hero__blob {
  position: absolute;
  inset: 5% -10% 0 3%;
  border: 3px solid var(--navy);
  border-radius: 45% 55% 47% 53% / 55% 40% 60% 45%;
  background: var(--blue);
  box-shadow: 16px 16px 0 var(--pink);
  transform: rotate(4deg);
}

.hero-card {
  position: absolute;
  z-index: 2;
  inset: 0.5rem 1rem 0 2rem;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--navy);
  border-radius: 48% 48% 2.4rem 2.4rem;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.hero-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 41, 79, 0.13), transparent 35%);
  content: "";
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.hero-sticker {
  position: absolute;
  z-index: 4;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--navy);
  line-height: 1.15;
}

.hero-sticker--price {
  top: 4rem;
  right: -2.7rem;
  display: grid;
  width: 8.6rem;
  height: 8.6rem;
  place-content: center;
  border-radius: 50%;
  text-align: center;
  transform: rotate(8deg);
}

.hero-sticker--price small {
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-sticker--price strong {
  color: var(--pink-ink);
  font-family: var(--heading);
  font-size: 2.4rem;
}

.hero-sticker--price span {
  font-size: 0.75rem;
  font-weight: 800;
}

.hero-sticker--phrase {
  bottom: 3rem;
  left: -3rem;
  padding: 0.8rem 1rem;
  border-radius: 0.85rem;
  background: var(--yellow);
  font-size: 0.83rem;
  transform: rotate(-5deg);
}

.ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-block: 2px solid var(--navy);
  color: var(--paper);
  background: var(--navy);
  transform: rotate(-1deg) scale(1.02);
}

.ticker__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  min-height: 4.3rem;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  padding-inline: 1rem;
  white-space: nowrap;
}

.ticker span {
  font-family: var(--heading);
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  font-weight: 900;
}

.ticker i {
  color: var(--pink);
  font-size: 1.25rem;
  font-style: normal;
}

.services {
  background:
    linear-gradient(rgba(7, 59, 115, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 59, 115, 0.025) 1px, transparent 1px),
    var(--cream);
  background-size: 34px 34px;
}

.section-heading {
  display: flex;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.section-heading > div {
  max-width: 48rem;
}

.section-heading h2,
.about h2,
.areas h2,
.faq h2,
.contact h2 {
  font-size: clamp(2.7rem, 5.2vw, 5rem);
}

.section-heading > p {
  max-width: 31rem;
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading--centred {
  display: block;
  max-width: 50rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading--centred > div {
  max-width: none;
}

.section-heading--centred .eyebrow {
  justify-content: center;
}

.section-heading--centred > p {
  max-width: 42rem;
  margin: 1.2rem auto 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  display: grid;
  min-height: 33rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  overflow: hidden;
  border: 2px solid var(--navy);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--navy);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  box-shadow: 4px 4px 0 var(--navy);
  transform: translate(4px, 4px);
}

.service-card__image {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  background: var(--blue-soft);
}

.service-card__image img,
.service-card__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.service-card:hover .service-card__image img,
.service-card:hover .service-card__image video {
  transform: scale(1.035);
}

.service-card__number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 900;
}

.service-card__body {
  display: flex;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  flex-direction: column;
  justify-content: center;
}

.service-card__body h3 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: var(--heading);
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.service-card__body p {
  margin: 0;
  color: var(--muted);
}

.tick-list {
  display: grid;
  margin: 1.3rem 0 0;
  padding: 0;
  gap: 0.55rem;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--navy-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.tick-list li::before {
  position: absolute;
  top: 0.05rem;
  left: 0;
  color: var(--pink);
  content: "✓";
  font-weight: 900;
}

.service-card__body .text-link {
  display: inline-flex;
  margin: 1rem 1rem 0 0;
  font-size: 0.86rem;
}

.service-card--business .service-card__number {
  background: var(--blue);
}

.service-card--deep .service-card__number {
  background: var(--pink);
}

.service-card--moving .service-card__number {
  background: var(--peach);
}

.price-section {
  color: var(--paper);
  background:
    radial-gradient(circle at 0 0, rgba(114, 196, 235, 0.24), transparent 24rem),
    radial-gradient(circle at 100% 80%, rgba(244, 126, 180, 0.18), transparent 25rem),
    var(--navy);
}

.price-section .section-heading h2 {
  color: var(--paper);
}

.price-section .section-heading > p {
  color: rgba(255, 255, 255, 0.74);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  position: relative;
  min-height: 15rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.price-card::after {
  position: absolute;
  right: -1rem;
  bottom: -1.7rem;
  color: rgba(255, 255, 255, 0.08);
  content: "✦";
  font-size: 8rem;
  line-height: 1;
  transform: rotate(15deg);
}

.price-card--featured {
  display: flex;
  min-height: 31rem;
  grid-row: span 2;
  flex-direction: column;
  justify-content: center;
  border-color: var(--navy-dark);
  color: var(--navy-dark);
  background: var(--pink);
  box-shadow: 9px 9px 0 var(--yellow);
}

.price-card--featured::after {
  color: rgba(7, 59, 115, 0.09);
}

.price-card__tag {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  padding: 0.35rem 0.65rem;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: var(--yellow);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(3deg);
}

.price-card__type {
  position: relative;
  z-index: 1;
  margin: 0 0 0.7rem;
  font-family: var(--heading);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 900;
  line-height: 1.15;
}

.price-card__price {
  position: relative;
  z-index: 1;
  margin: 0;
  line-height: 1;
}

.price-card__price small {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card__price span {
  font-family: var(--heading);
  font-size: clamp(3rem, 5vw, 5.25rem);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.price-card:not(.price-card--featured) .price-card__price span {
  font-size: clamp(2.5rem, 4vw, 3.7rem);
}

.price-card__note {
  position: relative;
  z-index: 1;
  max-width: 17rem;
  margin: 1rem 0 0;
  color: inherit;
  font-size: 0.9rem;
  opacity: 0.78;
}

.price-card .button {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  margin-top: 1.8rem;
}

.price-smallprint {
  max-width: 48rem;
  margin: 2rem auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  text-align: center;
}

.about {
  background:
    radial-gradient(circle, rgba(244, 126, 180, 0.14) 2px, transparent 2.5px),
    var(--pink-soft);
  background-size: 28px 28px;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 8rem);
}

.about__art {
  position: relative;
  min-height: 34rem;
}

.about__art-card {
  position: absolute;
  inset: 0 1.5rem 4.5rem 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 3px solid var(--navy);
  border-radius: 48% 48% 2.5rem 2.5rem;
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--blue);
  transform: rotate(-3deg);
}

.about__art-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about__scribble {
  position: absolute;
  right: -1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--navy);
  border-radius: 1rem;
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1.25;
  transform: rotate(4deg);
}

.sparkle {
  position: absolute;
  z-index: 3;
  color: var(--pink);
  font-size: 3.5rem;
  line-height: 1;
  text-shadow: 2px 2px 0 var(--paper);
}

.sparkle--one {
  top: 2rem;
  left: -2rem;
}

.sparkle--two {
  right: 0;
  bottom: 8rem;
  color: var(--blue);
  font-size: 2.2rem;
}

.about__lead {
  margin: 1.5rem 0 0;
  color: #496176;
  font-size: 1.1rem;
}

.promise-grid {
  display: grid;
  margin-top: 2.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.promise-grid article {
  display: flex;
  padding: 1rem;
  align-items: flex-start;
  gap: 0.8rem;
  border: 1px solid rgba(7, 59, 115, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
}

.promise-grid article > span {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  background: var(--paper);
  font-weight: 900;
}

.promise-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
}

.promise-grid p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.steps {
  overflow: hidden;
  background: var(--paper);
}

.steps::before {
  position: absolute;
  top: 0;
  right: -4rem;
  width: 15rem;
  height: 15rem;
  border: 3px solid var(--pink);
  border-radius: 50%;
  content: "";
  opacity: 0.18;
}

.steps__list {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  list-style: none;
}

.steps__list::before {
  position: absolute;
  z-index: 0;
  top: 2.4rem;
  right: 16%;
  left: 16%;
  border-top: 3px dashed var(--pink);
  content: "";
}

.steps__list li {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
  text-align: center;
}

.steps__list li > span {
  display: grid;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  place-items: center;
  border: 3px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--pink);
  font-family: var(--heading);
  font-size: 1.8rem;
  font-weight: 900;
}

.steps__list li:nth-child(2) > span {
  background: var(--blue);
}

.steps__list li:nth-child(3) > span {
  background: var(--pink);
}

.steps__list h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--heading);
  font-size: 1.45rem;
}

.steps__list p {
  max-width: 18rem;
  margin: 0.55rem auto 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.areas {
  background: var(--blue-soft);
}

.areas__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(25rem, 1.15fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.areas__copy > p:not(.eyebrow, .areas__question) {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  margin: 1.4rem 0 0;
  padding: 0;
  gap: 0.55rem;
  list-style: none;
}

.area-list li {
  padding: 0.38rem 0.8rem;
  border: 2px solid var(--navy);
  border-radius: 999px;
  color: var(--navy);
  background: var(--paper);
  font-size: 0.82rem;
  font-weight: 800;
}

.areas__question {
  display: inline-block;
  margin: 1.6rem 0 0;
  padding: 0.75rem 1rem;
  border: 2px solid var(--navy);
  border-radius: 0.8rem;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--pink);
  font-size: 0.9rem;
  font-weight: 800;
  transform: rotate(-1deg);
}

.areas__question a {
  color: var(--navy);
}

.areas__map {
  position: relative;
  display: grid;
  min-height: 30rem;
  place-items: center;
}

.map-shape {
  position: relative;
  width: min(100%, 34rem);
  height: 27rem;
  border: 3px solid var(--navy);
  border-radius: 58% 42% 55% 45% / 43% 62% 38% 57%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.55) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 2px, transparent 2px),
    var(--blue);
  background-size: 42px 42px;
  box-shadow: 12px 12px 0 var(--pink);
  transform: rotate(3deg);
}

.map-ring {
  position: absolute;
  inset: 12%;
  border: 3px dashed rgba(7, 59, 115, 0.42);
  border-radius: 50%;
}

.map-dot {
  position: absolute;
  z-index: 2;
  width: 1.2rem;
  height: 1.2rem;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 3px var(--pink);
}

.map-dot--one {
  top: 28%;
  left: 32%;
}

.map-dot--two {
  top: 46%;
  left: 54%;
}

.map-dot--three {
  right: 22%;
  bottom: 24%;
}

.map-dot--four {
  bottom: 22%;
  left: 24%;
}

.map-label {
  position: absolute;
  z-index: 3;
  padding: 0.35rem 0.6rem;
  border: 2px solid var(--navy);
  border-radius: 0.6rem;
  color: var(--navy);
  background: var(--paper);
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--navy);
}

.map-label--main {
  top: 39%;
  left: 38%;
  padding: 0.55rem 0.8rem;
  background: var(--yellow);
  font-size: 0.9rem;
}

.map-label--one {
  top: 16%;
  left: 16%;
}

.map-label--two {
  top: 51%;
  right: 12%;
}

.map-label--three {
  right: 28%;
  bottom: 10%;
}

.faq-list {
  display: grid;
  max-width: 46rem;
  margin-inline: auto;
  gap: 0.85rem;
}

.faq-item {
  border: 2px solid var(--navy);
  border-radius: 1.15rem;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--pink);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-item summary:hover {
  color: var(--navy-dark);
}

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

.faq-item summary::after {
  flex: 0 0 auto;
  color: var(--pink-ink);
  content: "+";
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.contact {
  color: var(--paper);
  background:
    radial-gradient(circle at 10% 100%, rgba(244, 126, 180, 0.22), transparent 25rem),
    var(--navy-dark);
}

.contact__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(26rem, 1.05fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
}

.contact h2 {
  color: var(--paper);
}

.contact__intro > p:not(.eyebrow) {
  max-width: 35rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.contact-options {
  display: grid;
  margin-top: 2.2rem;
  gap: 0.75rem;
}

.contact-option {
  display: flex;
  padding: 0.8rem;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.contact-option:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(0.25rem);
}

.contact-option__icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  color: var(--navy);
  background: var(--pink);
  font-weight: 900;
}

.contact-option small {
  display: block;
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-option strong {
  display: block;
  margin-top: 0.12rem;
  overflow-wrap: anywhere;
  font-size: 0.94rem;
}

.enquiry-form {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 3px solid var(--navy);
  border-radius: var(--radius-xl);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--pink);
}

.enquiry-form__heading {
  display: flex;
  margin-bottom: 1.7rem;
  align-items: center;
  gap: 0.9rem;
}

.enquiry-form__heading > span {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 50%;
  color: var(--pink);
  background: var(--yellow);
  font-size: 1.3rem;
}

.enquiry-form h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--heading);
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.enquiry-form__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.enquiry-form label {
  display: block;
  margin-bottom: 1rem;
  color: var(--navy-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.enquiry-form label small {
  color: var(--muted);
  font-weight: 500;
}

.enquiry-form input:not([type="checkbox"]),
.enquiry-form select,
.enquiry-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  border: 2px solid rgba(7, 59, 115, 0.22);
  border-radius: 0.85rem;
  background: #fbfdff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.enquiry-form input:not([type="checkbox"]),
.enquiry-form select {
  min-height: 3.25rem;
  padding: 0.65rem 0.85rem;
}

.enquiry-form textarea {
  min-height: 8rem;
  padding: 0.8rem 0.85rem;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px var(--pink-soft);
}

.enquiry-form [aria-invalid="true"] {
  border-color: #ba164e !important;
  box-shadow: 0 0 0 4px rgba(186, 22, 78, 0.12);
}

.form-consent {
  display: flex !important;
  margin: 0.5rem 0 1.3rem !important;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted) !important;
  font-weight: 500 !important;
  line-height: 1.45;
}

.form-consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.18rem;
  flex: 0 0 auto;
  accent-color: var(--pink);
}

.form-consent a {
  color: var(--navy);
  font-weight: 800;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.form-status {
  min-height: 1.5rem;
  margin: 0.9rem 0 0;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.form-status.is-error {
  color: #a81042;
}

.form-status.is-success {
  color: #08754a;
}

.form-setup-note {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.form-setup-note[hidden] {
  display: none;
}

.site-footer {
  color: var(--navy);
  background: var(--cream);
}

.site-footer__top {
  display: grid;
  padding-block: 3rem;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.brand--footer {
  justify-self: start;
}

.site-footer__blurb {
  max-width: 28rem;
  text-align: center;
}

.site-footer__blurb > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer__nap {
  display: flex;
  margin-top: 0.7rem !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 1rem;
  font-size: 0.84rem;
  font-weight: 800;
}

.site-footer__nap a {
  color: var(--navy);
  text-decoration: none;
}

.site-footer__nap a:hover {
  text-decoration: underline;
}

.site-footer__top > .button {
  justify-self: end;
}

.site-footer__bottom {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom p span {
  color: var(--pink-ink);
  font-weight: 800;
}

.site-footer__bottom nav {
  display: flex;
  gap: 1.2rem;
}

.site-footer__bottom nav a {
  color: var(--navy);
  font-weight: 800;
}

.floating-quote {
  position: fixed;
  z-index: 40;
  right: 1rem;
  bottom: 1rem;
  display: none;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.15rem;
  border: 2px solid var(--navy);
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--navy);
  font-size: 0.85rem;
  font-weight: 900;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-quote.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal--delay {
  transition-delay: 120ms;
}

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

.privacy-page {
  min-height: 100vh;
  background: var(--cream);
}

.privacy-main {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.privacy-card {
  max-width: 780px;
  margin-inline: auto;
  padding: clamp(1.5rem, 5vw, 4rem);
  border: 2px solid var(--navy);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--pink);
}

.privacy-card h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--heading);
  font-size: clamp(2.7rem, 6vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.privacy-card h2 {
  margin: 2rem 0 0.45rem;
  color: var(--navy);
  font-family: var(--heading);
  font-size: 1.35rem;
}

.privacy-card p,
.privacy-card li {
  color: var(--muted);
}

.privacy-card .button {
  margin-top: 1.5rem;
}

.crumb {
  display: flex;
  margin: 0 0 1.1rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.crumb a {
  color: var(--navy);
  text-decoration: none;
}

.inner-links {
  display: flex;
  margin: 1.5rem 0 0;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
}

.inner-links a {
  color: var(--navy);
  font-size: 0.9rem;
}

.privacy-card--wide {
  max-width: 860px;
}

.privacy-card a {
  color: var(--navy);
  font-weight: 800;
}

.area-guide {
  display: grid;
  margin: 2rem 0 1.5rem;
  gap: 0.9rem;
}

.area-guide article {
  padding: 1.15rem 1.25rem;
  border: 2px solid var(--navy);
  border-radius: 1.1rem;
  background: var(--cream);
  scroll-margin-top: 5.5rem;
}

.area-guide h2 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.area-guide h2 a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.area-guide p {
  margin: 0;
}

@media (max-width: 1080px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.75fr);
    gap: 3rem;
  }

  .hero__visual {
    min-height: 38rem;
  }

  .hero-sticker--price {
    right: -1rem;
  }

  .hero-sticker--phrase {
    left: -1.5rem;
  }

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

  .service-card__body {
    padding: 1.5rem;
  }
}

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

  .js .menu-toggle {
    display: flex;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1.25rem;
    left: 1.25rem;
    display: flex;
    padding: 1.4rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 2px solid var(--navy);
    border-radius: 1.4rem;
    background: var(--paper);
    box-shadow: 8px 8px 0 var(--pink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem) scale(0.98);
    transform-origin: top;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .js .site-nav > a:not(.button) {
    padding: 0.8rem 0.5rem;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .js .site-nav > a:not(.button)::after {
    display: none;
  }

  .js .site-nav .button {
    margin-top: 1rem;
  }

  .hero {
    min-height: auto;
  }

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

  .hero__copy {
    max-width: 43rem;
  }

  .hero__visual {
    width: min(100%, 32rem);
    min-height: 43rem;
    margin-inline: auto;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 1.2rem;
  }

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

  .service-card {
    min-height: 29rem;
    grid-template-columns: minmax(16rem, 0.8fr) 1fr;
  }

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

  .price-card--featured {
    min-height: 26rem;
    grid-column: span 2;
    grid-row: auto;
  }

  .about__grid,
  .areas__grid,
  .contact__shell {
    grid-template-columns: 1fr;
  }

  .about__art {
    width: min(100%, 30rem);
    margin-inline: auto;
  }

  .about__copy,
  .areas__copy,
  .contact__intro {
    max-width: 44rem;
  }

  .areas__grid,
  .contact__shell {
    gap: 4rem;
  }

  .areas__map {
    min-height: 27rem;
  }

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

  .contact-option {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 1.5rem), var(--shell));
  }

  .section {
    padding-block: 4.5rem;
  }

  .top-note__inner {
    min-height: 2rem;
    gap: 0.45rem;
    font-size: 0.74rem;
  }

  .top-note__inner span[aria-hidden="true"] {
    display: none;
  }

  .site-header__inner {
    min-height: 4.8rem;
  }

  .brand img {
    width: 3rem;
    height: 3rem;
  }

  .brand strong {
    font-size: 1.3rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .menu-toggle {
    min-width: auto;
    width: 3rem;
    min-height: 3rem;
    padding: 0;
  }

  .menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 9.2vw, 3.05rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    align-self: center;
  }

  .trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-list li:last-child {
    grid-column: span 2;
    justify-content: center;
  }

  .hero__visual {
    width: calc(100% - 0.5rem);
    min-height: 34rem;
    margin-top: 1rem;
  }

  .hero-card {
    inset: 0.5rem 0.4rem 0 0.8rem;
    border-radius: 44% 44% 2rem 2rem;
  }

  .hero__blob {
    inset: 5% -2% 1% 1%;
    box-shadow: 9px 9px 0 var(--pink);
  }

  .hero-sticker--price {
    top: 2rem;
    right: -0.45rem;
    width: 7rem;
    height: 7rem;
  }

  .hero-sticker--price strong {
    font-size: 2rem;
  }

  .hero-sticker--phrase {
    bottom: 1.5rem;
    left: -0.45rem;
  }

  .ticker__track {
    justify-content: flex-start;
    gap: 1.1rem;
  }

  .ticker span:nth-of-type(n + 4),
  .ticker i:nth-of-type(n + 4) {
    display: none;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .section-heading h2,
  .about h2,
  .areas h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

  .section-heading > p {
    font-size: 0.96rem;
  }

  .service-card {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 1.8rem;
    box-shadow: 6px 6px 0 var(--navy);
  }

  .service-card__image {
    min-height: 0;
    aspect-ratio: 16 / 12;
  }

  .service-card__image img,
  .service-card__image video {
    object-position: center 34%;
  }

  .service-card__body {
    padding: 1.6rem;
  }

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

  .price-card--featured {
    min-height: 25rem;
    grid-column: auto;
  }

  .price-card {
    min-height: 13.5rem;
  }

  .about__art {
    min-height: 29rem;
  }

  .about__art-card {
    inset: 0 0.8rem 4rem 0;
  }

  .sparkle--one {
    left: 0;
  }

  .about__scribble {
    right: 0;
  }

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

  .steps__list {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .steps__list::before {
    top: 2rem;
    right: auto;
    bottom: 2rem;
    left: 2.45rem;
    border-top: 0;
    border-left: 3px dashed var(--pink);
  }

  .steps__list li {
    display: grid;
    padding: 0;
    grid-template-columns: 5rem 1fr;
    column-gap: 1.2rem;
    text-align: left;
  }

  .steps__list li > span {
    margin: 0;
    grid-row: span 2;
  }

  .steps__list h3 {
    align-self: end;
  }

  .steps__list p {
    max-width: none;
    margin: 0.35rem 0 0;
  }

  .areas__map {
    min-height: 22rem;
  }

  .map-shape {
    height: 21rem;
  }

  .map-label {
    font-size: 0.6rem;
  }

  .map-label--main {
    font-size: 0.74rem;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .contact-option {
    align-items: center;
    flex-direction: row;
  }

  .enquiry-form {
    border-radius: 1.7rem;
    box-shadow: 7px 7px 0 var(--pink);
  }

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

  .site-footer {
    padding-bottom: 4.5rem;
  }

  .site-footer__top {
    display: flex;
    padding-block: 2.5rem;
    flex-direction: column;
    text-align: center;
  }

  .brand--footer,
  .site-footer__top > .button {
    align-self: center;
  }

  .site-footer__bottom {
    padding-block: 1.5rem;
    flex-direction: column;
    justify-content: center;
    gap: 0.7rem;
    text-align: center;
  }

  .floating-quote {
    display: inline-flex;
  }
}

@media (max-width: 380px) {
  .top-note__inner strong {
    display: none;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .trust-list li,
  .trust-list li:last-child {
    grid-column: auto;
    justify-content: flex-start;
  }

  .hero__visual {
    min-height: 30rem;
  }

  .hero-sticker--phrase {
    font-size: 0.72rem;
  }
}

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

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

@media print {
  .top-note,
  .site-header,
  .ticker,
  .floating-quote,
  .contact,
  .site-footer {
    display: none;
  }

  body {
    background: white;
  }

  .section {
    padding-block: 2rem;
  }
}
