:root {
  color-scheme: light;
  --navy: #12324f;
  --navy-2: #071927;
  --gold: #d9a441;
  --gold-soft: #f4dfaf;
  --green: #28785f;
  --teal: #0e6f75;
  --clay: #a6573b;
  --paper: #f7f3eb;
  --paper-2: #ebe4d7;
  --ink: #1e272d;
  --muted: #67727d;
  --line: rgba(18, 50, 79, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 50, 79, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(247, 243, 235, 0.92), rgba(255, 255, 255, 0.96) 34%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(18, 50, 79, 0.1);
  backdrop-filter: blur(18px);
}

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

.brand img,
footer img {
  display: block;
  width: auto;
  height: 66px;
}

.brand-copy {
  display: grid;
  gap: 2px;
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-copy span {
  color: #7b6345;
  font-size: 11.5px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

nav,
.header-actions,
.hero-actions,
.trust-strip,
.proof-band,
.product div,
footer,
.form-row {
  display: flex;
  align-items: center;
}

nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
}

nav a {
  padding: 10px 0;
}

nav a:hover,
nav a:focus-visible {
  color: var(--teal);
}

.header-actions,
.hero-actions,
.trust-strip,
.product div,
footer,
.form-row {
  gap: 12px;
  flex-wrap: wrap;
}

.lang,
.mini-cta,
.filters button {
  min-height: 38px;
  border: 1px solid rgba(18, 50, 79, 0.16);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  padding: 8px 12px;
}

.mini-cta {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(54px, 8vw, 112px) clamp(18px, 5vw, 72px) 44px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(18, 50, 79, 0.1), transparent 44%),
    radial-gradient(circle at 82% 12%, rgba(217, 164, 65, 0.28), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(40, 120, 95, 0.18), transparent 30%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% 0 auto;
  z-index: -1;
  width: min(760px, 70vw);
  height: min(760px, 70vw);
  background:
    linear-gradient(rgba(18, 50, 79, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 50, 79, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, #000, transparent 68%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
}

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

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  color: var(--navy-2);
  font-size: clamp(46px, 7.5vw, 98px);
  line-height: 0.9;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(30px, 4.8vw, 58px);
  line-height: 0.98;
}

h3 {
  color: var(--navy);
  font-size: 21px;
}

.hero-copy p,
.section-heading p,
.quote-copy p {
  max-width: 720px;
  color: #45545e;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 950;
  padding: 12px 18px;
}

.primary {
  background: var(--gold);
  color: #201705;
  box-shadow: 0 14px 28px rgba(217, 164, 65, 0.24);
}

.secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(18, 50, 79, 0.2);
}

.ghost {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 50, 79, 0.16);
  color: var(--navy);
}

.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.trust-strip {
  margin-top: 24px;
}

.trust-strip span {
  padding: 10px 12px;
  border: 1px solid rgba(18, 50, 79, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.command-center {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 560px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 25, 39, 0.98), rgba(18, 50, 79, 0.92)),
    radial-gradient(circle at 30% 12%, rgba(217, 164, 65, 0.36), transparent 32%);
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.command-center::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.7;
}

.command-center > * {
  position: relative;
  z-index: 1;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.panel-top span,
.deal-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-top strong {
  max-width: 210px;
  text-align: right;
  font-size: 28px;
  line-height: 1.02;
}

.route-line {
  display: grid;
  gap: 12px;
  margin: 10px 0;
}

.route-line div {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.route-line span {
  width: 14px;
  height: 14px;
  border: 3px solid var(--gold);
  border-radius: 50%;
}

.deal-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.deal-card strong,
.deal-card small {
  display: block;
}

.deal-card strong {
  margin: 8px 0;
  font-size: 28px;
}

.deal-card small {
  color: rgba(255, 255, 255, 0.72);
}

.mini-grid,
.service-grid,
.process-grid,
.catalog-grid,
.proof-band {
  display: grid;
  gap: 16px;
}

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

.mini-grid div {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.mini-grid strong,
.mini-grid span {
  display: block;
}

.mini-grid strong {
  color: var(--gold-soft);
  font-size: 26px;
}

.mini-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.proof-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 clamp(18px, 5vw, 72px) 80px;
}

.proof-band div {
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(18, 50, 79, 0.08);
}

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

.proof-band strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 20px;
}

.proof-band span {
  color: var(--muted);
  line-height: 1.5;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 102px;
}

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

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

.service,
.product,
.process-grid article,
.quote-form,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service,
.product {
  padding: 28px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service:hover,
.product:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 164, 65, 0.48);
  box-shadow: 0 18px 44px rgba(18, 50, 79, 0.12);
}

.service span,
.product span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.service p,
.product p,
.process-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.dark-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 25, 39, 0.98), rgba(18, 50, 79, 0.95)),
    var(--navy);
}

.dark-section h2,
.dark-section strong {
  color: var(--white);
}

.dark-section .eyebrow {
  color: var(--gold-soft);
}

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

.process-grid article {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.process-grid article > span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 18px;
}

.process-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.catalogue-section {
  background: #fbfaf7;
}

.catalogue-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.68fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filters .active {
  background: var(--navy);
  color: var(--white);
}

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

.product {
  display: flex;
  flex-direction: column;
  min-height: 290px;
}

.product div {
  justify-content: space-between;
  margin-top: auto;
  padding-top: 22px;
}

.product small {
  max-width: 54%;
  color: var(--muted);
  font-weight: 850;
}

.product a {
  color: var(--green);
  font-weight: 950;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  background:
    linear-gradient(90deg, rgba(247, 243, 235, 0.94), rgba(235, 228, 215, 0.86)),
    var(--paper-2);
}

.contact-card {
  display: grid;
  gap: 8px;
  max-width: 360px;
  margin-top: 26px;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(18, 50, 79, 0.1);
}

.contact-card strong {
  color: var(--navy);
  font-size: 22px;
}

.contact-card a {
  color: var(--green);
  font-weight: 900;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.form-row {
  align-items: stretch;
}

.form-row > * {
  flex: 1 1 220px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(18, 50, 79, 0.18);
  border-radius: 8px;
  background: #fbfaf7;
  color: var(--ink);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.success {
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

footer {
  justify-content: space-between;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--navy-2);
  color: var(--white);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.footer-brand p {
  display: grid;
  gap: 4px;
  line-height: 1.2;
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1120px) {
  .hero,
  .split,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

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

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-actions {
    justify-content: end;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .command-center {
    min-height: auto;
  }

  .proof-band,
  .service-grid,
  .catalog-grid,
  .process-grid,
  .catalogue-heading,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .filters {
    justify-content: flex-start;
  }

  h1 {
    font-size: 45px;
  }

  footer {
    align-items: flex-start;
    display: grid;
  }
}

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

  .brand img {
    height: 48px;
  }

  .brand {
    gap: 8px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy span {
    font-size: 9px;
  }

  .mini-cta {
    display: none;
  }

  .section,
  .quote-section {
    padding-block: 62px;
  }

  .service,
  .product,
  .quote-form,
  .contact-card {
    padding: 20px;
  }
}
