:root {
  --ink: #171717;
  --ink-soft: #4f4b43;
  --gold: #f3bd24;
  --gold-deep: #c98b00;
  --gold-pale: #fff5ce;
  --paper: #ffffff;
  --paper-soft: #f8f7f3;
  --navy: #17324d;
  --line: #dfdcd3;
  --success: #176b46;
  --danger: #9e2e2e;
  --shadow: 0 18px 44px rgba(30, 25, 13, 0.12);
  --content: 1240px;
  --header-height: 146px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.is-busy {
  cursor: progress;
}

body.is-busy::after {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 148px;
  width: 36px;
  height: 36px;
  border: 4px solid rgba(255, 255, 255, 0.85);
  border-top-color: var(--gold);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  content: "";
  animation: spin 800ms linear infinite;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

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

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

h1,
h2,
h3,
strong {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

.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: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.offer-bar {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 7px 24px;
  color: var(--paper);
  background: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
}

.offer-bar p {
  margin: 0;
}

.offer-bar a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 26px rgba(24, 23, 18, 0.09);
}

.header-primary,
.site-nav {
  width: min(var(--content), calc(100% - 48px));
  margin-inline: auto;
}

.header-primary {
  min-height: 74px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand {
  width: 205px;
}

.brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.header-contact {
  display: flex;
  justify-content: flex-end;
  gap: 36px;
}

.header-contact a {
  display: grid;
  gap: 1px;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
}

.header-contact span {
  color: var(--ink-soft);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.header-contact strong {
  font-size: 0.88rem;
}

.site-nav {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  border-top: 1px solid #eceae4;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 14px 0 12px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--gold-deep);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  margin-left: auto;
  padding: 9px 15px;
  background: var(--gold);
  border: 1px solid var(--gold);
}

.site-nav .nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 500px;
  background: #d8d1c1;
  overflow: hidden;
}

.hero-track {
  position: relative;
  height: min(620px, calc(100vh - var(--header-height) - 80px));
  min-height: 500px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide picture,
.hero-slide picture img {
  width: 100%;
  height: 100%;
}

.hero-slide picture img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform 5.5s ease;
}

.hero-slide.is-active picture img {
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(9, 15, 20, 0.24);
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(6vw, calc((100% - var(--content)) / 2));
  width: min(580px, calc(100% - 120px));
  color: var(--paper);
  transform: translateY(-50%);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.38);
}

.hero-kicker,
.eyebrow {
  margin-bottom: 13px;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-kicker {
  color: #ffe082;
}

.hero-content h1,
.hero-content h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 3.6rem;
  font-weight: 800;
}

.hero-content p:not(.hero-kicker) {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: 1.08rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.button-gold {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
  text-shadow: none;
}

.button-light {
  color: var(--paper);
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.72);
}

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

.button-outline {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.62);
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 160ms ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: var(--gold);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 22px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.hero-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--gold);
}

.trust-strip {
  position: relative;
  z-index: 5;
  width: min(var(--content), calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: -1px auto 0;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trust-item {
  min-width: 0;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 5px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.88rem;
}

.trust-item span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.section {
  width: min(var(--content), calc(100% - 48px));
  margin-inline: auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.process-intro h2,
.customize-copy h2,
.enquiry-intro h2 {
  margin-bottom: 17px;
  font-size: 2.5rem;
  font-weight: 800;
}

.section-heading > p:last-child,
.split-heading > p,
.process-intro > p,
.customize-copy > p,
.enquiry-intro > p {
  color: var(--ink-soft);
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 54px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 3px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--gold-deep);
  text-underline-offset: 5px;
}

.category-section {
  padding-bottom: 106px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 310px;
  gap: 16px;
}

.category-tile {
  position: relative;
  min-width: 0;
  color: var(--paper);
  background: var(--navy);
  border-radius: 4px;
  overflow: hidden;
}

.category-tile.category-wide {
  grid-column: span 2;
}

.category-tile::after {
  position: absolute;
  inset: 40% 0 0;
  background: rgba(8, 13, 17, 0.58);
  content: "";
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.category-tile:hover img,
.category-tile:focus-visible img {
  transform: scale(1.045);
}

.category-tile > span {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
}

.category-tile strong,
.category-tile small {
  display: block;
}

.category-tile strong {
  margin-bottom: 3px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.1rem;
}

.category-tile small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.services-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - var(--content)) / 2));
  padding-left: max(24px, calc((100% - var(--content)) / 2));
  background: var(--paper-soft);
}

