/* =========================
   BASE
========================= */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050608;
  color: #e5e5e5;
}

a {
  color: #9be870;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  height: auto;
}

/* =========================
   LAYOUT
========================= */

.wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}

section {
  margin-bottom: 3rem;
}

h1, h2, h3 {
  color: #ffffff;
  margin-top: 0;
}

h1 {
  font-size: 1.9rem;
  line-height: 1.25;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.1rem;
}

/* =========================
   HEADER / NAV
========================= */

header {
  background: #050608;
  border-bottom: 1px solid #181b1f;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
}

nav a {
  font-size: 0.9rem;
  color: #cfd2d6;
}

nav a.active {
  color: #9be870;
  font-weight: 600;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-bottom: 1px solid #181b1f;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("/Staging/asset/img/hero-fab-crane.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.15);
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0,0,0,0.15), rgba(0,0,0,0.82));
}

.hero-content {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  height: 100%;
  padding: 1.5rem 1rem 2rem;
  display: flex;
  align-items: flex-end;
}

.hero-inner {
  max-width: 620px;
}

.hero p {
  margin: 0.6rem 0 1.1rem;
  color: #d1d4d9;
  font-size: 0.95rem;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: #9be870;
  color: #06120c;
  border-color: #9be870;
  font-weight: 600;
}

.btn-primary:hover {
  background: #b0f08a;
  border-color: #b0f08a;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #3a3f47;
}

.btn-secondary:hover {
  border-color: #9be870;
  text-decoration: none;
}

/* =========================
   TEXT
========================= */

.section-intro {
  font-size: 0.95rem;
  color: #c5c8ce;
  max-width: 760px;
}

.inline-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  font-size: 0.9rem;
  color: #cfd2d6;
}

.inline-list li::before {
  content: "• ";
  color: #9be870;
}

/* =========================
   TWO-COLUMN CAPABILITY (FINAL)
========================= */

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.two-col > div:last-child {
  max-width: 360px;
  margin-left: auto;
}

.two-col img {
  width: 100%;
  border-radius: 6px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 780px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .two-col > div:last-child {
    max-width: 100%;
    margin-left: 0;
  }

  .hero {
    height: auto;
    min-height: 260px;
  }
}

/* =========================
   UTILITY
========================= */

.small {
  font-size: 0.85rem;
  color: #b5b8c0;
}
/* ---- Capability image sizing (FINAL) ---- */
.cap-image {
  max-width: 360px;
}

.cap-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Projects: image control ===== */
.project-card {
  background: #080b10;
  border-radius: 8px;
  border: 1px solid #181b1f;
  overflow: hidden;   /* IMPORTANT */

}
.project-card img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: contain;
  background: #000;
}
.site-brand img {
    height: 34px;
}.image-row {
  display: flex;
  gap: 1rem;
}

.image-row img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info {
    padding-top: 2rem;
}

.contact-form-section .narrow {
    max-width: 800px;
}

.contact-info .container,
.contact-form-section .container {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto
    padding-left: 1rem
    padding-right: 1rem;
}

/* =========================
   END
========================= */
