:root {
  --ink: #172126;
  --muted: #5c6870;
  --line: #d9e0df;
  --paper: #fbfbf7;
  --surface: #ffffff;
  --deep: #12343b;
  --teal: #2c6f73;
  --gold: #c9892b;
  --soft: #eef4f1;
  --danger: #8b2f24;
  --shadow: 0 18px 50px rgba(18, 52, 59, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(217, 224, 223, 0.8);
  background: rgba(251, 251, 247, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 750;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--deep);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--deep);
  border-radius: 6px;
  padding: 10px 16px;
  background: var(--deep);
  color: white;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--deep);
}

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

.hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(251, 251, 247, 0.96) 0%, rgba(251, 251, 247, 0.9) 54%, rgba(238, 244, 241, 0.94) 100%),
    radial-gradient(circle at 78% 28%, rgba(201, 137, 43, 0.14), transparent 32%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
  max-width: 1120px;
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 70px 20px 56px;
}

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

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

h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  color: #354047;
  font-size: clamp(18px, 2vw, 22px);
}

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

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.proof-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.66);
  color: #435058;
  font-size: 13px;
  font-weight: 650;
}

.rfq-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 16px;
  background: var(--deep);
  color: white;
}

.preview-top img {
  width: 42px;
  height: 42px;
}

.preview-top strong {
  display: block;
}

.preview-top span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.preview-body {
  padding: 20px;
}

.quote-lines {
  display: grid;
  gap: 12px;
  margin: 0;
}

.quote-line {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.quote-line dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.quote-line dd {
  margin: 0;
  font-weight: 700;
}

.behind-scenes {
  margin: 18px 0 0;
  border-left: 4px solid var(--gold);
  padding: 12px 14px;
  background: var(--soft);
  color: var(--deep);
  font-weight: 800;
}

main section,
.legal-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 20px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

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

.section-head p,
.about p,
.legal-page p,
.legal-page li {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

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

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.product-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 14px;
  background: var(--surface);
  color: #2f3a40;
  font-weight: 700;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--deep);
  color: white;
  font-weight: 800;
}

.band {
  max-width: none;
  background: var(--deep);
  color: white;
}

.band-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 20px;
}

.band .section-head p,
.band .card p {
  color: rgba(255, 255, 255, 0.72);
}

.band .card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: start;
}

.fact-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.fact {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.fact dt {
  color: var(--muted);
  font-weight: 800;
}

.fact dd {
  margin: 0;
}

.rfq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: start;
}

form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 6px;
  color: #344047;
  font-size: 13px;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cdd6d5;
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: white;
  font: inherit;
}

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

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

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.contact-panel .inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 20px;
}

.site-footer {
  background: #0f2025;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px;
}

.footer-inner a {
  color: white;
  text-decoration: none;
}

.legal-page {
  max-width: 860px;
}

.legal-page h1 {
  font-size: clamp(34px, 5vw, 54px);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 24px;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero-inner,
  .about,
  .rfq-section,
  .contact-panel .inner {
    grid-template-columns: 1fr;
  }

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

  .grid.four,
  .grid.three {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .grid.four,
  .grid.three,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .quote-line,
  .fact {
    grid-template-columns: 1fr;
  }

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

  .button {
    width: 100%;
  }

  main section,
  .band-inner,
  .legal-page {
    padding-top: 52px;
    padding-bottom: 52px;
  }
}
