/* ==========================================================
   DECOR BY NICK — MODERN ATELIER SYSTEM
   A single art-directed layer shared by the complete website.
   ========================================================== */

:root {
  --ink: #20211f;
  --ink-soft: #30312e;
  --paper: #f8f6f1;
  --paper-deep: #eee9e1;
  --paper-warm: #e6ddd2;
  --rust: #a14829;
  --rust-deep: #75321e;
  --orange: #e76622;
  --sage: #778074;
  --muted: #6e6c66;
  --line: rgba(32, 33, 31, .16);
  --line-light: rgba(255, 255, 255, .17);
  --white: #fff;
  --max: 1240px;
  --shadow-soft: 0 24px 70px rgba(34, 27, 21, .1);
  --shadow-lift: 0 30px 85px rgba(34, 27, 21, .17);
  --ease: cubic-bezier(.2, .72, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
}

a {
  text-underline-offset: 4px;
}

main {
  position: relative;
  background: var(--paper);
}

.container {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding: clamp(84px, 9vw, 136px) 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -.045em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(52px, 7vw, 96px);
  line-height: .97;
}

h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
}

h3 {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.1;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.76;
}

.kicker {
  display: inline-flex !important;
  align-items: center;
  gap: 13px;
  margin: 0 0 22px;
  color: var(--rust);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker::before {
  width: 28px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.section-heading {
  display: grid;
  width: 100%;
  max-width: none;
  margin-bottom: clamp(42px, 6vw, 76px);
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .55fr);
  gap: 40px 90px;
  align-items: end;
}

.section-heading .kicker {
  grid-column: 1 / -1;
  margin-bottom: -17px;
}

.section-heading h2 {
  max-width: 860px;
  margin: 0;
}

.section-heading p {
  max-width: 430px;
  margin: 0 0 4px;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

/* Header and navigation */

.topbar {
  display: none !important;
}

.header {
  position: sticky !important;
  z-index: 1000;
  top: 0;
  width: 100%;
  border: 0 !important;
  border-bottom: 1px solid rgba(32, 33, 31, .11) !important;
  background: rgba(250, 248, 243, .92) !important;
  box-shadow: 0 8px 28px rgba(34, 27, 21, .04) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 88px !important;
  height: 88px !important;
  gap: 18px !important;
}

.header .logo.brand-slot {
  width: clamp(188px, 19vw, 248px) !important;
  min-width: 188px !important;
  margin-right: auto;
}

.header .logo.brand-slot img {
  width: 100%;
  max-height: 64px !important;
  object-fit: contain;
  object-position: left center;
}

.header .nav {
  display: flex;
  align-items: center;
  gap: 3px !important;
}

.header .nav > a,
.header .nav-group > summary {
  min-height: 0 !important;
  padding: 12px 14px !important;
  border: 0 !important;
  border-radius: 999px;
  color: #3c3d39;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  transition: color .2s ease, background-color .2s ease;
}

.header .nav > a:hover,
.header .nav > a.active,
.header .nav-group > summary:hover,
.header .nav-group.active > summary {
  border: 0 !important;
  background: rgba(161, 72, 41, .09);
  color: var(--rust) !important;
}

.header .nav-chevron {
  width: 9px;
  height: 6px;
}

.header .nav-dropdown,
.header .nav-explore {
  top: calc(100% + 20px) !important;
  width: 330px;
  padding: 8px !important;
  overflow: hidden;
  border: 1px solid rgba(32, 33, 31, .12) !important;
  border-radius: 18px !important;
  background: rgba(250, 248, 243, .98) !important;
  box-shadow: 0 24px 60px rgba(34, 27, 21, .15) !important;
  backdrop-filter: blur(20px);
}

.header .nav-explore {
  width: 265px;
}

.header .nav-dropdown a {
  padding: 13px 15px !important;
  border-radius: 11px !important;
  color: var(--ink);
  transition: background-color .18s ease, transform .18s ease;
}

.header .nav-dropdown a:hover {
  background: #eee9e1 !important;
  transform: translateX(2px);
}

.header .nav-dropdown a b {
  color: var(--ink);
  font-size: 13px;
}

.header .nav-dropdown a small {
  color: #77736c;
  font-size: 10px;
}

.header .nav-dropdown .menu-feature {
  margin-bottom: 4px;
  padding-bottom: 14px !important;
  border-bottom: 1px solid var(--line) !important;
}

.btn,
.btn-header,
.cta .btn-white,
.footer-cta .btn {
  display: inline-flex;
  min-height: 50px;
  padding: 0 9px 0 21px;
  border: 1px solid var(--ink) !important;
  border-radius: 999px !important;
  background: var(--ink) !important;
  box-shadow: none !important;
  color: #fff !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s var(--ease) !important;
}

.btn::after {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: 16px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--rust);
  color: #fff;
  content: "↗";
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: transform .25s var(--ease), background-color .25s ease;
}

.btn:hover {
  border-color: var(--rust) !important;
  background: var(--rust) !important;
  transform: translateY(-2px) !important;
}

.btn:hover::after {
  background: var(--ink);
  transform: translate(2px, -2px);
}

.btn-outline,
.nj-hero-copy .btn-outline {
  border-color: rgba(255, 255, 255, .62) !important;
  background: rgba(255, 255, 255, .08) !important;
  color: #fff !important;
  backdrop-filter: blur(10px);
}

.btn-outline::after {
  background: rgba(255, 255, 255, .15);
}

.btn-outline:hover,
.nj-hero-copy .btn-outline:hover {
  border-color: #fff !important;
  background: #fff !important;
  color: var(--ink) !important;
}

.btn-outline:hover::after {
  background: var(--rust);
  color: #fff;
}

.btn-header {
  min-height: 44px !important;
  margin-left: 7px;
  padding-left: 18px;
}

.btn-header::after {
  width: 28px;
  height: 28px;
  margin-left: 12px;
  font-size: 13px;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  padding: 0 !important;
  border: 1px solid var(--line) !important;
  border-radius: 50%;
}

.nav-toggle i {
  width: 19px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

/* Image-led hero */

.nj-hero {
  position: relative;
  min-height: clamp(670px, 78vh, 860px) !important;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  padding: 0 !important;
  align-items: end;
  background: var(--ink) !important;
}

.nj-hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.nj-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center !important;
  filter: saturate(.78) contrast(1.06);
  transform: scale(1.005);
}

.nj-hero-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 23, 21, .92) 0%, rgba(23, 23, 21, .78) 38%, rgba(23, 23, 21, .27) 72%, rgba(23, 23, 21, .12) 100%),
    linear-gradient(0deg, rgba(23, 23, 21, .42), transparent 44%);
  content: "";
}

