:root {
  --ink: #102030;
  --muted: #5d6978;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --line: #dfe6ee;
  --brand: #f28c28;
  --brand-dark: #c66912;
  --navy: #0f2740;
  --steel: #64748b;
  --shadow: 0 18px 45px rgba(16, 32, 48, 0.14);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 230, 238, 0.9);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #ffbd6b);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--soft);
  color: var(--ink);
}

.site-nav .nav-cta {
  background: var(--navy);
  color: #fff;
  margin-left: 4px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--brand);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  overflow: hidden;
  padding: 86px 0 54px;
  background:
    radial-gradient(circle at 85% 10%, rgba(242, 140, 40, 0.22), transparent 34%),
    linear-gradient(135deg, #f9fbfd 0%, #eef4f9 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-actions,
.footer-inner,
.product-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--brand);
  color: var(--navy);
  /*box-shadow: 0 14px 26px rgba(242, 140, 40, 0.26);*/
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff9f3e;
}

.button-secondary {
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.trust-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-card {
  position: relative;
}

.photo-placeholder {
  display: grid;
  align-content: end;
  min-height: 230px;
  border: 1px dashed rgba(100, 116, 139, 0.55);
  border-radius: var(--radius);
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(15, 39, 64, 0.92), rgba(15, 39, 64, 0.56)),
    repeating-linear-gradient(-45deg, #cfd8e3 0 10px, #e9eef5 10px 20px);
  color: #fff;
  overflow: hidden;
}

.photo-placeholder-hero {
  min-height: 520px;
  box-shadow: var(--shadow);
}

.photo-placeholder span {
  color: #ffd69d;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-placeholder strong {
  display: block;
  max-width: 330px;
  margin-top: 6px;
  font-size: 1.8rem;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.photo-placeholder small {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-info-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(310px, calc(100% - 48px));
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow);
}

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

.hero-info-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 86px 0;
}

.section-tight {
  padding: 38px 0;
}

.section-muted {
  background: var(--soft);
}

.highlight-grid,
.product-grid,
.contact-grid,
.service-grid,
.split-grid,
.new-lines-grid {
  display: grid;
  gap: 24px;
}

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

.highlight-grid article,
.product-card,
.service-card,
.enquiry-form,
.new-lines-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 32, 48, 0.06);
}

.highlight-grid article {
  padding: 26px;
}

.highlight-grid p,
.product-card p,
.rich-text p,
.section-heading p,
.new-lines-grid p,
.form-note {
  color: var(--muted);
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--brand-dark);
  font-weight: 800;
}

.split-grid {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
}

.align-start {
  align-items: start;
}

.rich-text {
  font-size: 1.08rem;
}

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

.section-heading.compact {
  margin-bottom: 24px;
}

.search-box {
  display: grid;
  width: min(100%, 520px);
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.search-box input,
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.search-box input:focus,
.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(242, 140, 40, 0.18);
}

.product-tools {
  margin-bottom: 24px;
}

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

.product-card {
  display: grid;
  gap: 16px;
  padding: 14px;
}

.product-card .photo-placeholder {
  min-height: 190px;
  border-radius: 16px;
}

.product-card .photo-placeholder strong {
  max-width: 240px;
  font-size: 1.2rem;
}

.product-card h3,
.product-card p {
  padding-inline: 6px;
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  color: var(--muted);
  background: #fff;
}

.service-section {
  background: linear-gradient(135deg, var(--navy), #183c5e);
  color: #fff;
}

.service-section .eyebrow,
.service-section p {
  color: #ffd69d;
}

.service-grid {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
}

.service-card {
  display: grid;
  gap: 10px;
  padding: 26px;
  color: var(--ink);
}

.service-card a {
  color: var(--brand-dark);
  font-size: 1.7rem;
  font-weight: 800;
  text-decoration: none;
}

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

.supplier-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.supplier-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  background: #fff;
  color: var(--muted);
  font-weight: 700;
}

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

.new-lines-grid article {
  padding: 22px;
}

.contact-grid {
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 0.92fr);
  align-items: start;
}

.contact-details {
  border-left: 4px solid var(--brand);
  padding-left: 20px;
  color: var(--muted);
}

.contact-details a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.enquiry-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.enquiry-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--brand-dark);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  background: #fff;
  color: var(--muted);
}

.footer-inner {
  justify-content: space-between;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

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

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

  .hero-grid,
  .split-grid,
  .service-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .photo-placeholder-hero {
    min-height: 420px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .brand-text small {
    display: none;
  }

  h1 {
    font-size: clamp(2.45rem, 16vw, 4rem);
  }

  .section {
    padding: 62px 0;
  }

  .highlight-grid,
  .product-grid,
  .new-lines-grid {
    grid-template-columns: 1fr;
  }

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

  .photo-placeholder-hero {
    min-height: 360px;
  }

  .hero-info-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

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