@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ink: #101820;
  --ink-soft: #1b2732;
  --slate: #52616d;
  --orange: #f36f21;
  --orange-dark: #cf5312;
  --sand: #f4f0e9;
  --paper: #ffffff;
  --line: #dfe3e6;
  --muted: #6b7780;
  --success: #0c7a4d;
  --error: #b3261e;
  --shadow: 0 20px 60px rgba(16, 24, 32, 0.12);
  --radius: 4px;
  --container: 1180px;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 16px;
  padding: 10px 16px;
  background: var(--orange);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-sand { background: var(--sand); }

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 800;
}

h1, h2, h3 { font-family: var(--display); margin: 0; line-height: .98; letter-spacing: -.02em; }
h1 { font-size: clamp(3.4rem, 7vw, 6.7rem); font-weight: 800; text-transform: uppercase; }
h2 { font-size: clamp(2.7rem, 5vw, 4.4rem); font-weight: 700; text-transform: uppercase; }
h3 { font-size: 1.65rem; font-weight: 700; }
p { margin: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { background: #ff853d; border-color: #ff853d; transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 3px solid rgba(243, 111, 33, .38);
  outline-offset: 3px;
}
.button-small { min-height: 44px; padding-inline: 18px; }
.button-light { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.button-light:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.button-full { width: 100%; }
.text-link { color: var(--paper); font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 3px; }
.text-link:hover { color: var(--orange); border-color: var(--orange); }

.utility-bar { background: #080d12; color: #d7dce0; font-size: .77rem; letter-spacing: .04em; }
.utility-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.utility-inner p { text-transform: uppercase; font-weight: 700; letter-spacing: .12em; }
.utility-links { display: flex; gap: 10px; align-items: center; }
.utility-links a:hover { color: var(--orange); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(16,24,32,.08);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { flex: 0 0 auto; }
.brand img { width: 230px; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.site-nav > a:not(.button) { font-size: .83rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.site-nav > a:not(.button):hover { color: var(--orange); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }

.hero { overflow: hidden; position: relative; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 55%);
}
.hero-grid { position: relative; z-index: 1; min-height: 730px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 58px; padding-top: 64px; padding-bottom: 64px; }
.hero h1 span { color: var(--orange); }
.hero-lead { max-width: 690px; margin-top: 28px; color: #c8d0d6; font-size: 1.08rem; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; flex-wrap: wrap; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 62px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.16); }
.trust-row div { display: flex; flex-direction: column; gap: 3px; }
.trust-row strong { font-family: var(--display); text-transform: uppercase; font-size: 1.2rem; letter-spacing: .02em; }
.trust-row span { color: #8f9aa3; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.hero-visual { position: relative; }
.hero-frame { position: relative; background: #192733; border: 1px solid rgba(255,255,255,.12); box-shadow: 28px 28px 0 rgba(243,111,33,.13); }
.hero-frame::before { content:""; position:absolute; top:-16px; right:-16px; width:82px; height:82px; border-top:4px solid var(--orange); border-right:4px solid var(--orange); z-index:2; }
.hero-frame img { width: 100%; }
.hero-badge {
  position: absolute;
  left: -38px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 320px;
  padding: 16px 20px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.badge-mark { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 44px; background: var(--orange); font-family: var(--display); font-weight: 800; font-size: 1.8rem; }
.hero-badge span:last-child { display: flex; flex-direction: column; line-height: 1.25; }
.hero-badge strong { font-size: .9rem; }
.hero-badge small { color: var(--muted); margin-top: 4px; }

.intro-strip { background: var(--orange); color: var(--ink); }
.intro-strip-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.intro-strip p { font-family: var(--display); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; text-transform: uppercase; }
.intro-strip a { flex: 0 0 auto; text-transform: uppercase; font-size: .76rem; font-weight: 800; letter-spacing: .08em; }

.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 60px; align-items: end; margin-bottom: 58px; }
.section-heading > p { color: var(--muted); max-width: 470px; justify-self: end; }
.section-heading-light > p { color: #a8b2ba; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 300px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); transition: transform .25s ease, box-shadow .25s ease, background .25s ease; overflow: hidden; }
.service-card::after { content:""; position:absolute; left:0; bottom:0; width:0; height:4px; background:var(--orange); transition:width .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); z-index: 2; }
.service-card:hover::after { width:100%; }
.service-number { position: absolute; top: 22px; right: 24px; color: #c7cdd1; font-family: var(--display); font-weight: 700; }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; background: var(--sand); color: var(--orange); font-family: var(--display); font-size: 1.8rem; font-weight: 800; margin-bottom: 34px; }
.service-card h3 { margin-bottom: 16px; text-transform: uppercase; }
.service-card p { color: var(--muted); font-size: .93rem; }
.service-card-wide { grid-column: span 3; min-height: 190px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.service-card-wide .service-icon { margin: 0; }
.service-card-wide h3 { margin-bottom: 10px; }
.service-card-wide > a { text-transform: uppercase; font-weight: 800; letter-spacing: .07em; font-size: .76rem; color: var(--orange-dark); }
.trade-note { margin-top: 24px; padding: 18px 20px; border-left: 4px solid var(--orange); background: #fafafa; color: var(--muted); font-size: .84rem; }
.trade-note strong { color: var(--ink); }

.project-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 26px; }
.project-card { background: var(--paper); box-shadow: 0 12px 35px rgba(16,24,32,.08); overflow: hidden; }
.project-card-large { grid-row: span 2; }
.project-image { position: relative; overflow: hidden; background: #d9ddd9; }
.project-card-large .project-image { aspect-ratio: 1.2 / 1; }
.project-card:not(.project-card-large) .project-image { aspect-ratio: 2.15 / 1; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover .project-image img { transform: scale(1.03); }
.project-status { position:absolute; left:18px; bottom:18px; padding:8px 12px; background:rgba(16,24,32,.88); color:#fff; text-transform:uppercase; letter-spacing:.1em; font-size:.65rem; font-weight:800; }
.project-copy { padding: 26px 28px 30px; }
.project-type { margin-bottom: 8px; color: var(--orange-dark); font-size: .7rem; text-transform: uppercase; font-weight: 800; letter-spacing: .14em; }
.project-copy h3 { text-transform: uppercase; }
.project-copy p:last-child { margin-top: 12px; color: var(--muted); }

.process-section { position: relative; overflow: hidden; }
.process-section::after { content:"NOVA"; position:absolute; right:-30px; bottom:-90px; font:800 20rem/.8 var(--display); color:rgba(255,255,255,.025); pointer-events:none; }
.process-grid { position:relative; z-index:1; list-style:none; padding:0; margin:0; display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(255,255,255,.16); }
.process-step { position:relative; padding:42px 32px 0 0; }
.process-step:not(:last-child) { border-right:1px solid rgba(255,255,255,.16); margin-right:28px; }
.process-step > span { display:grid; place-items:center; width:44px; height:44px; margin-bottom:28px; background:var(--orange); color:var(--ink); font-family:var(--display); font-size:1.2rem; font-weight:800; }
.process-step h3 { margin-bottom:16px; color:#fff; text-transform:uppercase; }
.process-step p { color:#9ca8b0; font-size:.9rem; }

.about-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:80px; align-items:center; }
.about-visual { min-height:540px; position:relative; background:var(--sand); }
.about-visual::before { content:""; position:absolute; inset:32px; border:1px solid rgba(16,24,32,.16); }
.about-block { position:absolute; z-index:1; }
.about-block-main { top:90px; left:70px; right:50px; padding:42px; background:var(--ink); color:#fff; }
.about-block-main span { display:block; color:var(--orange); text-transform:uppercase; letter-spacing:.16em; font-size:.72rem; font-weight:800; margin-bottom:18px; }
.about-block-main strong { font:700 clamp(2.4rem,4vw,4rem)/.95 var(--display); text-transform:uppercase; }
.about-block-accent { left:30px; right:100px; bottom:56px; display:flex; align-items:center; gap:18px; padding:24px 28px; background:var(--orange); color:var(--ink); }
.about-initial { display:grid; place-items:center; width:54px; height:54px; flex:0 0 54px; border:2px solid var(--ink); font:800 2rem var(--display); }
.about-block-accent p { font-weight:800; text-transform:uppercase; letter-spacing:.04em; line-height:1.3; }
.about-copy > p:not(.eyebrow) { color:var(--muted); margin-top:22px; }
.about-contact { display:flex; justify-content:space-between; align-items:end; gap:20px; margin-top:42px; padding-top:28px; border-top:1px solid var(--line); }
.about-contact div { display:flex; flex-direction:column; }
.about-contact div span { color:var(--muted); font-size:.72rem; text-transform:uppercase; letter-spacing:.1em; }
.about-contact strong { font-family:var(--display); font-size:1.7rem; text-transform:uppercase; }
.about-contact a { color:var(--orange-dark); font-weight:800; }

.cta-band { background:var(--orange); padding:64px 0; }
.cta-band .eyebrow { color:var(--ink); opacity:.7; }
.cta-band-inner { display:flex; justify-content:space-between; align-items:center; gap:30px; }
.cta-band h2 { font-size:clamp(2.4rem,4vw,4rem); }

.contact-section { background:#f8f9fa; }
.contact-grid { display:grid; grid-template-columns:.78fr 1.22fr; gap:78px; align-items:start; }
.contact-copy { position:sticky; top:130px; }
.contact-copy > p:not(.eyebrow) { color:var(--muted); margin-top:24px; }
.contact-methods { margin-top:42px; border-top:1px solid var(--line); }
.contact-methods > * { display:flex; flex-direction:column; padding:18px 0; border-bottom:1px solid var(--line); }
.contact-methods a:hover strong { color:var(--orange-dark); }
.contact-label { color:var(--muted); text-transform:uppercase; letter-spacing:.1em; font-size:.68rem; font-weight:700; }
.contact-methods strong { margin-top:3px; font-size:.98rem; overflow-wrap:anywhere; }
.form-panel { padding:42px; background:var(--paper); box-shadow:var(--shadow); border-top:5px solid var(--orange); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.field { margin-bottom:20px; }
.field label { display:block; margin-bottom:8px; font-size:.75rem; font-weight:800; text-transform:uppercase; letter-spacing:.07em; }
.field label span { color:var(--orange-dark); }
input, select, textarea { width:100%; border:1px solid #cfd5d9; border-radius:2px; background:#fff; color:var(--ink); padding:13px 14px; transition:border-color .2s ease, box-shadow .2s ease; }
input, select { min-height:50px; }
textarea { resize:vertical; min-height:140px; }
input:focus, select:focus, textarea:focus { border-color:var(--orange); box-shadow:0 0 0 3px rgba(243,111,33,.12); outline:none; }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] { border-color:var(--error); }
.consent-row { display:flex; align-items:flex-start; gap:11px; margin:2px 0 24px; color:var(--muted); font-size:.78rem; }
.consent-row input { width:18px; min-height:18px; flex:0 0 18px; margin-top:3px; accent-color:var(--orange); }
.form-note { margin-top:14px; color:var(--muted); text-align:center; font-size:.72rem; }
.form-status { display:none; margin-top:18px; padding:12px 14px; font-size:.82rem; border-left:4px solid; }
.form-status.is-success { display:block; color:var(--success); background:#edf8f3; border-color:var(--success); }
.form-status.is-error { display:block; color:var(--error); background:#fff1f0; border-color:var(--error); }
.honeypot { position:absolute !important; left:-9999px !important; width:1px !important; height:1px !important; overflow:hidden !important; }
.button-loading { display:none; }
form.is-loading .button-label { display:none; }
form.is-loading .button-loading { display:inline; }
form.is-loading button { opacity:.75; pointer-events:none; }

.site-footer { background:#080d12; color:#aeb7be; padding:72px 0 24px; }
.footer-grid { display:grid; grid-template-columns:1.4fr repeat(3,1fr); gap:55px; }
.footer-brand img { width:230px; }
.footer-brand p { margin-top:20px; color:#7e8a93; }
.footer-grid h3 { color:#fff; font-size:1rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:18px; }
.footer-grid > div:not(.footer-brand) { display:flex; flex-direction:column; gap:10px; font-size:.82rem; }
.footer-grid a:hover { color:var(--orange); }
.footer-bottom { display:flex; justify-content:space-between; gap:24px; margin-top:58px; padding-top:22px; border-top:1px solid rgba(255,255,255,.1); font-size:.7rem; }
.mobile-cta { display:none; }

.legal-header { position:relative; }
.legal-content { max-width:820px; }
.legal-content h1 { font-size:clamp(3rem,6vw,5.2rem); color:var(--ink); }
.legal-content h2 { margin-top:42px; font-size:2rem; }
.legal-content p { color:var(--muted); margin-top:14px; }
.legal-content a:not(.text-link) { color:var(--orange-dark); text-decoration:underline; }
.legal-content .text-link { display:inline-block; margin-top:42px; color:var(--ink); border-color:var(--ink); }
.legal-updated { font-size:.85rem; }
.legal-footer { padding-top:20px; }
.error-page { min-height:100vh; display:grid; place-items:center; text-align:center; padding:40px 20px; }
.error-content { max-width:760px; }
.error-content img { margin:0 auto 50px; }
.error-content h1 { font-size:clamp(3rem,6vw,5.5rem); }
.error-content p:not(.eyebrow) { margin:24px auto 34px; color:#aeb7be; }

.reveal { opacity:0; transform:translateY(26px); transition:opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); transition-delay:var(--reveal-delay,0ms); }
.reveal.is-visible { opacity:1; transform:none; }

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

@media (max-width: 1020px) {
  .section { padding:90px 0; }
  .site-nav { gap:16px; }
  .site-nav > a:not(.button) { display:none; }
  .hero-grid { min-height:0; grid-template-columns:1fr; padding-top:90px; padding-bottom:90px; }
  .hero-copy { max-width:800px; }
  .hero-visual { max-width:680px; width:100%; margin:0 auto; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .service-card-wide { grid-column:span 2; }
  .project-grid { grid-template-columns:1fr 1fr; }
  .project-card-large { grid-row:auto; grid-column:span 2; }
  .project-card-large .project-image { aspect-ratio:2/1; }
  .process-grid { grid-template-columns:1fr 1fr; gap:0; }
  .process-step { padding-bottom:45px; }
  .process-step:nth-child(2) { border-right:0; margin-right:0; }
  .about-grid { grid-template-columns:1fr 1fr; gap:45px; }
  .contact-grid { gap:45px; }
  .footer-grid { grid-template-columns:1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column:2; }
}

@media (max-width: 760px) {
  body { padding-bottom:62px; }
  .container { width:min(calc(100% - 28px), var(--container)); }
  .section { padding:72px 0; }
  .utility-inner { justify-content:center; min-height:34px; }
  .utility-inner > p, .utility-links span, .utility-links a:last-child { display:none; }
  .nav-wrap { min-height:68px; }
  .brand img { width:190px; }
  .menu-toggle { display:block; }
  .site-nav { position:absolute; top:100%; left:0; right:0; display:none; flex-direction:column; align-items:stretch; gap:0; padding:10px 20px 20px; background:#fff; border-bottom:1px solid var(--line); box-shadow:0 18px 30px rgba(16,24,32,.12); }
  .site-nav.is-open { display:flex; }
  .site-nav > a:not(.button) { display:block; padding:14px 0; border-bottom:1px solid var(--line); }
  .site-nav .button { margin-top:14px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity:0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
  h1 { font-size:clamp(3.4rem,16vw,5.2rem); }
  h2 { font-size:clamp(2.6rem,12vw,3.7rem); }
  .hero-grid { padding-top:68px; padding-bottom:72px; gap:50px; }
  .hero-lead { font-size:.98rem; }
  .hero-actions { align-items:flex-start; flex-direction:column; gap:20px; }
  .trust-row { grid-template-columns:1fr; gap:16px; margin-top:44px; }
  .trust-row div { flex-direction:row; align-items:baseline; gap:8px; }
  .hero-badge { left:12px; right:12px; bottom:12px; min-width:0; }
  .hero-frame { box-shadow:14px 14px 0 rgba(243,111,33,.13); }
  .intro-strip-inner { min-height:110px; flex-direction:column; justify-content:center; align-items:flex-start; gap:6px; }
  .section-heading { grid-template-columns:1fr; gap:24px; margin-bottom:42px; }
  .section-heading > p { justify-self:start; }
  .services-grid { grid-template-columns:1fr; }
  .service-card { min-height:270px; padding:28px; }
  .service-card-wide { grid-column:span 1; display:block; }
  .service-card-wide .service-icon { margin-bottom:28px; }
  .service-card-wide > a { display:inline-block; margin-top:20px; }
  .project-grid { grid-template-columns:1fr; }
  .project-card-large { grid-column:span 1; }
  .project-card-large .project-image, .project-card:not(.project-card-large) .project-image { aspect-ratio:1.55/1; }
  .process-grid { grid-template-columns:1fr; }
  .process-step { border-right:0 !important; margin-right:0 !important; border-bottom:1px solid rgba(255,255,255,.14); padding:32px 0; }
  .about-grid { grid-template-columns:1fr; gap:48px; }
  .about-visual { min-height:450px; }
  .about-block-main { top:70px; left:38px; right:28px; padding:32px; }
  .about-block-accent { left:18px; right:50px; bottom:38px; }
  .about-contact { align-items:flex-start; flex-direction:column; }
  .cta-band-inner { align-items:flex-start; flex-direction:column; }
  .contact-grid { grid-template-columns:1fr; }
  .contact-copy { position:static; }
  .form-panel { padding:28px 20px; }
  .form-row { grid-template-columns:1fr; gap:0; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:42px 24px; }
  .footer-brand { grid-column:span 2; }
  .footer-grid > div:last-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; }
  .mobile-cta { position:fixed; left:0; right:0; bottom:0; z-index:1200; display:grid; grid-template-columns:1fr 1.25fr; min-height:62px; box-shadow:0 -10px 25px rgba(16,24,32,.18); }
  .mobile-cta a { display:grid; place-items:center; text-transform:uppercase; font-size:.76rem; font-weight:800; letter-spacing:.06em; }
  .mobile-cta a:first-child { background:var(--paper); color:var(--ink); }
  .mobile-cta a:last-child { background:var(--orange); color:var(--ink); }
}

@media (max-width: 430px) {
  .footer-grid { grid-template-columns:1fr; }
  .footer-brand { grid-column:span 1; }
  .about-visual { min-height:420px; }
  .about-block-main { left:24px; right:18px; }
  .about-block-accent { right:28px; padding:18px; }
}