.nj-hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 64px)) !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: clamp(110px, 13vw, 176px) 0 clamp(84px, 10vw, 126px) !important;
  color: #fff !important;
}

.nj-hero-copy::after {
  position: absolute;
  right: 0;
  bottom: 43px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  color: #fff;
  content: "N / J";
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
  letter-spacing: .06em;
}

.nj-hero-copy .kicker {
  color: #f3a16f !important;
}

.nj-hero-copy h1 {
  max-width: 970px !important;
  margin: 0 0 28px;
  color: #fff !important;
  font-size: clamp(54px, 7.2vw, 100px) !important;
  font-weight: 500;
  letter-spacing: -.067em !important;
  line-height: .94;
}

.nj-hero-copy p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, .78) !important;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 34px 0 0;
}

/* Editorial page heroes */

.page-hero,
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 11vw, 154px) 0 clamp(74px, 9vw, 118px) !important;
  border: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  background:
    radial-gradient(circle at 86% 38%, rgba(161, 72, 41, .12) 0 8%, transparent 8.2%),
    radial-gradient(circle at 84% 40%, transparent 0 15%, rgba(32, 33, 31, .09) 15.2% 15.4%, transparent 15.6%),
    var(--paper-deep) !important;
}

.page-hero::before,
.contact-hero::before {
  position: absolute;
  top: 0;
  left: calc(50% + 315px);
  width: 1px;
  height: 140%;
  background: rgba(32, 33, 31, .12);
  content: "";
  transform: rotate(24deg);
  transform-origin: top center;
}

.page-hero .container,
.contact-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.contact-hero h1 {
  max-width: 1050px !important;
  margin: 0 0 26px !important;
  color: var(--ink) !important;
  font-size: clamp(54px, 7vw, 96px) !important;
  font-weight: 500;
  letter-spacing: -.065em !important;
  line-height: .95;
}

.page-hero p,
.contact-hero p {
  max-width: 700px !important;
  margin: 0;
  color: #65635e !important;
  font-size: clamp(16px, 1.5vw, 19px) !important;
  line-height: 1.72;
}

.page-hero .btn {
  margin-top: 33px !important;
}

/* Generic split sections */

.section .split,
.section > .container.split {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(52px, 9vw, 132px);
  align-items: start;
}

.section .split h2,
.section > .container.split h2 {
  margin-bottom: 25px;
}

.section .split p,
.section > .container.split p {
  max-width: 650px;
}

.section .split > div:last-child,
.section > .container.split > div:last-child {
  padding-top: 13px;
}

.section .split > div:last-child > p:first-child,
.section > .container.split > div:last-child > p:first-child {
  margin-top: 0;
  font-size: 18px;
  line-height: 1.75;
}

.section .split .btn,
.section > .container.split .btn {
  margin-top: 16px;
}

.nj-atelier + .section {
  position: relative;
  background: var(--ink) !important;
  color: #fff;
}

.nj-atelier + .section::before {
  position: absolute;
  top: 0;
  left: max(32px, calc((100vw - var(--max)) / 2));
  width: min(155px, 18vw);
  height: 4px;
  background: var(--rust);
  content: "";
}

.nj-atelier + .section h2 {
  color: #fff;
}

.nj-atelier + .section p {
  color: rgba(255, 255, 255, .66);
}

.nj-atelier + .section .split > div:last-child,
.nj-atelier + .section > .container.split > div:last-child {
  padding-left: clamp(24px, 4vw, 58px);
  border-left: 1px solid var(--line-light);
}

/* Homepage trust composition */

.nj-trust {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep) !important;
}

.nj-trust .split,
.nj-trust > .container.split {
  align-items: center;
}

.trust-panel {
  position: relative;
  display: grid;
  padding: clamp(30px, 5vw, 58px) !important;
  grid-template-columns: minmax(120px, 190px) minmax(0, 1fr) !important;
  gap: clamp(26px, 4vw, 52px) !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--ink) !important;
  box-shadow: var(--shadow-soft) !important;
}

