@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;1,600&display=swap');

:root {
  --navy: #05264f;
  --navy-2: #031b3a;
  --navy-3: #0a356b;
  --silver: #a8b1bf;
  --silver-2: #e9edf2;
  --paper: #f7f8fa;
  --white: #ffffff;
  --ink: #122033;
  --muted: #647184;
  --wood: #b77b41;
  --wood-dark: #855123;
  --line: rgba(5, 38, 79, .12);
  --shadow: 0 20px 60px rgba(3, 27, 58, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

.topbar {
  background: var(--navy-2);
  color: rgba(255,255,255,.86);
  font-size: .82rem;
  letter-spacing: .02em;
}
.topbar a { color: #fff; }
.topbar .dot { width: 4px; height: 4px; border-radius: 99px; background: var(--silver); display: inline-block; }

.site-nav {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(5,38,79,.07);
  transition: box-shadow .25s ease, background .25s ease;
  z-index: 1040;
}
.site-nav.scrolled { box-shadow: 0 12px 36px rgba(3,27,58,.08); }
.navbar-brand img { width: 245px; max-height: 62px; object-fit: contain; }
.navbar-nav .nav-link {
  color: var(--navy-2);
  font-weight: 700;
  font-size: .92rem;
  padding: .7rem .8rem !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: .8rem;
  right: .8rem;
  bottom: .3rem;
  height: 2px;
  background: var(--wood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.btn-brand,
.btn-outline-brand {
  border-radius: 999px;
  padding: .82rem 1.25rem;
  font-weight: 800;
  letter-spacing: .01em;
  transition: .25s ease;
}
.btn-brand {
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
  box-shadow: 0 10px 25px rgba(5,38,79,.18);
}
.btn-brand:hover { background: var(--navy-3); border-color: var(--navy-3); color: #fff; transform: translateY(-2px); }
.btn-outline-brand { border: 1px solid rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.06); }
.btn-outline-brand:hover { color: var(--navy); background: #fff; transform: translateY(-2px); }

.hero {
  min-height: 78vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy-2);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,27,58,.98) 0%, rgba(3,27,58,.92) 42%, rgba(3,27,58,.42) 68%, rgba(3,27,58,.16) 100%), url('../images/hero.webp') center right / cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  left: -130px;
  bottom: -220px;
}
.hero .container { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--wood);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 34px; height: 2px; background: currentColor; }
.hero h1 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 6.7rem);
  line-height: .94;
  letter-spacing: -.055em;
  max-width: 880px;
  margin: 0 0 1.4rem;
}
.hero h1 span { color: #c9d2df; }
.hero .lead {
  color: rgba(255,255,255,.8);
  max-width: 650px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}
.hero-kicker { color: #fff; font-weight: 800; font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.8rem; }
.hero .micro { color: rgba(255,255,255,.62); font-size: .83rem; margin-top: 1.3rem; display:flex; flex-wrap:wrap; gap:1.2rem; }
.hero .micro i { color: var(--wood); margin-right: .35rem; }

.section { padding: 96px 0; }
.section-sm { padding: 72px 0; }
.section-soft { background: var(--paper); }
.section-dark { background: var(--navy-2); color: #fff; }
.section-title { margin-bottom: 3rem; }
.section-title h2 {
  color: var(--navy-2);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -.04em;
  font-weight: 800;
  margin: 0;
}
.section-title p { color: var(--muted); max-width: 680px; margin-top: 1rem; line-height: 1.75; }
.section-dark .section-title h2 { color: #fff; }
.section-dark .section-title p { color: rgba(255,255,255,.67); }

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -38px;
}
.trust-card {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 1.15rem;
}
.trust-item { display: flex; align-items: center; gap: .85rem; padding: .75rem 1rem; }
.trust-item i {
  width: 42px; height: 42px; border-radius: 12px; display:grid; place-items:center;
  background: rgba(5,38,79,.07); color: var(--navy); font-size:1.1rem;
}
.trust-item strong { display:block; color:var(--navy-2); font-size:.92rem; }
.trust-item span { color:var(--muted); font-size:.78rem; }

.service-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.65rem;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: 0 22px 50px rgba(3,27,58,.1); border-color: rgba(183,123,65,.35); }
.service-icon {
  width: 54px; height: 54px; border-radius: 16px; display:grid; place-items:center;
  background: var(--navy); color:#fff; font-size:1.3rem; margin-bottom:1.15rem;
}
.service-card h3 { font-size: 1.08rem; font-weight: 800; color: var(--navy-2); margin-bottom: .55rem; }
.service-card p { color: var(--muted); font-size: .92rem; line-height:1.65; margin:0; }

.image-panel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow);
}
.image-panel img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.image-panel .badge-float {
  position:absolute; left:22px; bottom:22px; max-width:260px; background:rgba(255,255,255,.94); backdrop-filter: blur(8px);
  padding:1.1rem 1.2rem; border-radius:16px; box-shadow:0 16px 35px rgba(3,27,58,.16);
}
.image-panel .badge-float strong { display:block; color:var(--navy); }
.image-panel .badge-float span { color:var(--muted); font-size:.82rem; }
.copy h2 { font-size:clamp(2rem,4vw,3.6rem); font-weight:800; letter-spacing:-.045em; color:var(--navy-2); }
.copy p { color:var(--muted); line-height:1.8; }
.check-list { list-style:none; padding:0; margin:1.5rem 0 0; }
.check-list li { display:flex; gap:.7rem; align-items:flex-start; margin:.8rem 0; color:var(--ink); }
.check-list i { color:var(--wood); margin-top:.15rem; }

