:root {
  --ink: #172126;
  --muted: #5b6a70;
  --paper: #ffffff;
  --mist: #eef3f5;
  --line: #d8e3e7;
  --steel: #253238;
  --blue: #1d6278;
  --teal: #1e766b;
  --orange: #d87422;
  --orange-dark: #b95c14;
  --shadow: 0 18px 45px rgba(16, 35, 42, 0.12);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 227, 231, 0.88);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: var(--radius);
  color: #26373d;
  font-size: 0.92rem;
  font-weight: 650;
  padding: 10px 12px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--mist);
  outline: none;
}

.site-nav .nav-cta {
  background: var(--orange);
  color: var(--paper);
  margin-left: 6px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--orange-dark);
}

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

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: clamp(560px, 76svh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center right;
  z-index: -3;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 20, 24, 0.82) 0%, rgba(10, 20, 24, 0.58) 43%, rgba(10, 20, 24, 0.12) 78%),
    linear-gradient(0deg, rgba(10, 20, 24, 0.24), rgba(10, 20, 24, 0.08));
  z-index: -2;
}

.hero-content {
  padding-block: 52px 36px;
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4a654;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.8vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  padding: 14px 18px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: var(--orange);
  color: var(--paper);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--paper);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.button:disabled {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

.signal-band {
  background: var(--ink);
  color: var(--paper);
}

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

.signal-grid span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 18px 12px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 750;
  text-align: center;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #f7fafb;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-inline: 1px solid rgba(216, 227, 231, 0.75);
}

.trust-grid div {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 18px;
  background: var(--paper);
}

.trust-grid span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-grid strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.section {
  padding: 94px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 680px;
}

.section-heading h2,
.contact-copy h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-card {
  position: relative;
  min-height: 430px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--blue);
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-card-accent::before {
  background: var(--teal);
}

.service-index {
  margin-bottom: 44px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
  line-height: 1.15;
}

.service-card p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #2c3d43;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.buyer-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfc;
}

.buyer-panel h3 {
  margin-bottom: 0;
  font-size: 1.55rem;
  line-height: 1.15;
}

.buyer-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.buyer-panel li {
  min-height: 124px;
  padding: 18px;
  border: 1px solid rgba(29, 98, 120, 0.14);
  border-radius: var(--radius);
  background: var(--paper);
}

.buyer-panel strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.98rem;
}

.buyer-panel span {
  color: var(--muted);
  font-size: 0.94rem;
}

.compliance-note {
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(216, 116, 34, 0.28);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  background: #fffaf5;
}

.compliance-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1rem;
}

.compliance-note p {
  max-width: 980px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.products {
  background: var(--mist);
}

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

.category-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  border: 1px solid rgba(29, 98, 120, 0.16);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(16, 35, 42, 0.08);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #dce7ea;
}

.category-card:nth-child(3) img {
  object-position: center 42%;
}

.category-body {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.category-body > span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-body h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.18;
}

.category-body p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  border: 1px solid rgba(29, 98, 120, 0.18);
  border-radius: 999px;
  background: #f5f9fa;
  color: #32464d;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.2;
  padding: 7px 9px;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1fr);
  gap: 46px;
  align-items: start;
}

.process-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfc;
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.timeline li:last-child {
  border-bottom: 0;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
}

.timeline h3 {
  margin-bottom: 5px;
  font-size: 1.08rem;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.why {
  background: var(--ink);
  color: var(--paper);
}

.why .eyebrow {
  color: #f4a654;
}

.why .section-heading h2,
.why .section-heading p {
  color: var(--paper);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.why-grid article {
  min-height: 260px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.055);
}

.why-grid h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.22;
}

.why-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.73);
}

.contact {
  background:
    linear-gradient(180deg, rgba(238, 243, 245, 0.92), rgba(255, 255, 255, 1));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 46px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 104px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
}

.contact-details a {
  width: fit-content;
  color: var(--blue);
  font-weight: 850;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--orange-dark);
  outline: none;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: #31444b;
  font-size: 0.9rem;
  font-weight: 800;
}

.enquiry-form .full {
  grid-column: 1 / -1;
}

.enquiry-form .form-honeypot {
  display: none;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid #cbd9de;
  border-radius: var(--radius);
  background: #fbfdfe;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 98, 120, 0.15);
}

.form-button {
  width: fit-content;
}

.form-status {
  align-self: center;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    padding-inline: 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 1px) 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: 650px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 20, 24, 0.86), rgba(10, 20, 24, 0.58)),
      linear-gradient(0deg, rgba(10, 20, 24, 0.12), rgba(10, 20, 24, 0.12));
  }

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

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

  .service-grid,
  .buyer-panel,
  .process-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .buyer-panel ul,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-copy {
    position: static;
  }

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

@media (max-width: 660px) {
  :root {
    --container: min(100vw - 28px, 1120px);
  }

  .brand {
    min-width: auto;
  }

  .brand-copy span {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding-block: 44px 32px;
  }

  h1 {
    font-size: clamp(2.05rem, 10.5vw, 2.7rem);
  }

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

  .button,
  .form-button {
    width: 100%;
  }

  .signal-grid,
  .trust-grid,
  .buyer-panel ul,
  .category-grid,
  .why-grid,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .buyer-panel {
    padding: 20px;
  }

  .category-card {
    grid-template-rows: 210px 1fr;
  }

  .timeline li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 20px;
  }

  .timeline span {
    width: 40px;
    height: 40px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }
}

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

  .button {
    transition: none;
  }
}