.trust-panel::after {
  position: absolute;
  right: -90px;
  bottom: -115px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
}

.brand-mark {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .28)) !important;
}

.trust-list {
  position: relative;
  z-index: 1;
  gap: 0 !important;
}

.trust-list span,
.trust-panel .trust-list span {
  position: relative;
  padding: 15px 0 15px 24px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--line-light) !important;
  background: transparent !important;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 600;
}

.trust-list span:last-child {
  border-bottom: 0 !important;
}

.trust-list span::before {
  position: absolute;
  top: 21px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

/* Service collection */

.nj-service-grid {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  gap: 19px !important;
  counter-reset: service;
}

.nj-service-grid > a {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  grid-column: span 4;
  flex-direction: column;
  border: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  counter-increment: service;
  transition: border-color .25s ease, box-shadow .3s ease, transform .3s var(--ease) !important;
}

.nj-service-grid > a:first-child,
.nj-service-grid > a:nth-child(2) {
  grid-column: span 6;
}

.nj-service-grid > a:hover {
  border-color: rgba(161, 72, 41, .5) !important;
  box-shadow: var(--shadow-lift) !important;
  transform: translateY(-5px) !important;
}

.nj-service-grid > a::before {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 50%;
  background: rgba(25, 25, 23, .2);
  color: #fff;
  content: "0" counter(service);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  backdrop-filter: blur(8px);
}

.nj-service-grid > a::after {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--rust);
  color: #fff;
  content: "↗";
  font-size: 16px;
  transition: transform .25s var(--ease), background-color .25s ease;
}

.nj-service-grid > a:hover::after {
  background: var(--ink);
  transform: translate(3px, -3px);
}

.nj-service-grid img {
  width: 100%;
  aspect-ratio: 1.5 !important;
  object-fit: cover;
  filter: saturate(.86);
  transition: filter .35s ease, transform .7s var(--ease);
}

.nj-service-grid > a:first-child img,
.nj-service-grid > a:nth-child(2) img {
  aspect-ratio: 1.7 !important;
}

.nj-service-grid > a:hover img {
  filter: saturate(1);
  transform: scale(1.035);
}

.nj-service-grid h3 {
  margin: 24px 25px 10px !important;
  color: var(--ink) !important;
  font-size: clamp(22px, 2.1vw, 30px);
  letter-spacing: -.045em;
}

.nj-service-grid p {
  margin: 0 25px 27px !important;
  color: var(--muted) !important;
  font-size: 14px;
  line-height: 1.7;
}

/* Individual service pages */

.service-detail-hero {
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0 !important;
  background: var(--ink) !important;
  color: #fff;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr) !important;
  gap: clamp(58px, 8vw, 118px) !important;
  align-items: center;
}

.breadcrumbs {
  margin-bottom: 42px !important;
  color: rgba(255, 255, 255, .44) !important;
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, .75) !important;
}

.service-detail-hero .kicker {
  color: #f3a16f;
}

.service-detail-hero h1 {
  margin: 0 0 24px !important;
  color: #fff !important;
  font-size: clamp(52px, 6.2vw, 90px) !important;
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .94;
}

.service-detail-hero p {
  max-width: 560px;
  margin: 0 0 32px !important;
  color: rgba(255, 255, 255, .67) !important;
  font-size: 18px !important;
  line-height: 1.72;
}

.service-image {
  position: relative;
}

.service-image::before {
  position: absolute;
  z-index: 2;
  right: -24px;
  bottom: -24px;
  width: 106px;
  height: 106px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  content: "";
}

.service-image img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: 24px 24px 0 var(--rust) !important;
  filter: saturate(.85);
}

.service-body {
  background: var(--paper-deep);
}

.service-body .container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, .68fr) !important;
  gap: clamp(60px, 10vw, 150px) !important;
  align-items: start;
}

.service-body .container > div:last-child {
  padding: clamp(28px, 4vw, 48px);
  border-top: 3px solid var(--rust);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-body h2 {
  margin-bottom: 24px;
  font-size: clamp(35px, 4.2vw, 58px) !important;
}

.service-body .container > div:last-child h2 {
  font-size: clamp(28px, 3vw, 40px) !important;
}

.service-body p {
  color: #62605a;
  font-size: 17px;
  line-height: 1.8;
}

.service-note {
  position: relative;
  margin-top: 42px !important;
  padding: 26px 28px 25px 32px !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--ink) !important;
  color: #fff;
  box-shadow: none !important;
}

.service-note::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  content: "";
}

.service-note b {
  color: #fff;
  font-size: 13px;
  letter-spacing: .03em;
}

.service-note p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .62) !important;
  font-size: 13px !important;
  line-height: 1.65;
}

.included-list {
  display: grid;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
  list-style: none;
  counter-reset: included;
}

.included-list li {
  position: relative;
  min-height: 62px;
  padding: 19px 0 18px 42px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  color: #4f504c;
  font-size: 14px;
  counter-increment: included;
}

.included-list li:last-child {
  border-bottom: 0 !important;
}

