:root {
  --navy: #0a315c;
  --navy-deep: #061e39;
  --navy-soft: #174b7d;
  --gold: #d9a544;
  --gold-light: #f2d28b;
  --ink: #142334;
  --muted: #617080;
  --paper: #f7f5f0;
  --white: #fff;
  --line: #dde3e9;
  --shadow: 0 18px 45px rgba(6, 30, 57, .12);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 9999; background: var(--white); padding: 12px 16px; border-radius: 10px; box-shadow: var(--shadow); }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 84px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10,49,92,.09);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: auto; height: 52px; max-width: none; }
.primary-nav { display: flex; align-items: center; gap: 30px; font-weight: 700; font-size: .95rem; }
.primary-nav > a:not(.nav-cta) { position: relative; padding: 28px 0; }
.primary-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--gold); transition: right .25s ease; }
.primary-nav > a:not(.nav-cta):hover::after, .primary-nav > a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--navy); color: var(--white); padding: 13px 19px; border-radius: 10px; box-shadow: 0 9px 20px rgba(10,49,92,.18); transition: transform .2s ease, background .2s ease; }
.nav-cta:hover { transform: translateY(-2px); background: var(--navy-soft); }
.menu-toggle { display: none; width: 46px; height: 44px; border: 0; background: transparent; padding: 9px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: var(--navy); margin: 6px 0; transition: .25s ease; }

.hero {
  position: relative;
  min-height: 690px;
  background: url("assets/hero.jpg") center 55% / cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 86px 0;
  isolation: isolate;
}
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(5,27,52,.98) 0%, rgba(7,36,68,.90) 37%, rgba(7,36,68,.42) 68%, rgba(7,36,68,.12) 100%), linear-gradient(0deg, rgba(3,19,36,.18), transparent); }
.hero-copy { width: min(690px, 62%); }
.eyebrow { margin: 0 0 12px; color: var(--gold); font-size: .79rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(3rem, 6vw, 5.55rem); line-height: .98; letter-spacing: -.055em; text-wrap: balance; }
.hero-lead { max-width: 620px; margin: 26px 0 0; font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255,255,255,.86); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 14px 21px; border-radius: 10px; border: 1px solid transparent; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { color: #1b2b3b; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 12px 28px rgba(217,165,68,.22); }
.button-gold:hover { box-shadow: 0 16px 35px rgba(217,165,68,.3); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.04); }
.button-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.button-ghost svg { width: 20px; height: 20px; }
.button-navy { width: 100%; color: var(--white); background: var(--navy); }
.button-navy:hover { background: var(--navy-soft); box-shadow: 0 12px 28px rgba(10,49,92,.2); }

.section { padding: 112px 0; }
.section-heading { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-heading h2, .about-copy h2, .contact-copy h2, .cta-inner h2 { margin: 0; color: var(--navy-deep); font-size: clamp(2.15rem, 4vw, 3.55rem); line-height: 1.08; letter-spacing: -.045em; text-wrap: balance; }
.section-heading > p:last-child { margin: 18px auto 0; max-width: 660px; color: var(--muted); font-size: 1.06rem; }
.services { padding-top: 112px; background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 24px rgba(6,30,57,.045); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(10,49,92,.22); }
.icon-box { width: 52px; height: 52px; display: grid; place-items: center; background: #edf3f8; color: var(--navy); border-radius: 14px; }
.icon-box svg { width: 27px; height: 27px; }
.service-card h3 { margin: 22px 0 9px; color: var(--navy-deep); font-size: 1.18rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .96rem; }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(48px, 7vw, 92px); align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; aspect-ratio: 1.28 / 1; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.experience-badge { position: absolute; right: -24px; bottom: -24px; width: 190px; padding: 22px 24px; background: var(--navy); color: var(--white); border-radius: 16px; box-shadow: var(--shadow); }
.experience-badge strong { display: block; color: var(--gold-light); font-size: 2.3rem; line-height: .9; }
.experience-badge span { display: block; margin-top: 8px; font-size: .86rem; line-height: 1.35; }
.about-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.03rem; }
.signature-line { margin: 24px 0; padding-left: 18px; border-left: 3px solid var(--gold); color: var(--navy); font-size: 1.1rem; font-weight: 800; font-style: italic; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy); font-weight: 800; border-bottom: 1px solid rgba(10,49,92,.3); }

.projects { background: #fff; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; text-align: left; }
.split-heading > p { margin: 0 0 8px !important; }
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.project-grid-real { grid-template-columns: repeat(12, 1fr); grid-auto-flow: dense; }
.project-grid-real .project-card { grid-column: span 6; }
.project-grid-real .project-card-featured { grid-column: span 8; min-height: 560px; }
.project-grid-real .project-card-featured + .project-card { grid-column: span 4; min-height: 560px; }
.project-grid-real .project-card-tall { min-height: 520px; }
.project-card { position: relative; overflow: hidden; min-height: 435px; border-radius: 20px; background: var(--navy-deep); box-shadow: var(--shadow); }
.project-card-large { grid-column: 1 / -1; min-height: 520px; }
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(4,21,40,.9) 100%); }
.project-card:hover img { transform: scale(1.035); }
.project-content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 34px; color: var(--white); }
.project-tag { color: var(--gold-light); font-size: .76rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.project-content h3 { margin: 8px 0; font-size: clamp(1.6rem, 3vw, 2.35rem); line-height: 1.1; }
.project-content p { margin: 0; max-width: 650px; color: rgba(255,255,255,.8); }

.process { background: var(--paper); }
.process-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: process; }
.process-step { padding: 28px; background: var(--white); border: 1px solid rgba(10,49,92,.08); border-radius: var(--radius); box-shadow: 0 8px 22px rgba(6,30,57,.04); }
.process-step > span { display: inline-flex; color: var(--gold); font-weight: 900; font-size: .8rem; letter-spacing: .08em; }
.process-step h3 { margin: 28px 0 8px; color: var(--navy-deep); }
.process-step p { margin: 0; color: var(--muted); font-size: .94rem; }

