@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Oswald:wght@700&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif; color: #1E1E1E; background: #fff; font-size: 17px; }
:root {
  --red: #C0392B; --smoke: #2E2E2E; --dark: #1E1E1E;
  --light-red: #FAE9E8; --grey-text: #666; --light-grey: #F5F5F5;
  --mid-grey: #999; --border: #E0E0E0; --white: #fff;
}
a { color: var(--red); text-decoration: none; }
nav { background: var(--smoke); padding: 16px 48px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon { width: 38px; height: 38px; border-radius: 6px; background: var(--red); display: flex; align-items: center; justify-content: center; }
.nav-logo-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; }
.nav-brand { font-size: 16px; font-weight: 700; color: #fff; }
.nav-sub { font-size: 11px; color: rgba(255,255,255,0.45); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 14px; color: rgba(255,255,255,0.7); }
.nav-links a.active { color: #fff; border-bottom: 2px solid var(--red); padding-bottom: 2px; }
.btn-red { background: var(--red); color: #fff; border: none; border-radius: 6px; padding: 13px 28px; font-size: 15px; font-weight: 600; cursor: pointer; display: inline-block; }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.45); border-radius: 6px; padding: 12px 26px; font-size: 15px; font-weight: 600; cursor: pointer; display: inline-block; }
.btn-ghost-dark { background: transparent; color: var(--red); border: 2px solid var(--red); border-radius: 6px; padding: 12px 26px; font-size: 15px; font-weight: 600; cursor: pointer; display: inline-block; }
.cred-bar { background: #1E1E1E; padding: 10px 48px; display: flex; gap: 28px; align-items: center; border-top: 0.5px solid rgba(255,255,255,0.06); flex-wrap: wrap; }
.cred-item { display: flex; align-items: center; gap: 7px; }
.cred-item span { font-size: 13px; color: rgba(255,255,255,0.65); }
.cred-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.12); }
.eyebrow { font-size: 12px; color: var(--red); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 8px; }
.section { padding: 68px 56px; }
.section-white { background: #fff; }
.section-grey { background: var(--light-grey); }
.section-smoke { background: var(--smoke); }
.section-dark { background: var(--dark); }
h1 { font-size: 52px; font-weight: 700; line-height: 1.1; }
h2 { font-size: 34px; font-weight: 700; margin-bottom: 10px; }
h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
p { line-height: 1.7; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.card { background: #fff; border: 0.5px solid var(--border); border-radius: 12px; padding: 1.4rem 1.5rem; }
.card-red-left { border-left: 3px solid var(--red); }
.divider-line { border: none; border-top: 0.5px solid var(--border); margin: 0; }
.red-banner { background: var(--red); padding: 26px 48px; text-align: center; }
.red-banner p { color: rgba(255,255,255,0.8); margin-top: 6px; font-size: 15px; }
footer { background: #1A1A1A; padding: 24px 48px; display: flex; align-items: center; justify-content: space-between; }
footer .brand { font-size: 14px; font-weight: 700; color: #fff; }
footer .sub { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 3px; }
footer nav a { font-size: 13px; color: rgba(255,255,255,0.4); margin-left: 24px; }
footer .copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.hero-img-wrap { position:relative; width:100%; height:500px; overflow:hidden; }
.hero-img-gradient { position:absolute; inset:0; background:linear-gradient(to right,rgba(0,0,0,0.72) 0%,rgba(0,0,0,0.5) 45%,rgba(0,0,0,0.0) 70%); }
.hero-img-text { position:absolute; top:0; left:0; bottom:0; width:48%; display:flex; flex-direction:column; justify-content:center; padding:40px 48px; }
.hero-img-line1 { font-size:32px; font-weight:700; color:#fff; line-height:1.25; margin-bottom:16px; }
.hero-img-line2 { font-size:32px; font-weight:700; color:#C0392B; line-height:1.25; margin-bottom:20px; }
.hero-img-line3 { font-size:16px; color:rgba(255,255,255,0.7); line-height:1.6; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 40px 20px; }
  nav { padding: 14px 20px; position: relative; flex-wrap: wrap; }
  .nav-logo svg { height: 30px; }
  .nav-hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #2E2E2E; padding: 16px 20px; gap: 14px; border-top: 0.5px solid rgba(255,255,255,0.1); z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 15px; }
  .cred-bar { padding: 10px 20px; overflow-x: auto; flex-wrap: nowrap; }
  .cred-divider { display: none; }
  h1 { font-size: 32px !important; white-space: normal !important; }
  h2 { font-size: 24px !important; }
  .page-hero { grid-template-columns: 1fr !important; padding: 36px 20px !important; gap: 28px !important; }
  .page-hero h1 { font-size: 30px !important; }
  .service-section { grid-template-columns: 1fr !important; padding: 36px 20px !important; gap: 28px !important; }
  .cta-section { padding: 48px 20px !important; }
  .cta-section h2 { font-size: 26px !important; }
  .hero { padding: 36px 20px 0 !important; }
  .hero-img-wrap { height:auto; display:flex; flex-direction:column; }
  .hero-img-gradient { display:none; }
  .hero-img-text { position:static; width:100%; background:#2E2E2E; padding:24px 20px; order:1; justify-content:flex-start; }
  .hero-img-wrap img { height:280px !important; order:2; width:100%; object-fit:cover; object-position:right center; }
  .hero-img-line1 { font-size:20px; margin-bottom:8px; }
  .hero-img-line2 { font-size:20px; margin-bottom:10px; }
  .hero-img-line3 { font-size:13px; }
  .btn-red, .btn-ghost, .btn-ghost-dark { padding: 11px 20px; font-size: 14px; }
  footer { flex-direction: column; gap: 12px; padding: 20px; text-align: center; }
  footer nav a { margin-left: 12px; }
}