.included-list li::before {
  position: absolute;
  top: 19px;
  left: 0;
  color: var(--rust) !important;
  content: "0" counter(included) !important;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.service-body + .section {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.service-body + .section > .container {
  max-width: 960px;
  margin-left: max(32px, calc((100vw - var(--max)) / 2));
}

.service-body + .section h2 {
  max-width: 900px;
}

.service-body + .section p {
  max-width: 790px;
}

/* Areas */

.areas-intro {
  border-bottom: 1px solid var(--line) !important;
  background: #fff;
}

.areas-intro .split > div:last-child {
  padding-left: clamp(28px, 5vw, 70px);
  border-left: 1px solid var(--line);
}

.coverage-section {
  background: var(--paper-deep) !important;
}

.coverage-grid.area-location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1px !important;
  border: 1px solid var(--line) !important;
  background: var(--line) !important;
  counter-reset: area;
}

.area-location-grid article {
  position: relative;
  min-height: 255px !important;
  padding: 34px 30px 30px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #faf8f4 !important;
  box-shadow: none !important;
  counter-increment: area;
  transition: color .25s ease, background-color .25s ease;
}

.area-location-grid article::before {
  display: block;
  margin-bottom: 48px;
  color: var(--rust);
  content: "0" counter(area);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.area-location-grid article:hover {
  background: var(--ink) !important;
}

.area-location-grid h3 {
  margin: 0 0 12px !important;
  color: var(--ink) !important;
  font-size: 20px !important;
  letter-spacing: -.035em;
  transition: color .25s ease;
}

.area-location-grid p {
  margin: 0 !important;
  color: #68665f !important;
  font-size: 13px;
  line-height: 1.7;
  transition: color .25s ease;
}

.area-location-grid article:hover h3 {
  color: #fff !important;
}

.area-location-grid article:hover p {
  color: rgba(255, 255, 255, .62) !important;
}

.area-services {
  background: #fff;
}

.area-services .split {
  align-items: center;
}

.area-services .split > div:first-child > a:not(.btn) {
  display: inline-flex;
  margin-top: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--rust);
  color: var(--rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.area-enquiry {
  position: relative;
  padding: clamp(34px, 5vw, 56px) !important;
  overflow: hidden;
  border: 0 !important;
  background: var(--ink) !important;
  color: #fff;
}

.area-enquiry::after {
  position: absolute;
  right: -62px;
  bottom: -92px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  content: "";
}

.area-enquiry h3 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(30px, 3vw, 42px);
}

.area-enquiry p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .62);
}

.area-enquiry .btn {
  position: relative;
  z-index: 1;
  border-color: #fff !important;
  background: #fff !important;
  color: var(--ink) !important;
}

/* Process / pricing */

.market-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  counter-reset: process;
}

.market-steps::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 33.333%;
  height: 4px;
  background: var(--rust);
  content: "";
}

.market-steps article {
  position: relative;
  min-height: 355px;
  padding: clamp(34px, 4vw, 52px) !important;
  border: 0 !important;
  border-right: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  counter-increment: process;
}

.market-steps article:last-child {
  border-right: 0 !important;
}

.market-steps article > span {
  display: block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 0 74px !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--rust) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px !important;
  font-style: italic;
  font-weight: 400 !important;
}

.market-steps h3 {
  max-width: 280px;
  margin: 0 0 15px !important;
  color: var(--ink) !important;
  font-size: 25px !important;
}

.market-steps p {
  max-width: 290px;
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 14px;
}

/* Portfolio */

.work-introduction {
  padding: clamp(68px, 8vw, 110px) 0 !important;
  border-bottom: 1px solid var(--line) !important;
  background: #fff !important;
}

.work-introduction .container {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr) !important;
  gap: clamp(52px, 9vw, 130px) !important;
  align-items: start;
}

.work-introduction h2 {
  margin: 0 !important;
  font-size: clamp(36px, 4.5vw, 62px) !important;
}

.work-introduction p {
  max-width: 680px !important;
  margin: 5px 0 0 !important;
  padding-left: 34px;
  border-left: 1px solid var(--line);
  color: #64625d !important;
  font-size: 17px !important;
}

.work-projects {
  background: var(--paper-deep) !important;
}

.work-case-study {
  padding: clamp(88px, 10vw, 150px) 0 !important;
  border-bottom: 1px solid var(--line) !important;
}

.work-case-alternate {
  background: #fff !important;
}

.work-case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr) !important;
  gap: clamp(58px, 9vw, 128px) !important;
  align-items: center;
}

.work-case-alternate .work-case-image {
  order: 2;
}

.work-case-image {
  position: relative;
  overflow: visible !important;
  border: 0 !important;
  background: transparent !important;
}

.work-case-image::before {
  position: absolute;
  z-index: 0;
  right: -18px;
  bottom: -18px;
  width: 68%;
  height: 74%;
  background: var(--rust);
  content: "";
}

.work-case-alternate .work-case-image::before {
  right: auto;
  left: -18px;
}

.work-case-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.22 !important;
  object-fit: cover;
  filter: saturate(.82);
  transition: filter .4s ease, transform .7s var(--ease) !important;
}

.work-case-study:hover .work-case-image img {
  filter: saturate(1);
  transform: scale(1.012) !important;
}

.work-number {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 21px !important;
  color: var(--rust) !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: .16em !important;
}

.work-number::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.work-case-content > h2 {
  margin: 0 0 22px !important;
  color: var(--ink);
  font-size: clamp(38px, 4.5vw, 62px) !important;
}

.work-summary {
  margin: 0 0 34px !important;
  color: #5f5e58 !important;
  font-size: 17px !important;
  line-height: 1.78 !important;
}