.cta-band { position: relative; overflow: hidden; padding: 72px 0; background: var(--navy-deep); color: var(--white); }
.cta-band::before { content: ""; position: absolute; width: 460px; height: 460px; right: -160px; top: -260px; border: 80px solid rgba(217,165,68,.08); border-radius: 50%; }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { color: var(--white); max-width: 760px; }

.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(44px, 7vw, 88px); align-items: start; }
.contact-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.03rem; }
.contact-list { margin-top: 34px; display: grid; gap: 14px; }
.contact-list > * { display: flex; align-items: center; gap: 15px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; transition: border-color .2s ease, transform .2s ease; }
.contact-list a:hover { transform: translateX(4px); border-color: rgba(10,49,92,.35); }
.contact-icon { flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center; color: var(--navy); background: #edf3f8; border-radius: 12px; }
.contact-icon svg { width: 21px; height: 21px; }
.contact-list strong, .contact-list small { display: block; }
.contact-list strong { color: var(--navy-deep); }
.contact-list small { color: var(--muted); margin-top: 2px; }
.quote-form { padding: 34px; background: #f9fbfc; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.quote-form label { display: block; margin-bottom: 17px; color: var(--navy-deep); font-size: .86rem; font-weight: 800; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; margin-top: 7px; border: 1px solid #cdd6df; border-radius: 10px; background: var(--white); color: var(--ink); padding: 13px 14px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.quote-form textarea { resize: vertical; min-height: 150px; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--navy-soft); box-shadow: 0 0 0 4px rgba(23,75,125,.1); }
.hidden-field { position: absolute; left: -9999px; }
.form-note { margin: 12px 0 0; color: var(--muted); text-align: center; font-size: .78rem; }

.site-footer { padding: 62px 0 24px; background: #061c35; color: rgba(255,255,255,.75); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .6fr 1fr; gap: 70px; }
.footer-brand img { width: 250px; height: auto; opacity: 1; }
.footer-grid p { max-width: 430px; }
.footer-grid h3 { margin: 0 0 14px; color: var(--white); font-size: 1rem; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 8px; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }
.footer-bottom a { color: var(--gold-light); }
.mobile-call { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .site-header { height: 76px; }
  .brand img { height: 46px; width: auto; }
  .menu-toggle { display: block; position: relative; z-index: 1002; }
  .primary-nav { position: fixed; left: 20px; right: 20px; top: 86px; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 16px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); opacity: 0; transform: translateY(-12px); pointer-events: none; transition: .22s ease; }
  .primary-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .primary-nav > a:not(.nav-cta) { padding: 13px 12px; }
  .primary-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 8px; justify-content: center; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero { min-height: 680px; background-position: 60% center; }
  .hero-copy { width: min(720px, 78%); }
  .services { padding-top: 112px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 700px; }
  .about-copy { max-width: 760px; }
  .split-heading { grid-template-columns: 1fr; gap: 18px; }
  .project-grid-real .project-card, .project-grid-real .project-card-featured, .project-grid-real .project-card-featured + .project-card { grid-column: span 6; min-height: 460px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1.3fr .7fr 1fr; gap: 38px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  html { scroll-padding-top: 76px; }
  .brand img { height: 40px; width: auto; }
  .hero { min-height: 650px; padding: 68px 0 82px; background-position: 64% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(5,27,52,.97) 0%, rgba(7,36,68,.83) 72%, rgba(7,36,68,.42) 100%); }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(2.85rem, 14vw, 4rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .services { padding-top: 84px; }
  .section { padding: 84px 0; }
  .section-heading { text-align: left; }
  .section-heading h2, .about-copy h2, .contact-copy h2, .cta-inner h2 { font-size: 2.35rem; }
  .service-grid, .project-grid, .process-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .project-grid-real { grid-template-columns: 1fr; }
  .project-grid-real .project-card, .project-grid-real .project-card-featured, .project-grid-real .project-card-featured + .project-card { grid-column: auto; min-height: 420px; }
  .service-card { padding: 24px; }
  .experience-badge { right: 12px; bottom: -30px; width: 170px; }
  .about-copy { padding-top: 35px; }
  .project-card, .project-card-large { grid-column: auto; min-height: 400px; }
  .project-content { padding: 26px; }
  .quote-form { padding: 24px 18px; }
  .cta-band { padding: 62px 0; }
  .footer-grid { gap: 34px; }
  .footer-bottom { flex-direction: column; gap: 8px; margin-top: 34px; }
  .mobile-call { position: fixed; right: 16px; bottom: 16px; z-index: 999; display: inline-flex; align-items: center; gap: 8px; padding: 12px 15px; background: var(--gold); color: #142334; font-weight: 900; border-radius: 999px; box-shadow: 0 12px 28px rgba(6,30,57,.25); }
  .mobile-call svg { width: 18px; height: 18px; }
}

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