.service-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.service-filter button {
  min-height: 38px;
  padding: 8px 14px;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.service-filter button.is-active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.service-card[hidden] {
  display: none;
}

.service-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #e9e5da;
  overflow: hidden;
}

.service-card-image::before,
.product-image::before,
.catalogue-image::before,
.review-product-image::before,
.work-card-image::before,
.category-tile::before,
.hero-slide::before,
.work-hero::before,
.contact-brand::before,
.brand::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  background: rgba(238, 234, 224, 0.92);
  content: "";
  font-size: 0.72rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease;
}

.service-card-image.is-loading::before,
.product-image.is-loading::before,
.catalogue-image.is-loading::before,
.review-product-image.is-loading::before,
.work-card-image.is-loading::before,
.category-tile.is-loading::before,
.hero-slide.is-loading::before,
.work-hero.is-loading::before,
.contact-brand.is-loading::before,
.brand.is-loading::before {
  width: 34px;
  height: 34px;
  inset: calc(50% - 17px);
  background: transparent;
  border: 4px solid rgba(23, 23, 23, 0.16);
  border-top-color: var(--gold-deep);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
  opacity: 1;
}

.service-card-image.is-error::before,
.product-image.is-error::before,
.catalogue-image.is-error::before,
.review-product-image.is-error::before,
.work-card-image.is-error::before,
.category-tile.is-error::before,
.hero-slide.is-error::before,
.work-hero.is-error::before,
.contact-brand.is-error::before,
.brand.is-error::before {
  width: auto;
  height: auto;
  inset: 0;
  padding: 16px;
  background: #f4efe1;
  border: 0;
  border-radius: 0;
  content: "Unable to load image due to busy servers";
  animation: none;
  opacity: 1;
  text-align: center;
}

.service-card-image img,
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

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

.service-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.service-card-body small {
  margin-bottom: 8px;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card-body h3 {
  margin-bottom: 9px;
  font-size: 1rem;
}

.service-card-body p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.service-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.service-card-footer strong {
  font-size: 0.74rem;
}

.service-card-footer a {
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
}

.process-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 70px;
  padding: 94px max(24px, calc((100% - var(--content)) / 2));
  color: var(--paper);
  background: var(--navy);
}

.process-intro .eyebrow {
  color: var(--gold);
}

.process-intro > p {
  color: rgba(255, 255, 255, 0.7);
}

.process-intro .text-link {
  margin-top: 16px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list span,
.process-list strong,
.process-list p {
  display: block;
}

.process-list span {
  margin-bottom: 32px;
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
}

.process-list strong {
  margin-bottom: 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.92rem;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.78rem;
}

.merchandise-section {
  overflow: hidden;
}

.product-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 25%);
  gap: 16px;
  padding-bottom: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--gold-deep) var(--paper-soft);
  scrollbar-width: thin;
}

.product-card {
  min-width: 0;
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--paper-soft);
  overflow: hidden;
}

.product-card-body {
  padding: 18px;
}

.product-card-body h3 {
  min-height: 2.2em;
  margin-bottom: 7px;
  font-size: 0.98rem;
}

.product-card-body p {
  min-height: 3.6em;
  margin-bottom: 15px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-size: 0.73rem;
}

.product-price strong {
  color: var(--navy);
}

.catalogue-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 54px;
  margin-top: 76px;
  padding-top: 58px;
  border-top: 1px solid var(--line);
}

.catalogue-heading h3 {
  margin-bottom: 0;
  font-size: 1.65rem;
}

.catalogue-heading > p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.catalogue-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 22px;
}

.catalogue-filter button {
  min-height: 38px;
  padding: 8px 13px;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.catalogue-filter button.is-active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.catalogue-card {
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.catalogue-card[hidden] {
  display: none;
}

.catalogue-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--paper-soft);
  overflow: hidden;
}

.catalogue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.catalogue-card:hover .catalogue-image img {
  transform: scale(1.035);
}

.catalogue-card-body {
  padding: 17px;
}