.work-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px !important;
  margin-bottom: 27px !important;
  padding-top: 28px !important;
  border-top: 1px solid var(--line) !important;
}

.work-detail-grid h3 {
  margin: 0 0 10px !important;
  color: var(--ink);
  font-size: 13px !important;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.work-detail-grid p {
  margin: 0 !important;
  color: #716f69 !important;
  font-size: 13px !important;
  line-height: 1.72 !important;
}

.work-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 7px !important;
  margin: 0 0 28px !important;
}

.work-highlights li {
  padding: 8px 12px !important;
  border: 1px solid var(--line) !important;
  border-radius: 999px;
  background: transparent !important;
  color: #64625d !important;
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: .04em;
}

.work-case-content > a {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px !important;
  border-bottom: 1px solid var(--rust) !important;
  color: var(--rust) !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.work-case-content > a::after {
  content: "↗";
  font-size: 15px;
}

.work-closing {
  padding: clamp(68px, 8vw, 104px) 0 !important;
  background: var(--rust) !important;
}

.work-closing .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.work-closing h2 {
  margin: 0 0 12px !important;
  color: #fff;
}

.work-closing p {
  max-width: 710px;
  margin: 0;
  color: rgba(255, 255, 255, .7) !important;
}

.work-closing .btn {
  flex: 0 0 auto;
  border-color: #fff !important;
  background: #fff !important;
  color: var(--ink) !important;
}

/* Progressive contact */

.contact-hero {
  background:
    radial-gradient(circle at 84% 46%, rgba(230, 102, 34, .18) 0 8%, transparent 8.2%),
    radial-gradient(circle at 84% 46%, transparent 0 15%, rgba(255, 255, 255, .11) 15.2% 15.4%, transparent 15.6%),
    var(--ink) !important;
}

.contact-hero::before {
  background: rgba(255, 255, 255, .1);
}

.contact-hero .kicker {
  color: #f3a16f;
}

.contact-hero h1 {
  color: #fff !important;
}

.contact-hero p {
  color: rgba(255, 255, 255, .63) !important;
}

.contact-flow-section {
  padding: clamp(70px, 8vw, 116px) 0 clamp(90px, 10vw, 142px) !important;
  background: var(--paper-deep);
}

.contact-flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(310px, .66fr) !important;
  gap: 22px !important;
  align-items: start;
}

