@import "tailwindcss";

:root {
  --background: #f5f3ed;
  --foreground: #15211b;
  --muted: #66736c;
  --line: #d9ded6;
  --panel: #ffffff;
  --panel-soft: #eef3ef;
  --green: #146c43;
  --green-dark: #0b3f2b;
  --gold: #c5922d;
  --rust: #b8542b;
}

/* Contact page: direct enquiry journey and professional trust layout. */
.topbar nav a,
.topbar .phone,
.language-switcher a,
.primary-action,
.secondary-page-action,
.contact-channel,
.footer-links a {
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.topbar nav a.active,
.topbar nav a:hover,
.topbar nav a:focus-visible {
  color: var(--green);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(197, 146, 45, 0.75);
  outline-offset: 3px;
}

.contact-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 540px;
}

.contact-hero h1 {
  max-width: 850px;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-hero-actions .secondary-action {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: #ffffff;
  display: inline-flex;
  font-weight: 800;
  min-height: 48px;
  padding: 13px 18px;
}

.contact-overview {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.contact-intro h2,
.contact-requirements h2,
.contact-process h2,
.contact-paths h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.contact-intro > p:not(.eyebrow),
.contact-requirements > p,
.contact-process > p,
.contact-paths > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 720px;
}

.contact-channels {
  background: var(--green-dark);
  color: #ffffff;
  padding: clamp(24px, 4vw, 38px);
}

.contact-channels > p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 24px;
}

.contact-channel {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 6px 16px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 92px;
  padding: 20px 0;
}

.contact-channel strong,
.contact-channel span {
  display: block;
}

.contact-channel strong {
  font-size: 20px;
}

.contact-channel span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 5px;
}

.contact-channel b {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  display: inline-flex;
  font-size: 13px;
  min-height: 42px;
  padding: 8px 12px;
}

.contact-channel:hover b,
.contact-channel:focus-visible b {
  background: #ffffff;
  color: var(--green-dark);
}

.contact-assurance {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  padding-top: 20px;
}

.requirement-list {
  background: #ffffff;
  border: 1px solid var(--line);
  counter-reset: requirement;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
  padding: clamp(24px, 4vw, 38px);
}

.requirement-list span {
  align-items: center;
  background: var(--panel-soft);
  color: var(--green-dark);
  display: flex;
  font-weight: 800;
  gap: 12px;
  min-height: 64px;
  padding: 13px 14px;
}

.requirement-list span::before {
  align-items: center;
  background: var(--green-dark);
  color: #ffffff;
  content: counter(requirement, decimal-leading-zero);
  counter-increment: requirement;
  display: inline-flex;
  flex: 0 0 32px;
  font-size: 11px;
  font-weight: 900;
  height: 32px;
  justify-content: center;
}

.contact-path-grid,
.contact-process-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

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

.contact-path {
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: clamp(24px, 4vw, 38px);
}

.contact-path span,
.contact-step span {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.contact-path h3,
.contact-step h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  margin-bottom: 14px;
}

.contact-path p,
.contact-step p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-path a {
  align-self: flex-start;
  margin-top: auto;
}

.contact-process {
  background: #ffffff;
}

.contact-process-grid {
  counter-reset: contact-step;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-step {
  border-top: 3px solid var(--green);
  padding: 24px 0 0;
}

.contact-step span::before {
  content: counter(contact-step, decimal-leading-zero) " / ";
  counter-increment: contact-step;
}

.contact-final {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(9, 38, 25, 0.97), rgba(9, 38, 25, 0.76)),
    url("images/factory-hero-hd.png") center / cover;
  color: #ffffff;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(40px, 6vw, 72px);
}

.contact-final h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.contact-final p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 760px;
}

.site-footer {
  background: #071f16;
  color: #ffffff;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(240px, 1.2fr) minmax(160px, 0.6fr) minmax(240px, 1fr);
  padding: 48px clamp(18px, 5vw, 72px) 28px;
}

.footer-brand strong,
.footer-brand span,
.footer-contact strong,
.footer-contact a,
.footer-links a {
  display: block;
}

.footer-brand strong {
  font-size: 21px;
}

.footer-brand span,
.footer-contact span,
.footer-bottom {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #e2b85f;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact strong {
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  grid-column: 1 / -1;
  padding-top: 22px;
}