.catalogue-card-body small {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-deep);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.catalogue-card-body h3 {
  min-height: 2.25em;
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.catalogue-card-body p {
  min-height: 4.7em;
  margin-bottom: 15px;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.catalogue-card-body a {
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
}

.customize-promo {
  width: min(var(--content), calc(100% - 48px));
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  margin: 0 auto 96px;
  background: var(--gold-pale);
  border: 1px solid #e6cb75;
}

.customize-media {
  min-height: 470px;
  overflow: hidden;
}

.customize-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customize-copy {
  align-self: center;
  padding: 54px;
}

.customize-copy .button {
  margin-top: 10px;
}

.review-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - var(--content)) / 2));
  padding-left: max(24px, calc((100% - var(--content)) / 2));
  background: var(--paper-soft);
}

.work-hero {
  position: relative;
  min-height: 430px;
  color: var(--paper);
  background: var(--navy);
  overflow: hidden;
}

.work-hero picture,
.work-hero img {
  width: 100%;
  height: 100%;
}

.work-hero picture {
  position: absolute;
  inset: 0;
}

.work-hero img {
  object-fit: cover;
}

.work-hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 48px));
  padding: 128px 0 118px;
  margin-inline: max(24px, calc((100% - var(--content)) / 2));
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.38);
}

.work-hero-content h1 {
  margin-bottom: 18px;
  font-size: 3.2rem;
  font-weight: 800;
}

.work-hero-content p:not(.hero-kicker) {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 1.05rem;
  font-weight: 500;
}

.work-section {
  padding-top: 86px;
}