.enquiry-panel {
  min-height: 650px;
  padding: clamp(30px, 4.5vw, 58px) !important;
  border: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.form-progress {
  margin-bottom: 48px !important;
}

.form-progress-bar {
  height: 2px !important;
  margin-bottom: 15px !important;
  background: #e4dfd8 !important;
}

.form-progress-bar span {
  background: var(--rust) !important;
}

.form-progress-label {
  color: #7d7972 !important;
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-progress-label b {
  color: var(--ink) !important;
}

.form-step {
  min-width: 0;
}

.form-step legend {
  margin: 0 0 10px !important;
  color: var(--ink) !important;
  font-size: clamp(34px, 4.6vw, 58px) !important;
  font-weight: 600 !important;
  letter-spacing: -.05em;
  line-height: 1;
}

.step-intro {
  margin: 0 0 30px !important;
  color: #6b6963 !important;
  font-size: 15px;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.service-options label > span {
  position: relative;
  display: grid;
  min-height: 118px !important;
  padding: 20px !important;
  grid-template-columns: 37px minmax(0, 1fr) !important;
  column-gap: 15px;
  overflow: hidden;
  border: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: #fff !important;
  transition: border-color .2s ease, background-color .2s ease, transform .2s var(--ease);
}

.service-options label > span::after {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 8px;
  height: 8px;
  border: 1px solid #a9a49c;
  border-radius: 50%;
  content: "";
}

.service-options label > span:hover {
  border-color: rgba(161, 72, 41, .55) !important;
  transform: translateY(-2px);
}

.service-options input:checked + span {
  border-color: var(--rust) !important;
  background: #f8f1ed !important;
  box-shadow: inset 3px 0 var(--rust) !important;
}

.service-options input:checked + span::after {
  border-color: var(--rust);
  background: var(--rust);
  box-shadow: inset 0 0 0 2px #f8f1ed;
}

.service-options svg {
  width: 28px !important;
  height: 28px !important;
  stroke: var(--rust) !important;
  stroke-width: 1.4 !important;
}

.service-options b {
  color: var(--ink) !important;
  font-size: 14px !important;
}

.service-options small {
  color: #77746e !important;
  font-size: 11px;
}

.flow-fields {
  gap: 20px !important;
}

.flow-fields label {
  gap: 9px !important;
}

.flow-fields label > span {
  color: #454641 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.flow-fields input,
.flow-fields textarea,
.flow-fields select {
  min-height: 54px;
  padding: 15px 16px !important;
  border: 1px solid #ccc6be !important;
  border-radius: 0 !important;
  background: #fbfaf7 !important;
  color: var(--ink);
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.flow-fields textarea {
  min-height: 150px;
}

.flow-fields input:focus,
.flow-fields textarea:focus,
.flow-fields select:focus {
  outline: 0 !important;
  border-color: var(--rust) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(161, 72, 41, .1) !important;
}

.consent-check {
  margin-top: 25px !important;
  color: #66645e !important;
  font-size: 12px !important;
}

.consent-check input {
  accent-color: var(--rust) !important;
}

.form-actions {
  margin-top: 31px !important;
  padding-top: 25px !important;
  border-top: 1px solid var(--line) !important;
}

.flow-back {
  padding: 0 16px !important;
  color: #65635e !important;
  font-size: 11px;
  font-weight: 800 !important;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.form-error {
  color: #9d3928 !important;
  font-size: 12px !important;
}

.form-success {
  padding: 78px 24px !important;
}

.form-success > svg {
  stroke: var(--rust) !important;
}

.business-contact-card {
  position: sticky;
  top: 110px !important;
  padding: clamp(30px, 3.5vw, 43px) !important;
  overflow: hidden;
  border: 0 !important;
  border-top: 0 !important;
  background: var(--ink) !important;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.business-contact-card::after {
  position: absolute;
  right: -92px;
  bottom: -114px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.business-contact-card .kicker {
  color: #f3a16f;
}

.business-contact-card h2 {
  margin: 3px 0 13px !important;
  color: #fff;
  font-size: clamp(30px, 3vw, 42px) !important;
}

.business-contact-card > p {
  margin: 0 0 27px !important;
  color: rgba(255, 255, 255, .59) !important;
  font-size: 13px;
}

.direct-contact-list {
  display: grid;
  gap: 1px !important;
  border: 1px solid rgba(255, 255, 255, .13) !important;
  background: rgba(255, 255, 255, .13) !important;
}

.business-contact-card .direct-contact-list a {
  padding: 16px !important;
  background: rgba(255, 255, 255, .055) !important;
  color: #fff !important;
}

.business-contact-card .direct-contact-list a:hover {
  background: rgba(255, 255, 255, .11) !important;
}

.business-contact-card .direct-contact-list svg {
  stroke: #f3a16f !important;
}

.business-contact-card .direct-contact-list small {
  color: rgba(255, 255, 255, .45) !important;
}

.business-contact-card .direct-contact-list b {
  color: #fff;
}

.contact-area {
  position: relative;
  z-index: 1;
  border-top-color: rgba(255, 255, 255, .15) !important;
}

.contact-area svg {
  stroke: #f3a16f !important;
}

.contact-area b {
  color: #fff;
}

.contact-area small {
  color: rgba(255, 255, 255, .48) !important;
}

/* Legal, reviews and retained template pages */

.legal-copy {
  max-width: 880px !important;
  margin: 0 auto;
  counter-reset: legal;
}

.legal-copy h2 {
  position: relative;
  margin: 0 !important;
  padding: 34px 0 15px 70px;
  border-top: 1px solid var(--line);
  font-size: clamp(28px, 3.2vw, 42px);
  counter-increment: legal;
}

.legal-copy h2::before {
  position: absolute;
  top: 44px;
  left: 0;
  color: var(--rust);
  content: "0" counter(legal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.legal-copy p {
  margin: 0 0 44px;
  padding-left: 70px;
}

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

.testimonial-list article {
  min-height: 270px;
  padding: 38px !important;
  border: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
}

.testimonial-list article::before {
  display: block;
  margin-bottom: 40px;
  color: var(--rust);
  content: "“";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: .5;
}

main > .page-hero + .section > .container > img {
  width: 100%;
  max-height: 620px;
  margin-bottom: 55px;
  object-fit: cover;
  box-shadow: 18px 18px 0 var(--rust);
}

/* Calls to action */

.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 94px) 0 !important;
  background: var(--rust) !important;
  color: #fff !important;
}

.cta::before {
  position: absolute;
  top: 50%;
  right: 6vw;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.cta .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.cta h2 {
  margin: 0 0 9px !important;
  color: #fff !important;
  font-size: clamp(36px, 4.2vw, 58px) !important;
}

.cta p {
  margin: 0 !important;
  color: rgba(255, 255, 255, .68) !important;
}

.cta .btn-white {
  flex: 0 0 auto;
  border-color: #fff !important;
  background: #fff !important;
  color: var(--ink) !important;
}

.cta .btn-white::after {
  background: var(--ink);
}

.cta .btn-white:hover {
  border-color: var(--ink) !important;
  background: var(--ink) !important;
  color: #fff !important;
}

.cta .btn-white:hover::after {
  background: var(--rust);
}

/* Footer */

.footer {
  padding: clamp(80px, 9vw, 126px) 0 0 !important;
  border: 0 !important;
  background: #1c1d1b !important;
  color: rgba(255, 255, 255, .68);
}

.footer-main {
  position: relative;
  display: grid;
  padding-top: 54px !important;
  grid-template-columns: minmax(260px, 1.3fr) minmax(130px, .55fr) minmax(120px, .48fr) minmax(260px, .95fr) !important;
  gap: clamp(36px, 5vw, 72px) !important;
  border-top: 1px solid rgba(255, 255, 255, .18) !important;
}

.footer-main::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 150px;
  height: 4px;
  background: var(--rust);
  content: "";
}

.footer-company {
  gap: 22px !important;
}

.footer-brand {
  width: min(280px, 100%) !important;
}

.footer-brand img {
  width: 100%;
  max-height: none !important;
  filter: grayscale(1) brightness(4.5);
  opacity: .92;
}

.footer-company > p {
  max-width: 350px !important;
  color: rgba(255, 255, 255, .48) !important;
  font-size: 13px !important;
  line-height: 1.75 !important;
}

.footer nav {
  display: grid;
  align-content: start;
  gap: 11px !important;
}

.footer nav h2 {
  margin: 6px 0 20px !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer nav a {
  width: fit-content;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  color: rgba(255, 255, 255, .54) !important;
  font-size: 12px !important;
  transition: color .18s ease, border-color .18s ease, transform .18s ease;
}

.footer nav a:hover {
  border-color: var(--rust);
  color: #fff !important;
  transform: translateX(3px);
}

.footer-cta {
  position: relative;
  padding: 31px !important;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15) !important;
  border-left: 1px solid rgba(255, 255, 255, .15) !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, .045) !important;
  box-shadow: none !important;
}

.footer-cta::after {
  position: absolute;
  top: -44px;
  right: -44px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  content: "";
}

.footer-cta .kicker {
  color: #f3a16f !important;
}

.footer-cta h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 11px !important;
  color: #fff !important;
  font-size: 27px !important;
}

.footer-cta p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .49) !important;
  font-size: 12px !important;
}

.footer-cta .btn {
  position: relative;
  z-index: 1;
  border-color: #fff !important;
  background: #fff !important;
  color: var(--ink) !important;
}

.footer-contact-list {
  width: 100%;
  max-width: 370px;
  margin-top: 2px !important;
  border-color: rgba(255, 255, 255, .12) !important;
  background: rgba(255, 255, 255, .12) !important;
}

.footer-contact-list a,
.footer-contact-list a:hover {
  padding: 12px 13px !important;
  background: rgba(255, 255, 255, .035) !important;
  color: #fff !important;
  transform: none !important;
}

.footer-contact-list a:hover {
  background: rgba(255, 255, 255, .08) !important;
}

.footer-contact-list svg {
  width: 21px !important;
  height: 21px !important;
  stroke: #f3a16f !important;
}

.footer-contact-list .whatsapp-link svg {
  fill: #7ecb95 !important;
  stroke: none !important;
}

.footer-contact-list small {
  color: rgba(255, 255, 255, .38) !important;
}

.footer-contact-list b {
  color: rgba(255, 255, 255, .82);
  font-size: 12px !important;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: clamp(58px, 7vw, 92px) !important;
  padding: 25px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, .12) !important;
}

.footer-legal > span,
.footer-legal a {
  color: rgba(255, 255, 255, .36) !important;
  font-size: 10px !important;
  letter-spacing: .05em;
}

.footer-legal > div {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-legal a:hover {
  color: #fff !important;
}

/* Interaction polish */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(230, 102, 34, .42);
  outline-offset: 4px;
}

/* Responsive */

@media (max-width: 1080px) {
  .container {
    width: min(var(--max), calc(100% - 48px));
  }

  .nj-hero-copy {
    width: min(var(--max), calc(100% - 48px)) !important;
  }

  .header .logo.brand-slot {
    width: 205px !important;
  }

  .header .nav > a,
  .header .nav-group > summary {
    padding-inline: 10px !important;
  }

  .footer-main {
    grid-template-columns: 1.25fr .6fr .55fr !important;
  }

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

  .coverage-grid.area-location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  .section-heading {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .section-heading .kicker {
    margin-bottom: -4px;
  }

  .section-heading p {
    max-width: 650px;
  }

  .nj-service-grid > a,
  .nj-service-grid > a:first-child,
  .nj-service-grid > a:nth-child(2) {
    grid-column: span 6;
  }

  .service-detail-grid,
  .service-body .container {
    grid-template-columns: 1fr !important;
  }

  .service-detail-grid {
    gap: 62px !important;
  }

  .service-image {
    max-width: 760px;
  }

  .service-body .container {
    gap: 55px !important;
  }

  .work-case-grid {
    grid-template-columns: 1fr !important;
    gap: 60px !important;
  }

  .work-case-alternate .work-case-image {
    order: 0 !important;
  }

  .contact-flow-layout {
    grid-template-columns: 1fr !important;
  }

  .business-contact-card {
    position: relative !important;
    top: auto !important;
  }
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 30px);
  }

  .section {
    padding: 70px 0;
  }

  h1 {
    font-size: clamp(43px, 13vw, 64px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 49px);
  }

  .header-inner {
    width: 100% !important;
    min-height: 76px !important;
    height: 76px !important;
    padding-inline: 15px;
  }

  .header .logo.brand-slot {
    width: min(182px, calc(100vw - 92px)) !important;
    min-width: 0 !important;
    max-width: calc(100vw - 92px) !important;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .btn-header {
    display: none !important;
  }

  .header .nav {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: 0 !important;
    display: none;
    width: 100% !important;
    max-height: calc(100vh - 76px);
    padding: 13px 15px 20px !important;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: rgba(250, 248, 243, .99) !important;
    box-shadow: 0 24px 45px rgba(34, 27, 21, .14);
  }

  .header .nav.open {
    display: block;
  }

  .header .nav > a,
  .header .nav-group > summary {
    display: flex !important;
    width: 100%;
    min-height: 50px !important;
    padding: 14px 13px !important;
    justify-content: space-between;
    border-radius: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    color: var(--ink) !important;
    font-size: 12px !important;
  }

  .header .nav .nav-group > .nav-dropdown,
  .header .nav .nav-group > .nav-explore {
    position: static !important;
    inset: auto !important;
    display: grid;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 6px 0 11px 13px !important;
    gap: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    backdrop-filter: none;
  }

  .header .nav .nav-group:not([open]) > .nav-dropdown {
    display: none !important;
  }

  .header .nav .nav-dropdown > a {
    display: block !important;
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 11px 12px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(32, 33, 31, .08) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--ink) !important;
    transform: none;
  }

  .header .nav .nav-dropdown > a b {
    color: var(--ink) !important;
  }

  .header .nav .nav-dropdown > a small {
    color: #77736c !important;
  }

  .header .nav .mobile-quote-link {
    display: flex !important;
    min-height: 50px !important;
    margin-top: 14px;
    justify-content: center !important;
    border: 1px solid var(--ink) !important;
    border-radius: 999px !important;
    background: var(--ink) !important;
    color: #fff !important;
  }

  .nj-hero {
    min-height: 680px !important;
  }

  .nj-hero-copy {
    width: calc(100% - 30px) !important;
    padding: 98px 0 74px !important;
  }

  .nj-hero-copy::after {
    display: none;
  }

  .nj-hero-copy h1 {
    font-size: clamp(45px, 13vw, 67px) !important;
  }

  .nj-hero-copy p {
    max-width: 550px;
    font-size: 15px;
  }

  .nj-hero-image::after {
    background:
      linear-gradient(90deg, rgba(23, 23, 21, .88), rgba(23, 23, 21, .6)),
      linear-gradient(0deg, rgba(23, 23, 21, .55), transparent 50%);
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: space-between;
  }

  .page-hero,
  .contact-hero {
    padding: 78px 0 66px !important;
  }

  .page-hero h1,
  .contact-hero h1 {
    font-size: clamp(45px, 13vw, 67px) !important;
  }

  .section .split,
  .section > .container.split {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section .split > div:last-child,
  .section > .container.split > div:last-child {
    padding-top: 0;
  }

  .nj-atelier + .section .split > div:last-child,
  .nj-atelier + .section > .container.split > div:last-child,
  .areas-intro .split > div:last-child {
    padding: 28px 0 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .areas-intro .split > div:last-child {
    border-top-color: var(--line);
  }

  .trust-panel {
    grid-template-columns: 100px minmax(0, 1fr) !important;
  }

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

  .nj-service-grid > a,
  .nj-service-grid > a:first-child,
  .nj-service-grid > a:nth-child(2) {
    grid-column: auto;
  }

  .nj-service-grid img,
  .nj-service-grid > a:first-child img,
  .nj-service-grid > a:nth-child(2) img {
    aspect-ratio: 1.48 !important;
  }

  .service-detail-hero {
    padding: 62px 0 82px !important;
  }

  .service-detail-hero h1 {
    font-size: clamp(45px, 13vw, 67px) !important;
  }

  .service-image {
    margin-right: 16px;
  }

  .service-image img {
    box-shadow: 16px 16px 0 var(--rust) !important;
  }

  .service-image::before {
    right: -12px;
    bottom: -12px;
    width: 72px;
    height: 72px;
  }

  .service-body .container > div:last-child {
    padding: 28px 23px;
  }

  .service-body + .section > .container {
    max-width: none;
    margin-inline: auto;
  }

  .coverage-grid.area-location-grid {
    grid-template-columns: 1fr !important;
  }

  .area-location-grid article {
    min-height: 220px !important;
  }

  .market-steps {
    grid-template-columns: 1fr !important;
  }

  .market-steps::before {
    width: 100%;
  }

  .market-steps article {
    min-height: 0;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .market-steps article:last-child {
    border-bottom: 0 !important;
  }

  .market-steps article > span {
    margin-bottom: 43px !important;
  }

  .work-introduction .container {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .work-introduction p {
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .work-case-image::before {
    right: -10px;
    bottom: -10px;
  }

  .work-case-alternate .work-case-image::before {
    right: -10px;
    left: auto;
  }

  .work-detail-grid {
    grid-template-columns: 1fr;
    gap: 21px !important;
  }

  .work-closing .container,
  .cta .container {
    align-items: stretch;
    flex-direction: column;
  }

  .work-closing .btn,
  .cta .btn {
    width: 100%;
    justify-content: space-between;
  }

  .contact-flow-section {
    padding: 28px 0 78px !important;
  }

  .enquiry-panel {
    min-height: 0;
    padding: 27px 19px !important;
  }

  .service-options,
  .flow-fields.two-column {
    grid-template-columns: 1fr !important;
  }

  .business-contact-card {
    padding: 30px 23px !important;
  }

  .legal-copy h2 {
    padding-left: 47px;
  }

  .legal-copy h2::before {
    left: 0;
  }

  .legal-copy p {
    padding-left: 47px;
  }

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

  .footer {
    padding-top: 72px !important;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr !important;
    gap: 43px 24px !important;
  }

  .footer-company,
  .footer-cta {
    grid-column: 1 / -1;
  }

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

@media (max-width: 460px) {
  .container {
    width: calc(100% - 24px);
  }

  .nj-hero-copy {
    width: calc(100% - 24px) !important;
  }

  .header-inner {
    padding-inline: 12px;
  }

  .trust-panel {
    grid-template-columns: 1fr !important;
  }

  .brand-mark {
    width: 100px;
    margin: 0;
  }

  .footer-main {
    grid-template-columns: 1fr !important;
  }

  .footer-company,
  .footer-cta {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
