/* Ventry Build — static Namecheap package */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");
:root {
  --charcoal: #1f2937;
  --charcoal-deep: #111827;
  --slate: #6b7280;
  --paper: #ffffff;
  --paper-warm: #f7f6f3;
  --amber: #b8860b;
  --border: #e5e7eb;
  --label: 0.22em;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  color: var(--charcoal);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.page-wrap { width: min(72rem, calc(100% - 2rem)); margin-inline: auto; }
@media (min-width: 640px) {
  .page-wrap { width: min(72rem, calc(100% - 3rem)); }
}
.eyebrow {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: var(--label);
  text-transform: uppercase; color: var(--slate); margin: 0;
}
.eyebrow.amber { color: var(--amber); }
h1, h2, h3 { text-wrap: balance; margin: 0; }
p { text-wrap: pretty; }
.header {
  position: sticky; top: 0; z-index: 40; height: 4rem;
  border-bottom: 1px solid var(--border); background: var(--paper);
}
.header::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: var(--amber);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { display: inline-flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.mark {
  width: 2.25rem; height: 2.25rem; display: grid; place-items: center;
  background: var(--charcoal); color: var(--paper); flex-shrink: 0;
}
.mark svg { width: 1.5rem; height: 1.5rem; }
.logo-type { display: flex; flex-direction: column; line-height: 1; }
.logo-type strong { font-size: 0.875rem; letter-spacing: 0.04em; }
.logo-type span { margin-top: 2px; font-size: 0.625rem; font-weight: 600; letter-spacing: var(--label); }
.header-brand { display: inline-flex; align-items: center; gap: 0.75rem; min-width: 0; }
.header-slogan {
  display: none; margin: 0; font-size: 0.625rem; font-weight: 600;
  letter-spacing: var(--label); text-transform: uppercase; color: var(--amber);
  white-space: nowrap;
}
@media (min-width: 900px) {
  .header-slogan { display: block; }
}
@media (min-width: 1100px) {
  .header-slogan { font-size: 0.6875rem; }
}

nav.desk { display: none; align-items: center; gap: 2rem; }
nav.desk a {
  font-size: 0.75rem; font-weight: 600; letter-spacing: var(--label);
  text-transform: uppercase; text-decoration: none; color: var(--slate);
}
nav.desk a:hover, nav.desk a.is-on { color: var(--charcoal); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.phone {
  display: none; font-size: 0.75rem; font-weight: 600;
  letter-spacing: var(--label); text-transform: uppercase; text-decoration: none;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 2.75rem; padding: 0 1.25rem; font-family: inherit;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border: 0; cursor: pointer;
}
.btn-lg { min-height: 3rem; padding: 0 1.5rem; }
.btn-primary { background: var(--charcoal); color: var(--paper); }
.btn-accent { background: var(--amber); color: var(--charcoal-deep); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1px solid var(--charcoal); }
.btn-ghost { background: transparent; color: var(--paper); border: 1px solid rgba(255,255,255,0.25); }
.menu-btn {
  width: 2.75rem; height: 2.75rem; border: 0; background: none; display: grid; place-items: center;
}
.menu { display: none; background: var(--charcoal); color: var(--paper); padding: 1.5rem 0 2rem; }
.menu.open { display: block; }
.menu a {
  display: flex; min-height: 3.5rem; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1.5rem; font-weight: 700; text-decoration: none;
}
.hero {
  position: relative; min-height: calc(100dvh - 4rem); color: var(--paper);
  display: flex; align-items: flex-end; overflow: hidden; background: var(--charcoal);
}
.hero img.bg, .band img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero .shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #111827, rgba(31,41,55,0.4), rgba(31,41,55,0.2));
}
.hero-inner { position: relative; padding: 6rem 0 3.5rem; }
.hero h1 { margin-top: 1.25rem; font-size: clamp(2.25rem, 6vw, 4.5rem); line-height: 0.95; letter-spacing: -0.03em; }
.hero h1 span { display: block; margin-top: 0.35rem; }
.lede { margin-top: 1.5rem; max-width: 36rem; font-size: 1.05rem; line-height: 1.6; color: rgba(255,255,255,0.8); }
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.stats {
  display: grid; border-bottom: 1px solid var(--border);
}
.stat { padding: 2rem 0; border-bottom: 1px solid var(--border); }
.stat p.value { margin: 0.75rem 0 0; font-size: 1.25rem; font-weight: 600; }
.section { padding: 5rem 0; }
.warm { background: var(--paper-warm); }
.dark { background: var(--charcoal); color: var(--paper); }
.grid-3, .grid-2, .grid-services { display: grid; gap: 1px; background: var(--border); }
.card { background: var(--paper-warm); padding: 2rem; }
.card h3 { margin-top: 1rem; font-size: 1.25rem; }
.card p { margin: 0.75rem 0 0; font-size: 0.9rem; line-height: 1.6; color: var(--slate); }
.num { font-weight: 600; color: var(--amber); }
.split { display: grid; }
.split img { width: 100%; height: 20rem; object-fit: cover; }
.split-copy { padding: 3rem 1.5rem; }
.split-copy h2 { margin-top: 1rem; font-size: clamp(1.75rem, 3vw, 2.25rem); }
.split-copy p.body { margin-top: 1.5rem; max-width: 32rem; line-height: 1.65; color: var(--slate); }
.openings { margin-top: 2rem; display: grid; gap: 1rem; }
.openings h3 { font-size: 0.9rem; }
.openings p { margin: 0.35rem 0 0; font-size: 0.875rem; color: var(--slate); line-height: 1.5; }
.sectors { display: grid; gap: 1rem; margin-top: 3rem; }
.sector { position: relative; overflow: hidden; color: var(--paper); text-decoration: none; }
.sector img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.sector .cap {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #111827, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem;
}
.process { display: grid; gap: 2.5rem; margin-top: 3rem; }
.step { border-top: 1px solid var(--charcoal); padding-top: 1.5rem; }
.band { position: relative; overflow: hidden; color: var(--paper); }
.band .cover { position: absolute; inset: 0; background: rgba(17,24,39,0.7); }
.band-inner { position: relative; display: grid; gap: 3rem; padding: 5rem 0; }
.contact-list { margin: 2rem 0 0; padding: 0; list-style: none; line-height: 1.8; }
.contact-list a { color: inherit; }
form { display: grid; gap: 1.1rem; }
label { font-size: 0.75rem; font-weight: 600; letter-spacing: var(--label); text-transform: uppercase; }
input, textarea, select {
  width: 100%; min-height: 2.75rem; border: 1px solid rgba(255,255,255,0.2);
  background: var(--charcoal); color: var(--paper); padding: 0.65rem 0.85rem;
  font: inherit; font-size: 0.9rem;
}
textarea { min-height: 8rem; resize: vertical; }
.light-form input, .light-form textarea, .light-form select {
  border-color: var(--border); background: var(--paper); color: var(--charcoal);
}
.footer { background: var(--charcoal-deep); color: var(--paper); padding: 4rem 0 0; }
.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
.footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer .logo .mark { background: var(--paper); color: var(--charcoal); }
.footer p.fine { max-width: 24rem; color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.6; }
.legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0; font-size: 0.75rem; color: rgba(255,255,255,0.45);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.page-hero { position: relative; min-height: 22rem; color: var(--paper); display: flex; align-items: flex-end; background: var(--charcoal); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.page-hero .inner { position: relative; padding: 6rem 0 3rem; }
.page-hero h1 { margin-top: 1rem; font-size: clamp(2rem, 5vw, 3.25rem); }
.work-grid, .svc { display: grid; gap: 2.5rem; }
.photo { outline: 1px solid rgb(31 41 55 / 0.12); outline-offset: -1px; }
.cards { display: grid; gap: 1.5rem; }
.card-face {
  aspect-ratio: 7/4; padding: 1.5rem; display: flex; flex-direction: column;
  box-shadow: 0 0 0 1px rgb(31 41 55 / 0.08), 0 8px 24px -12px rgb(31 41 55 / 0.12);
}
.card-face .bar { height: 2px; background: var(--amber); }
.card-face.front { background: var(--paper); }
.card-face.back {
  background: var(--charcoal); color: var(--paper);
  align-items: center; justify-content: center; text-align: center;
}
.skip {
  position: absolute; left: -999px; top: 0; background: var(--amber); color: var(--charcoal); padding: 0.5rem 1rem;
}
.skip:focus { left: 1rem; top: 1rem; z-index: 80; }
@media (min-width: 640px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat { border-bottom: 0; border-right: 1px solid var(--border); padding: 2rem 2rem 2rem 0; }
  .stat:last-child { border-right: 0; }
  .grid-services { grid-template-columns: 1fr 1fr; }
  .openings { grid-template-columns: 1fr 1fr; }
  .sectors { grid-template-columns: 1fr 1fr; }
  .phone { display: inline-flex; }
  .header .btn-bid { display: inline-flex; }
}
@media (min-width: 768px) {
  .menu-btn { display: none; }
  nav.desk { display: flex; }
  .process { grid-template-columns: repeat(5, 1fr); }
  .footer-grid { grid-template-columns: 5fr 3fr 4fr; }
  .legal { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 1024px) {
  .grid-services { grid-template-columns: 1fr 1fr 1fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .split img { height: 100%; min-height: 28rem; }
  .split-copy { padding: 4rem; }
  .sectors { grid-template-columns: 1fr 1fr 1fr; }
  .band-inner { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .svc { grid-template-columns: 5fr 7fr; align-items: center; }
  .cards { grid-template-columns: 1fr 1fr; }
}