.work-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.work-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work-filter button {
  min-height: 38px;
  padding: 8px 14px;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.work-filter button.is-active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.work-toolbar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.work-card {
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.work-card[hidden] {
  display: none;
}

.work-card-image {
  aspect-ratio: 4 / 3;
  background: var(--paper-soft);
  overflow: hidden;
}

.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.work-card:hover .work-card-image img {
  transform: scale(1.035);
}

.work-card-body {
  padding: 20px;
}

.work-card-body small,
.work-card-body span {
  display: block;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.work-card-body h3 {
  margin: 9px 0;
  font-size: 1rem;
}

.work-card-body p {
  min-height: 4.5em;
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.work-card-body span {
  color: var(--navy);
  text-transform: none;
}

.review-shell {
  max-width: 920px;
  margin-inline: auto;
}

.review-track {
  position: relative;
  min-height: 290px;
}

.review-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 42px;
  padding: 38px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.review-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.review-product-image {
  aspect-ratio: 1 / 1;
  background: var(--paper-soft);
  border-radius: 50%;
  overflow: hidden;
}

.review-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-stars {
  margin-bottom: 14px;
  color: var(--gold-deep);
  font-size: 1rem;
}

.review-quote {
  margin-bottom: 20px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.55;
}

.review-author {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.review-author strong {
  color: var(--ink);
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.review-controls button {
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.review-controls span {
  min-width: 54px;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
}

.review-form {
  max-width: 920px;
  display: grid;
  gap: 20px;
  padding: 30px;
  margin: 34px auto 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
}

.review-form h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.review-form p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

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

.review-form label {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.review-form label > span {
  font-size: 0.72rem;
  font-weight: 800;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #cfcac0;
  border-radius: 2px;
  outline: none;
}

.review-form textarea {
  min-height: 110px;
  resize: vertical;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(201, 139, 0, 0.15);
}

.enquiry-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 76px;
}

.enquiry-intro dl {
  margin: 40px 0 0;
}

.enquiry-intro dl div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.enquiry-intro dt {
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.enquiry-intro dd {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.enquiry-form {
  padding: 34px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
}

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

.enquiry-form label {
  min-width: 0;
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.enquiry-form label > span {
  font-size: 0.72rem;
  font-weight: 800;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #cfcac0;
  border-radius: 2px;
  outline: none;
}

.enquiry-form textarea {
  min-height: 110px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(201, 139, 0, 0.15);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-actions p {
  margin: 0;
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(260px, 0.65fr) minmax(280px, 0.55fr);
  gap: 54px;
  padding: 72px max(24px, calc((100% - var(--content)) / 2));
  color: var(--paper);
  background: var(--ink);
}

.contact-brand img {
  width: min(280px, 100%);
  height: 90px;
  padding: 10px;
  background: var(--paper);
  object-fit: contain;
  object-position: left center;
}

.brand,
.contact-brand,
.review-product-image,
.work-card-image,
.work-hero {
  position: relative;
}

.contact-brand p {
  max-width: 340px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-details,
.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-details .eyebrow {
  color: var(--gold);
}

.contact-details a {
  margin-bottom: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.contact-details p:last-child {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.contact-actions {
  gap: 10px;
}

.contact-actions .button {
  width: 100%;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(24px, calc((100% - var(--content)) / 2));
  color: var(--paper);
  background: #090909;
  border-top: 1px solid #333;
  font-size: 0.74rem;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: rgba(255, 255, 255, 0.68);
}

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: #1f9d60;
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  font-size: 0.72rem;
  font-weight: 800;
}

.floating-whatsapp img {
  width: 28px;
  height: 28px;
  filter: invert(1);
  pointer-events: none;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 82px;
  max-width: min(360px, calc(100% - 44px));
  padding: 13px 16px;
  color: var(--paper);
  background: var(--ink);
  border-left: 4px solid var(--gold);
  border-radius: 3px;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 111px;
  }

  .header-primary,
  .site-nav {
    width: min(100% - 32px, var(--content));
  }

  .header-primary {
    min-height: 74px;
    grid-template-columns: minmax(180px, 1fr) auto auto;
  }

  .header-contact {
    gap: 18px;
  }

  .header-contact a:first-child {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 110px;
    right: 0;
    bottom: 0;
    width: min(380px, 88vw);
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 20px;
    margin: 0;
    background: var(--paper);
    border: 0;
    box-shadow: -20px 22px 40px rgba(0, 0, 0, 0.16);
    overflow-y: auto;
    transform: translateX(110%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 15px 8px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin: 18px 0 0;
    text-align: center;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

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

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

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

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

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

  .category-tile.category-wide {
    grid-column: span 1;
  }

  .process-band {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .process-intro {
    max-width: 700px;
  }

  .product-scroller {
    grid-auto-columns: minmax(250px, 34%);
  }

  .customize-promo {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  }

  .customize-copy {
    padding: 38px;
  }

  .enquiry-section {
    gap: 42px;
  }

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

  .contact-actions {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .offer-bar {
    justify-content: space-between;
  }

  .header-contact {
    display: none;
  }

  .header-primary {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .hero,
  .hero-track {
    min-height: 520px;
  }

  .hero-track {
    height: 62vh;
    max-height: 620px;
  }

  .hero-content h1,
  .hero-content h2,
  .work-hero-content h1 {
    font-size: 2.7rem;
  }

  .hero-arrow {
    display: none;
  }

  .section-heading h2,
  .process-intro h2,
  .customize-copy h2,
  .enquiry-intro h2 {
    font-size: 2rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 290px;
  }

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

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

  .product-scroller {
    grid-auto-columns: minmax(250px, 46%);
  }

  .customize-promo {
    grid-template-columns: 1fr;
  }

  .customize-media {
    min-height: 360px;
  }

  .enquiry-section {
    grid-template-columns: 1fr;
  }

  .enquiry-intro {
    max-width: 660px;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 100px;
  }

  .offer-bar {
    min-height: 34px;
    gap: 10px;
    padding: 7px 14px;
    font-size: 0.68rem;
  }

  .offer-bar p {
    max-width: 72%;
  }

  .header-primary {
    width: calc(100% - 28px);
    min-height: 66px;
  }

  .brand {
    width: 172px;
  }

  .brand img {
    height: 50px;
  }

  .site-nav {
    top: 100px;
  }

  .hero,
  .hero-track {
    min-height: 540px;
  }

  .hero-track {
    height: 74vh;
    max-height: 660px;
  }

  .hero-slide picture img {
    object-position: center;
  }

  .hero-shade {
    background: rgba(8, 12, 16, 0.42);
  }

  .hero-content {
    top: auto;
    right: 24px;
    bottom: 56px;
    left: 24px;
    width: auto;
    transform: none;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 2.15rem;
  }

  .hero-content p:not(.hero-kicker) {
    margin-bottom: 20px;
    font-size: 0.94rem;
  }

  .hero-actions .button {
    flex: 1 1 140px;
  }

  .hero-dots {
    bottom: 22px;
  }

  .trust-strip,
  .section,
  .customize-promo {
    width: calc(100% - 28px);
  }

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

  .trust-item,
  .trust-item:nth-child(2) {
    padding: 17px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .services-section,
  .review-section {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .process-intro h2,
  .customize-copy h2,
  .enquiry-intro h2 {
    font-size: 1.72rem;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .catalogue-heading {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 58px;
    padding-top: 42px;
  }

  .catalogue-filter {
    flex-wrap: nowrap;
    padding-bottom: 8px;
    overflow-x: auto;
  }

  .catalogue-filter button {
    flex: 0 0 auto;
  }

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

  .work-hero-content {
    width: calc(100% - 40px);
    padding: 104px 0 88px;
    margin-inline: 20px;
  }

  .work-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .work-filter {
    flex-wrap: nowrap;
    max-width: 100%;
    padding-bottom: 8px;
    overflow-x: auto;
  }

  .work-filter button {
    flex: 0 0 auto;
  }

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

  .work-card {
    display: grid;
    grid-template-columns: minmax(120px, 0.85fr) minmax(0, 1.15fr);
  }

  .work-card-image {
    height: 100%;
    min-height: 220px;
    aspect-ratio: auto;
  }

  .work-card-body p {
    min-height: 0;
  }

  .catalogue-card {
    display: grid;
    grid-template-columns: minmax(120px, 0.85fr) minmax(0, 1.15fr);
  }

  .catalogue-image {
    height: 100%;
    min-height: 220px;
    aspect-ratio: auto;
  }

  .catalogue-card-body h3,
  .catalogue-card-body p {
    min-height: 0;
  }

  .category-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .service-filter {
    flex-wrap: nowrap;
    padding-bottom: 8px;
    overflow-x: auto;
  }

  .service-filter button {
    flex: 0 0 auto;
  }

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

  .service-card {
    display: grid;
    grid-template-columns: minmax(120px, 0.8fr) minmax(0, 1.2fr);
  }

  .service-card-image {
    height: 100%;
    min-height: 210px;
    aspect-ratio: auto;
  }

  .service-card-body {
    padding: 17px;
  }

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

  .process-band {
    padding: 72px 14px;
  }

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

  .process-list li {
    padding: 22px;
  }

  .process-list span {
    margin-bottom: 18px;
  }

  .product-scroller {
    grid-auto-columns: 82%;
  }

  .customize-promo {
    margin-bottom: 72px;
  }

  .customize-media {
    min-height: 280px;
  }

  .customize-copy {
    padding: 28px 22px;
  }

  .review-track {
    min-height: 520px;
  }

  .review-card {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 22px;
    padding: 24px;
  }

  .review-form {
    padding: 22px 16px;
  }

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

  .review-product-image {
    width: 120px;
  }

  .review-quote {
    font-size: 0.98rem;
  }

  .enquiry-intro dl div {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .enquiry-form {
    padding: 22px 16px;
  }

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

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-band {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 58px 20px;
  }

  .contact-actions {
    grid-column: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 20px;
  }

  .site-footer nav {
    gap: 14px 20px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 390px) {
  .offer-bar p {
    max-width: 68%;
  }

  .brand {
    width: 148px;
  }

  .hero-content {
    right: 18px;
    left: 18px;
  }

  .hero-content h1,
  .hero-content h2,
  .work-hero-content h1 {
    font-size: 1.86rem;
  }

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

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

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

  .catalogue-image {
    min-height: 260px;
  }

  .service-card-image {
    min-height: 230px;
  }

  .product-scroller {
    grid-auto-columns: 90%;
  }

  .review-track {
    min-height: 560px;
  }
}

@media (max-height: 700px) {
  .hero,
  .hero-track {
    min-height: 330px;
  }

  .hero-track {
    height: calc(100vh - var(--header-height) - 50px);
  }

  .hero-content {
    bottom: 38px;
  }

  .hero-content p:not(.hero-kicker) {
    margin-bottom: 16px;
  }

  .hero-dots {
    bottom: 14px;
  }
}

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