.project-card { position:relative; border-radius:22px; overflow:hidden; min-height:320px; background:var(--navy-2); }
.project-card img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; transition: transform .55s ease; }
.project-card::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,transparent 35%,rgba(3,27,58,.92) 100%); }
.project-card:hover img { transform:scale(1.06); }
.project-info { position:absolute; z-index:2; left:1.4rem; right:1.4rem; bottom:1.3rem; color:#fff; }
.project-info .label { font-size:.72rem; letter-spacing:.13em; text-transform:uppercase; color:#d4dce7; }
.project-info h3 { font-size:1.2rem; font-weight:800; margin:.25rem 0 0; }

.why-card { border-radius:20px; border:1px solid rgba(255,255,255,.12); padding:1.5rem; height:100%; background:rgba(255,255,255,.04); }
.why-card i { font-size:1.35rem; color:#d6dee8; }
.why-card h3 { font-size:1rem; margin-top:1rem; font-weight:800; }
.why-card p { color:rgba(255,255,255,.62); font-size:.88rem; line-height:1.6; margin-bottom:0; }

.cta-panel {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(120deg, var(--navy-2), var(--navy));
  color: #fff;
  padding: clamp(2rem,5vw,4.6rem);
  position: relative;
}
.cta-panel::after { content:''; position:absolute; right:-110px; top:-140px; width:420px; height:420px; border:1px solid rgba(255,255,255,.1); border-radius:50%; }
.cta-panel h2 { font-size:clamp(2rem,4vw,3.6rem); font-weight:800; letter-spacing:-.04em; max-width:750px; }
.cta-panel p { color:rgba(255,255,255,.68); max-width:620px; }

.page-hero {
  padding: 110px 0 80px;
  background: linear-gradient(120deg, var(--navy-2), var(--navy));
  color:#fff;
  position:relative;
  overflow:hidden;
}
.page-hero::after { content:''; position:absolute; width:500px; height:500px; right:-180px; top:-280px; border:1px solid rgba(255,255,255,.1); border-radius:50%; }
.page-hero h1 { font-size:clamp(2.6rem,6vw,5.4rem); font-weight:800; letter-spacing:-.055em; margin:0; }
.page-hero p { color:rgba(255,255,255,.68); max-width:700px; line-height:1.75; margin-top:1rem; }

.gallery-card { border-radius:20px; overflow:hidden; position:relative; min-height:360px; box-shadow:0 12px 35px rgba(3,27,58,.09); }
.gallery-card img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; transition:transform .45s ease; }
.gallery-card:hover img { transform:scale(1.05); }
.gallery-card .caption { position:absolute; z-index:2; bottom:0; left:0; right:0; color:#fff; padding:2.5rem 1.25rem 1.15rem; background:linear-gradient(transparent, rgba(3,27,58,.9)); font-weight:800; }

.contact-card { background:#fff; border:1px solid var(--line); border-radius:22px; padding:1.5rem; height:100%; }
.contact-card .icon { width:48px; height:48px; display:grid; place-items:center; border-radius:14px; background:rgba(5,38,79,.08); color:var(--navy); font-size:1.2rem; margin-bottom:1rem; }
.contact-card h3 { font-size:1rem; font-weight:800; color:var(--navy-2); }
.contact-card p, .contact-card a { color:var(--muted); font-size:.9rem; }
.form-control, .form-select { border-radius:14px; border-color:#dbe2ea; padding:.9rem 1rem; }
.form-control:focus, .form-select:focus { border-color:var(--navy); box-shadow:0 0 0 .2rem rgba(5,38,79,.09); }
.form-label { font-size:.83rem; font-weight:700; color:var(--navy-2); }

.footer { background:#021630; color:#fff; padding:70px 0 26px; }
.footer-logo { background:#fff; border-radius:13px; padding:.35rem .6rem; width:230px; }
.footer p { color:rgba(255,255,255,.58); font-size:.88rem; line-height:1.7; }
.footer h3 { font-size:.83rem; text-transform:uppercase; letter-spacing:.12em; color:#d6deea; margin-bottom:1rem; }
.footer a { color:rgba(255,255,255,.7); font-size:.9rem; display:inline-block; margin:.25rem 0; }
.footer a:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); margin-top:2.2rem; padding-top:1.2rem; color:rgba(255,255,255,.45); font-size:.78rem; }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 991.98px) {
  .navbar-brand img { width: 205px; }
  .navbar-collapse { padding:1rem 0 1.25rem; }
  .hero { min-height: 72vh; }
  .hero::before { background: linear-gradient(90deg, rgba(3,27,58,.98) 0%, rgba(3,27,58,.9) 65%, rgba(3,27,58,.45) 100%), url('../images/hero.webp') 62% center / cover no-repeat; }
  .trust-strip { margin-top:0; padding-top:1.2rem; }
  .trust-card { box-shadow:none; border:1px solid var(--line); }
  .image-panel { min-height:420px; }
}

@media (max-width: 767.98px) {
  .topbar .desktop-only { display:none !important; }
  .section { padding:72px 0; }
  .section-sm { padding:56px 0; }
  .hero { min-height: 78vh; padding:70px 0; }
  .hero::before { background: linear-gradient(180deg, rgba(3,27,58,.76) 0%, rgba(3,27,58,.93) 56%, rgba(3,27,58,.98) 100%), url('../images/hero.webp') 66% center / cover no-repeat; }
  .hero h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .hero .lead { font-size:.98rem; }
  .hero-actions .btn { width:100%; }
  .trust-item { padding:.65rem .35rem; }
  .image-panel { min-height:360px; }
  .page-hero { padding:80px 0 60px; }
  .gallery-card { min-height:300px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; transition:none !important; animation:none !important; }
  .reveal { opacity:1; transform:none; }
}
