:root {
  --navy: #0d1f36;
  --navy-dark: #060f1c;
  --steel: #2e3d52;
  --orange: #e0692f;
  --orange-light: #f08b52;
  --off-white: #f7f5f2;
  --white: #ffffff;
  --text: #1c232e;
  --text-light: #5b6774;
  --border: #e3e2df;
  --radius: 10px;
  --shadow: 0 8px 24px rgba(13, 31, 54, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Source Sans 3', 'Segoe UI', Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .logo, .eyebrow-serif {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
}
h1, h2, h3 { letter-spacing: 0.2px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo { font-size: 1.6rem; font-weight: 700; letter-spacing: 1px; }
.logo span { color: var(--orange-light); }
.logo small {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  color: #9fb0c4;
  text-transform: uppercase;
}
.main-nav ul { list-style: none; display: flex; gap: 30px; align-items: center; }
.main-nav a {
  font-weight: 600; font-size: 0.95rem; color: #c3ceda;
  padding: 8px 0; border-bottom: 2px solid transparent; transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover { color: var(--white); border-bottom-color: var(--orange-light); }
.header-cta { display: flex; align-items: center; gap: 20px; }
.header-phone { font-weight: 700; color: var(--orange-light); font-size: 1.05rem; }
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  border: none;
}
.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 6px 18px rgba(224,105,47,0.35); }
.btn-orange:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(150deg, rgba(13,31,54,0.94) 0%, rgba(6,15,28,0.96) 100%),
    url('../images/hero-building.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(224,105,47,0.18) 0%, transparent 70%);
}

/* ---------- Photo proof section ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.photo-strip figure { margin: 0; position: relative; overflow: hidden; height: 340px; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; }
.photo-strip figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(6,15,28,0.85) 0%, transparent 100%);
  color: var(--white); padding: 40px 28px 20px; font-size: 0.95rem;
}
.hero-content { max-width: 780px; margin: 0 auto; position: relative; }
.eyebrow {
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 3.4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
}
.hero h1 em { color: var(--orange-light); font-style: normal; }
.hero p {
  font-size: 1.25rem;
  color: #c3ceda;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Proof strip ---------- */
.proof-strip {
  background: var(--navy-dark);
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 4px solid var(--orange);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.proof-grid > div { display: flex; flex-direction: column; gap: 6px; }
.proof-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
}
.proof-label { font-size: 0.88rem; color: #a9b6c5; }

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-alt { background: var(--off-white); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: 2.4rem; margin-bottom: 14px; color: var(--navy); }
.section-head p { color: var(--text-light); font-size: 1.1rem; }

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-5px); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-card h3 { color: var(--navy); margin-bottom: 12px; font-size: 1.3rem; }
.service-card p { color: var(--text-light); font-size: 0.98rem; margin-bottom: 16px; }
.service-card .fits { font-size: 0.85rem; color: var(--orange); font-weight: 600; }

/* ---------- Why grid ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card { text-align: center; padding: 10px; }
.why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}
.why-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.2rem; }
.why-card p { color: var(--text-light); font-size: 0.95rem; }
.industries-grid { grid-template-columns: repeat(3, 1fr); }
.industries-grid .why-card h3 { margin-bottom: 0; font-size: 1.1rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  text-align: center;
}
.cta-band h2 { font-size: 2.2rem; margin-bottom: 16px; }
.cta-band p { color: #c3ceda; margin-bottom: 30px; font-size: 1.1rem; }

/* ---------- Forms ---------- */
.contact-wrap { display: flex; gap: 56px; align-items: flex-start; }
.contact-info { flex: 0.85; }
.contact-info h3 { color: var(--navy); margin: 24px 0 8px; font-size: 1.05rem; }
.contact-info h3:first-child { margin-top: 0; }
.contact-form { flex: 1.15; background: var(--white); padding: 40px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 0.9rem; color: var(--navy); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 0.95rem; font-family: inherit;
}
.form-row textarea { min-height: 110px; resize: vertical; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.8rem; color: var(--text-light); margin-top: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #a9b6c5; padding: 56px 0 28px; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.footer-grid h4 { color: var(--white); margin-bottom: 16px; font-size: 1rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a:hover { color: var(--orange-light); }
.footer-bottom { border-top: 1px solid #1c2c40; padding-top: 22px; text-align: center; font-size: 0.8rem; color: #6f7f92; }
.preview-banner { background: var(--orange); color: var(--white); text-align: center; padding: 10px; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.5px; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-wrap { flex-direction: column; }
  .hero h1 { font-size: 2.6rem; }
  .photo-strip { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid, .industries-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .form-two { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
  .header-phone { display: none; }
  .site-header .container { height: auto; flex-wrap: wrap; padding: 12px 24px; gap: 8px; }
  .main-nav ul { gap: 14px; flex-wrap: wrap; }
  .main-nav a { font-size: 0.85rem; }
  .header-cta { width: 100%; justify-content: flex-end; }
}