@media (hover: hover) {
  .primary-action:hover,
  .secondary-page-action:hover,
  .contact-path a:hover {
    transform: translateY(-2px);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1060px) {
  .contact-overview,
  .contact-final,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .contact-hero {
    min-height: 500px;
    padding-bottom: 54px;
    padding-top: 54px;
  }

  .contact-hero-actions,
  .contact-hero-actions a,
  .contact-final .primary-action {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .requirement-list,
  .contact-path-grid,
  .contact-process-grid {
    grid-template-columns: 1fr;
  }

  .contact-path {
    min-height: 280px;
  }

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

  .contact-channel b {
    justify-self: start;
    margin-top: 8px;
  }

  .site-footer {
    padding-top: 38px;
  }
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

.topbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto auto auto;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

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

.brand-mark {
  align-items: center;
  display: inline-flex;
  height: 52px;
  justify-content: center;
  width: 46px;
}

.brand-mark img {
  display: block;
  height: 52px;
  width: auto;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

nav {
  display: flex;
  gap: 22px;
  justify-content: center;
}

nav a,
.phone {
  color: #25342c;
  font-size: 14px;
  font-weight: 700;
}

.language-switcher {
  border: 1px solid var(--line);
  display: inline-flex;
  overflow: hidden;
}

.language-switcher a {
  color: #25342c;
  font-size: 12px;
  font-weight: 900;
  min-width: 42px;
  padding: 10px 11px;
  text-align: center;
}

.language-switcher a + a {
  border-left: 1px solid var(--line);
}

.language-switcher a.active {
  background: var(--green);
  color: white;
}

.phone {
  border: 1px solid var(--green);
  color: var(--green);
  padding: 10px 14px;
}

.hero {
  background:
    linear-gradient(90deg, rgba(9, 38, 25, 0.91) 0%, rgba(9, 38, 25, 0.76) 43%, rgba(9, 38, 25, 0.25) 100%),
    url("images/factory-hero-hd.png") center right / cover;
  color: white;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 440px);
  min-height: 660px;
  padding: 86px clamp(18px, 5vw, 72px) 40px;
}

.hero-copy {
  align-self: center;
  max-width: 800px;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 820px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.7;
  max-width: 650px;
}

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

.primary-action,
.secondary-action,
.search-panel button,
.section-heading a,
.contact-card a {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
}

.primary-action,
.search-panel button,
.contact-card a:first-child {
  background: var(--gold);
  color: #1d170b;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
}

.search-panel {
  align-self: end;
  background: var(--panel);
  color: var(--foreground);
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.tabs {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 16px;
}

.tabs button {
  background: var(--panel-soft);
  border: 0;
  color: var(--green-dark);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  min-height: 42px;
}

.tabs button.active {
  background: var(--green);
  color: white;
}

form {
  display: grid;
  gap: 14px;
}

label {
  color: var(--muted);
  display: grid;
  font-size: 12px;
  font-weight: 800;
  gap: 6px;
  text-transform: uppercase;
}

input,
select {
  background: #f8faf8;
  border: 1px solid var(--line);
  color: var(--foreground);
  min-height: 48px;
  padding: 0 12px;
  width: 100%;
}

.search-panel button {
  border: 0;
  cursor: pointer;
  margin-top: 4px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-links a {
  background: var(--green-dark);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
  min-height: 120px;
  padding: 28px clamp(16px, 3vw, 32px);
}

.quick-links span,
.quick-links strong {
  display: block;
}

.quick-links span {
  color: #d4b96d;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.quick-links strong {
  font-size: 24px;
}

.section {
  padding: 76px clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  margin-bottom: 0;
}

.service-grid,
.listing-grid,
.article-grid {
  display: grid;
  gap: 18px;
}

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

.service-grid article,
.article-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 26px;
}

.service-grid h3,
.article-grid h3 {
  font-size: 22px;
  line-height: 1.2;
}

.service-grid p,
.article-grid p,
.contact p {
  color: var(--muted);
  line-height: 1.65;
}

.featured {
  background: #ffffff;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-heading a {
  border: 1px solid var(--green);
  color: var(--green);
  min-width: 142px;
}

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

.listing-card {
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  overflow: hidden;
}

.listing-card img {
  aspect-ratio: 1.28;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.listing-placeholder {
  align-items: center;
  aspect-ratio: 1.28;
  background: var(--panel-soft);
  color: var(--muted);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  text-transform: uppercase;
}

.listing-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.listing-meta {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.listing-meta span {
  background: #e8f1ea;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 8px;
}

.listing-meta small {
  color: var(--muted);
  text-align: right;
}

.listing-body h3 {
  font-size: 20px;
  line-height: 1.25;
  margin: 0;
}

.listing-body strong {
  color: var(--rust);
  font-size: 18px;
}

.listing-body ul {
  color: var(--muted);
  display: grid;
  gap: 6px;
  line-height: 1.35;
  list-style: none;
  margin: 0;
  padding: 0;
}

.listing-body li::before {
  color: var(--gold);
  content: "• ";
}

.listing-enquiry {
  border: 1px solid var(--green);
  color: var(--green);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  margin-top: 4px;
  min-height: 42px;
  padding: 10px 12px;
}

.listing-contact-person {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  margin: 2px 0 0;
}

.uploaded {
  background: #f8faf8;
}

.stats-band {
  background: var(--green);
  color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 34px clamp(18px, 5vw, 72px);
}

.stats-band div {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  padding-right: 28px;
}

.stats-band div:last-child {
  border-right: 0;
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.stats-band span {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 8px;
}

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

.article-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact {
  background: var(--green-dark);
  color: white;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  padding: 74px clamp(18px, 5vw, 72px);
}

.contact p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 12px;
  padding: 22px;
}

.contact-card a {
  background: white;
  color: var(--green-dark);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(9, 38, 25, 0.95) 0%, rgba(9, 38, 25, 0.76) 48%, rgba(9, 38, 25, 0.36) 100%),
    url("images/factory-hero-hd.png") center right / cover;
  color: white;
  padding: 86px clamp(18px, 5vw, 72px);
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
  max-width: 760px;
}

.page-hero .primary-action {
  margin-top: 18px;
}

.about-hero {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero h1 {
  max-width: 780px;
}

.about-hero p:not(.eyebrow) {
  max-width: 720px;
}

.filter-strip {
  background: white;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 1.3fr 1fr 1fr;
  padding-bottom: 28px;
  padding-top: 28px;
}

.area-page-grid,
.about-page-grid,
.contact-page-grid {
  display: grid;
  gap: 20px;
}

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

.area-panel,
.about-page-grid article,
.contact-page-grid article {
  background: white;
  border: 1px solid var(--line);
  padding: 28px;
}

.area-panel h2,
.about-page-grid h2,
.contact-page-grid h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 18px;
}

.area-panel div {
  display: grid;
  gap: 10px;
}

.area-panel a {
  background: var(--panel-soft);
  color: var(--green-dark);
  font-weight: 800;
  padding: 12px 14px;
}

.about-page-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-page-grid p,
.contact-page-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-mini {
  align-items: center;
  background: var(--green-dark);
  color: white;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 42px clamp(18px, 5vw, 72px);
}

.contact-mini h2 {
  font-size: clamp(26px, 3vw, 40px);
}

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

.contact-page-grid span {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.secondary-page-action {
  border: 1px solid var(--green);
  color: var(--green);
  display: inline-flex;
  font-weight: 800;
  min-height: 46px;
  padding: 12px 18px;
}

.admin-page {
  background: var(--background);
  min-height: 100vh;
  padding: clamp(18px, 5vw, 64px);
}

.admin-back {
  color: var(--green);
  display: inline-flex;
  font-weight: 800;
  margin-bottom: 28px;
}

.admin-shell {
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1.22fr);
}

.admin-shell h1 {
  color: var(--foreground);
  font-size: clamp(38px, 5vw, 62px);
}

.admin-shell p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.admin-form {
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(21, 33, 27, 0.12);
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
}

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

textarea {
  background: #f8faf8;
  border: 1px solid var(--line);
  color: var(--foreground);
  line-height: 1.55;
  padding: 12px;
  resize: vertical;
  width: 100%;
}

input[type="file"] {
  align-items: center;
  display: flex;
  padding: 12px;
}

.admin-form button {
  background: var(--gold);
  border: 0;
  color: #1d170b;
  cursor: pointer;
  font-weight: 900;
  min-height: 50px;
  padding: 13px 18px;
}

.admin-status {
  color: var(--green);
  font-weight: 800;
  margin: 0;
}

.admin-result {
  background: var(--panel-soft);
  color: var(--foreground);
  display: grid;
  gap: 6px;
  padding: 14px;
}

.admin-result span,
.admin-result strong {
  display: block;
}

.dynamic-listing-grid {
  margin-bottom: 28px;
}

.listing-feed-message {
  background: var(--panel-soft);
  border-left: 4px solid var(--gold);
  color: var(--muted);
  grid-column: 1 / -1;
  margin: 0;
  padding: 20px;
}

.live-listing-card {
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.live-listing-card .listing-image {
  aspect-ratio: 4 / 3;
  background: var(--green-dark);
  border: 0;
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}

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

.live-listing-card .listing-image:hover img,
.live-listing-card .listing-image:focus-visible img {
  transform: scale(1.025);
}

.listing-photo-count {
  background: rgba(9, 38, 25, 0.9);
  bottom: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 9px;
  position: absolute;
  right: 10px;
}

.listing-image-placeholder {
  align-items: center;
  color: white;
  display: flex;
  font-weight: 900;
  height: 100%;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.listing-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.listing-meta {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.listing-meta span {
  background: var(--panel-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  padding: 5px 8px;
}

.listing-meta small {
  color: var(--muted);
  text-align: right;
}

.live-listing-card h3 {
  font-size: 20px;
  line-height: 1.25;
  margin: 0;
}

.listing-title-button {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.listing-title-button:hover,
.listing-title-button:focus-visible {
  color: var(--green);
}

.listing-price {
  color: var(--rust);
}

.live-listing-card ul {
  color: var(--muted);
  display: grid;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.live-listing-card li::before {
  color: var(--gold);
  content: "• ";
}

.listing-enquiry {
  border: 1px solid var(--green);
  color: var(--green);
  font-weight: 900;
  padding: 11px 13px;
  text-align: center;
}

.listing-card-actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.listing-details-button {
  background: var(--green);
  border: 1px solid var(--green);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 11px 13px;
}

.listing-details-button:hover,
.listing-details-button:focus-visible {
  background: var(--green-dark);
}

.listing-modal[hidden] {
  display: none;
}

.listing-modal {
  inset: 0;
  position: fixed;
  z-index: 1000;
}

.listing-modal-backdrop {
  background: rgba(7, 25, 18, 0.82);
  inset: 0;
  position: absolute;
}

.listing-modal-panel {
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  inset: 24px;
  margin: auto;
  max-width: 1400px;
  overflow: auto;
  position: absolute;
}

.listing-modal-close {
  align-items: center;
  background: var(--gold);
  border: 2px solid #fff;
  color: var(--green-dark);
  cursor: pointer;
  display: flex;
  font-size: 30px;
  height: 44px;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(7, 25, 18, 0.22);
  position: fixed;
  right: 14px;
  top: 14px;
  width: 44px;
  z-index: 1002;
}

.listing-modal-gallery {
  background: #10271d;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.listing-modal-stage {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.listing-modal-main-image {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.listing-modal-main-image img {
  height: 100%;
  max-height: calc(100vh - 180px);
  object-fit: contain;
  width: 100%;
}

.listing-gallery-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  font-size: 38px;
  height: 52px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  z-index: 2;
}

.listing-gallery-prev { left: 14px; }
.listing-gallery-next { right: 14px; }

.listing-modal-counter {
  background: rgba(9, 38, 25, 0.88);
  bottom: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 7px 10px;
  position: absolute;
  right: 14px;
}

.listing-modal-thumbnails {
  display: flex;
  gap: 8px;
  min-height: 82px;
  overflow-x: auto;
  padding: 10px;
}

.listing-modal-thumbnails button {
  background: #fff;
  border: 2px solid transparent;
  cursor: pointer;
  flex: 0 0 86px;
  height: 64px;
  padding: 0;
}

.listing-modal-thumbnails button.active {
  border-color: var(--gold);
}

.listing-modal-thumbnails img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.listing-modal-content {
  align-content: start;
  display: grid;
  gap: 16px;
  overflow-y: auto;
  padding: 72px 38px 38px;
}

.listing-modal-meta {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.listing-modal-meta span {
  background: var(--panel-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 9px;
}

.listing-modal-meta small,
.listing-modal-reference,
.listing-modal-contact {
  color: var(--muted);
}

.listing-modal-content h2 {
  color: var(--foreground);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.14;
  margin: 0;
}

.listing-modal-price {
  color: var(--rust);
  font-size: 23px;
}

.listing-modal-reference {
  font-size: 12px;
  margin: 0;
}

.listing-modal-description-section,
.listing-modal-spec-section {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.listing-modal-description-section h3,
.listing-modal-spec-section h3 {
  font-size: 18px;
  margin: 0 0 12px;
}

.listing-modal-description {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  white-space: pre-line;
}

.listing-modal-specs {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.listing-modal-specs li {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  padding-bottom: 9px;
}

.listing-modal-contact {
  font-weight: 800;
  margin: 0;
}

.listing-modal-enquiry {
  justify-content: center;
  text-align: center;
}

.listing-modal-open {
  overflow: hidden;
}

.admin-access {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  margin-left: 10px;
}

@media (max-width: 1060px) {
  .topbar {
    grid-template-columns: 1fr auto auto;
  }

  nav {
    display: none;
  }

  .hero,
  .intro,
  .contact,
  .admin-shell,
  .filter-strip,
  .area-page-grid,
  .about-page-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

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

  .search-panel {
    align-self: stretch;
    max-width: 560px;
  }

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

@media (max-width: 720px) {
  .topbar {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .phone {
    justify-self: start;
  }

  .language-switcher {
    justify-self: start;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(9, 38, 25, 0.92) 0%, rgba(9, 38, 25, 0.78) 100%),
      url("images/factory-hero-hd.png") center / cover;
    min-height: auto;
    padding-top: 54px;
  }

  h1 {
    font-size: 40px;
  }

  .tabs,
  .quick-links,
  .service-grid,
  .listing-grid,
  .article-grid,
  .stats-band,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .stats-band div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    border-right: 0;
    padding: 20px 0;
  }

  .stats-band div:last-child {
    border-bottom: 0;
  }

  .listing-modal-panel {
    display: block;
    inset: 0;
  }

  .listing-modal-stage {
    min-height: 330px;
  }

  .listing-modal-main-image img {
    max-height: 62vh;
  }

  .listing-modal-content {
    overflow: visible;
    padding: 30px 20px 40px;
  }

}

.availability-state,
.info-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: clamp(22px, 4vw, 42px);
}

.availability-state {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.availability-state h3,
.info-panel h3 {
  color: var(--foreground);
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 10px;
}

.availability-state p,
.info-panel p,
.info-panel li {
  color: var(--muted);
  line-height: 1.65;
}

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

.info-panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.trust-grid,
.detail-grid,
.coverage-grid {
  display: grid;
  gap: 18px;
}

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

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

.trust-card,
.detail-card,
.coverage-card {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 26px;
}

.trust-card span,
.detail-card span,
.coverage-card span {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.trust-card h3,
.detail-card h3,
.coverage-card h3 {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.18;
  margin-bottom: 12px;
}

.trust-card p,
.detail-card p,
.coverage-card p {
  color: var(--muted);
  line-height: 1.65;
}

.professional-note {
  background: var(--green-dark);
  color: #ffffff;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(28px, 5vw, 56px);
}

.professional-note p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin: 0;
  max-width: 780px;
}

.professional-note h2 {
  margin-bottom: 12px;
}

.requirement-list {
  background: #ffffff;
  border: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(24px, 4vw, 38px);
}

.requirement-list span {
  background: var(--panel-soft);
  color: var(--green-dark);
  font-weight: 800;
  padding: 13px 14px;
}

.area-page-grid article {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 28px;
}

.area-page-grid article div {
  display: grid;
  gap: 10px;
}

.area-page-grid article a {
  background: var(--panel-soft);
  color: var(--green-dark);
  font-weight: 800;
  padding: 12px 14px;
}

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

.skip-link {
  background: var(--green-dark);
  color: #ffffff;
  left: 16px;
  padding: 12px 16px;
  position: fixed;
  top: -80px;
  z-index: 100;
}

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

.topbar nav a,
.topbar .phone,
.language-switcher a,
.primary-action,
.secondary-page-action,
.contact-channel,
.footer-links a {
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.topbar nav a.active {
  color: var(--green);
}

.topbar nav a:hover,
.topbar nav a:focus-visible {
  color: var(--green);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(197, 146, 45, 0.75);
  outline-offset: 3px;
}

.contact-hero {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-hero h1 {
  max-width: 850px;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-hero-actions .secondary-action {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: #ffffff;
  display: inline-flex;
  font-weight: 800;
  min-height: 48px;
  padding: 13px 18px;
}

.contact-overview {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.contact-intro h2,
.contact-requirements h2,
.contact-process h2,
.contact-paths h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.contact-intro > p:not(.eyebrow),
.contact-requirements > p,
.contact-process > p,
.contact-paths > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 720px;
}

.contact-channels {
  background: var(--green-dark);
  color: #ffffff;
  padding: clamp(24px, 4vw, 38px);
}

.contact-channels > p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 24px;
}

.contact-channel {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 6px 16px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 92px;
  padding: 20px 0;
}

.contact-channel strong,
.contact-channel span {
  display: block;
}

.contact-channel strong {
  font-size: 20px;
}

.contact-channel span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 5px;
}

.contact-channel b {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  display: inline-flex;
  font-size: 13px;
  min-height: 42px;
  padding: 8px 12px;
}

.contact-channel:hover b,
.contact-channel:focus-visible b {
  background: #ffffff;
  color: var(--green-dark);
}

.contact-assurance {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  padding-top: 20px;
}

.requirement-list {
  counter-reset: requirement;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.requirement-list span {
  align-items: center;
  display: flex;
  gap: 12px;
  min-height: 64px;
}

.requirement-list span::before {
  align-items: center;
  background: var(--green-dark);
  color: #ffffff;
  content: counter(requirement, decimal-leading-zero);
  counter-increment: requirement;
  display: inline-flex;
  flex: 0 0 32px;
  font-size: 11px;
  font-weight: 900;
  height: 32px;
  justify-content: center;
}

.contact-path-grid,
.contact-process-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

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

.contact-path {
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: clamp(24px, 4vw, 38px);
}

.contact-path span,
.contact-step span {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.contact-path h3,
.contact-step h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  margin-bottom: 14px;
}

.contact-path p,
.contact-step p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-path a {
  align-self: flex-start;
  margin-top: auto;
}

.contact-process {
  background: #ffffff;
}

.contact-process-grid {
  counter-reset: contact-step;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-step {
  border-top: 3px solid var(--green);
  padding: 24px 0 0;
}

.contact-step span::before {
  content: counter(contact-step, decimal-leading-zero) " / ";
  counter-increment: contact-step;
}

.contact-final {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(9, 38, 25, 0.97), rgba(9, 38, 25, 0.76)),
    url("images/factory-hero-hd.png") center / cover;
  color: #ffffff;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(40px, 6vw, 72px);
}

.contact-final h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.contact-final p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 760px;
}

.site-footer {
  background: #071f16;
  color: #ffffff;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(240px, 1.2fr) minmax(160px, 0.6fr) minmax(240px, 1fr);
  padding: 48px clamp(18px, 5vw, 72px) 28px;
}

.footer-brand strong,
.footer-brand span,
.footer-contact strong,
.footer-contact a,
.footer-links a {
  display: block;
}

.footer-brand strong {
  font-size: 21px;
}

.footer-brand span,
.footer-contact span,
.footer-bottom {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #e2b85f;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact strong {
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  grid-column: 1 / -1;
  padding-top: 22px;
}

@media (hover: hover) {
  .primary-action:hover,
  .secondary-page-action:hover,
  .contact-path a:hover {
    transform: translateY(-2px);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1060px) {
  .contact-overview,
  .contact-final,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .availability-state,
  .info-grid,
  .trust-grid,
  .detail-grid,
  .coverage-grid,
  .professional-note,
  .requirement-list {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: 500px;
    padding-bottom: 54px;
    padding-top: 54px;
  }

  .contact-hero-actions,
  .contact-hero-actions a,
  .contact-final .primary-action {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .contact-path-grid,
  .contact-process-grid {
    grid-template-columns: 1fr;
  }

  .contact-path {
    min-height: 280px;
  }

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

  .contact-channel b {
    justify-self: start;
    margin-top: 8px;
  }

  .site-footer {
    padding-top: 38px;
  }
}
