:root {
  --navy: #071c4a;
  --navy-2: #0a245c;
  --gold: #d9a81e;
  --gold-2: #f0c242;
  --ink: #101828;
  --white: #ffffff;
  --soft: #f6f7fb;
  --line: rgba(255,255,255,.12);
  --shadow: 0 14px 38px rgba(0, 0, 0, .22);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 4.5rem 0; }
.section-kicker, .eyebrow {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold);
  font-size: .8rem;
  margin: 0 0 .85rem;
}
h1, h2, h3 {
  margin: 0 0 1rem;
  font-family: 'Oswald', sans-serif;
  line-height: 1.05;
  letter-spacing: .01em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.9rem); color: var(--white); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 span, h1 span { color: var(--gold); }
p { margin: 0 0 1rem; line-height: 1.7; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.3rem;
  border-radius: .3rem;
  font-weight: 700;
  transition: .25s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #081224;
  box-shadow: var(--shadow);
}
.btn-secondary {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.btn-dark {
  background: #091733;
  color: var(--white);
}
.btn-dark-outline {
  border-color: #091733;
  color: #091733;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 28, 74, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}
.brand img { height: 72px; width: auto; object-fit: contain; }
.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--white);
  font-weight: 600;
}
.nav a:not(.btn) { opacity: .92; }
.nav a:not(.btn):hover { color: var(--gold-2); }
.menu-toggle { display: none; background: none; border: 0; color: var(--white); font-size: 2rem; }
.hero {
  position: relative;
  min-height: 730px;
  background:
    linear-gradient(90deg, rgba(7,28,74,.95) 0%, rgba(7,28,74,.88) 34%, rgba(7,28,74,.42) 60%, rgba(7,28,74,.26) 100%),
    url('assets/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}
.hero-grid { padding: 5rem 0; }
.hero-copy { max-width: 680px; }
.hero-text { color: rgba(255,255,255,.9); font-size: 1.12rem; max-width: 640px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.trust-bar {
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.08);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
}
.trust-grid article {
  padding: .3rem 1rem;
  border-right: 1px solid rgba(255,255,255,.14);
}
.trust-grid article:last-child { border-right: none; }
.trust-grid h3 { color: var(--gold-2); font-size: 1.35rem; }
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: center;
}
.about-image-card img {
  width: 100%;
  border-radius: .6rem;
  box-shadow: var(--shadow);
}
.mini-points {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.mini-points div {
  background: var(--soft);
  border-left: 4px solid var(--gold);
  padding: 1rem;
  border-radius: .3rem;
}
.services {
  background: linear-gradient(180deg, #05173d 0%, #071c4a 100%);
  color: var(--white);
}
.services .section-intro { color: rgba(255,255,255,.78); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .6rem;
  padding: 1.3rem;
  min-height: 180px;
}
.card h3 { color: var(--gold-2); font-size: 1.5rem; }
.card p { color: rgba(255,255,255,.82); }
.projects { background: #fff; }
.projects-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: .45rem;
  box-shadow: var(--shadow);
}
.labour {
  background: linear-gradient(135deg, #061739 0%, #0a245c 100%);
  color: var(--white);
}
.labour-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.quote-bar {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  padding: 2rem 0;
}
.quote-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.quote-grid h2, .quote-grid p { color: #091733; }
.quote-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.site-footer {
  background: #061739;
  color: rgba(255,255,255,.86);
  padding-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.footer-logo { width: 150px; margin-bottom: .8rem; }
.site-footer h3 { color: var(--gold-2); font-size: 1.4rem; }
.footer-bottom {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  padding: 1rem 0 1.5rem;
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: 88px;
    left: 1rem;
    right: 1rem;
    background: #061739;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: .6rem;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open { display: flex; }
  .nav-cta { width: 100%; }
  .hero { min-height: auto; }
  .hero-grid { padding: 4rem 0; }
  .trust-grid, .about-grid, .quote-grid, .labour-box, .projects-head { grid-template-columns: 1fr; display: grid; }
  .trust-grid article { border-right: none; border-bottom: 1px solid rgba(255,255,255,.14); }
  .trust-grid article:last-child { border-bottom: none; }
  .mini-points, .services-grid, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 220px; }
}
