:root {
  --ink: #071e32;
  --ink-2: #0b2a43;
  --blue: #075f91;
  --blue-bright: #0f82ba;
  --cyan: #72c7dc;
  --paper: #f4f6f5;
  --white: #ffffff;
  --muted: #6d7a83;
  --line: rgba(7, 30, 50, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
  --header-h: 86px;
  --container: min(1320px, calc(100vw - 80px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.icon { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 150px 0; }
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999;
  background: var(--white); color: var(--ink); padding: 12px 18px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--header-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 40px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.2);
  transition: background .35s ease, color .35s ease, height .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  height: 72px; color: var(--ink); background: rgba(244,246,245,.94);
  backdrop-filter: blur(16px); box-shadow: 0 10px 40px rgba(7,30,50,.08);
  border-color: rgba(7,30,50,.1);
}
.brand { display: inline-flex; align-items: center; width: 205px; }
.brand img { width: 100%; height: auto; filter: brightness(0) invert(1); transition: filter .35s ease; }
.site-header.is-scrolled .brand img { filter: none; }
.desktop-nav { display: flex; align-items: center; gap: 36px; }
.desktop-nav a { position: relative; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: currentColor; transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-cta { justify-self: end; display: inline-flex; align-items: center; gap: 16px; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.header-cta span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%; transition: transform .25s ease, background .25s ease, color .25s ease; }
.header-cta:hover span { transform: rotate(45deg); background: var(--white); color: var(--ink); }
.site-header.is-scrolled .header-cta:hover span { background: var(--ink); color: var(--white); }
.menu-toggle { display: none; justify-self: end; width: 46px; height: 46px; border: 0; background: transparent; padding: 12px; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 1px; margin: 6px 0; background: currentColor; transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 900; display: grid; align-content: center;
  background: var(--ink); color: var(--white); padding: 120px 40px 40px;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { display: flex; align-items: baseline; gap: 18px; font-family: var(--font-display); font-size: clamp(44px, 10vw, 78px); line-height: 1.08; text-transform: uppercase; border-bottom: 1px solid var(--line-light); }
.mobile-menu nav span { font-family: var(--font-body); font-size: 10px; color: var(--cyan); letter-spacing: .15em; }
.mobile-menu-contact { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px 30px; font-size: 13px; }

.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; background: var(--ink); color: var(--white); }
.hero-media, .hero-overlay, .hero-gridlines { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.04); animation: heroIn 1.6s cubic-bezier(.2,.7,.2,1) forwards; }
@keyframes heroIn { to { transform: scale(1); } }
.hero-overlay { background: linear-gradient(90deg, rgba(3,18,31,.94) 0%, rgba(3,18,31,.67) 48%, rgba(3,18,31,.15) 100%), linear-gradient(0deg, rgba(3,18,31,.65), transparent 55%); }
.hero-gridlines { width: var(--container); margin: auto; border-left: 1px solid rgba(255,255,255,.1); border-right: 1px solid rgba(255,255,255,.1); }
.hero-gridlines::before, .hero-gridlines::after { content: ""; position: absolute; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,.08); }
.hero-gridlines::before { left: 33.333%; } .hero-gridlines::after { left: 66.666%; }
.hero-content { position: relative; z-index: 2; padding-top: 160px; padding-bottom: 80px; }
.eyebrow { margin: 0 0 26px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow.light { color: var(--cyan); }
.hero h1, .display { margin: 0; font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: .015em; line-height: .92; }
.hero h1 { max-width: 1000px; font-size: clamp(78px, 9.7vw, 160px); }
.display { font-size: clamp(64px, 7vw, 112px); }
.hero-bottom { display: grid; grid-template-columns: minmax(260px, 540px) auto; justify-content: space-between; align-items: end; gap: 50px; margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.25); }
.hero-bottom > p { max-width: 540px; margin: 0; color: rgba(255,255,255,.78); font-size: 16px; }
.hero-actions { display: flex; align-items: center; gap: 32px; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 28px; min-height: 58px; padding: 0 28px; border: 1px solid transparent; border-radius: 0; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: transform .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--cyan); color: var(--ink); }
.button-primary:hover { background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 18px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px,-3px); }
.text-link.light { color: var(--white); }
.hero-index { position: absolute; z-index: 2; right: 40px; bottom: 34px; writing-mode: vertical-rl; font-size: 9px; letter-spacing: .16em; color: rgba(255,255,255,.6); }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 25% 1fr; gap: 30px; }
.section-marker { padding-top: 10px; }
.marker-line { display: block; width: 1px; height: 150px; margin: 32px 0 0 14px; background: var(--line); }
.intro-copy { max-width: 1040px; }
.intro-detail { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; margin-top: 50px; padding-top: 35px; border-top: 1px solid var(--line); }
.intro-detail p { margin: 0; color: #46545e; font-size: 18px; }
.intro-detail strong { align-self: start; font-size: 18px; line-height: 1.5; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 120px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { min-height: 210px; padding: 34px 30px 26px; border-right: 1px solid var(--line); }
.stat:first-child { border-left: 1px solid var(--line); }
.stat-value { display: block; font-family: var(--font-display); color: var(--blue); font-size: 76px; line-height: 1; }
.stat p { max-width: 190px; margin: 30px 0 0; color: var(--muted); font-size: 12px; font-weight: 600; line-height: 1.5; }

.section-dark { background: var(--ink); color: var(--white); }
.section-heading { display: grid; grid-template-columns: 1fr minmax(280px, 410px); align-items: end; gap: 60px; margin-bottom: 80px; }
.section-heading.light { color: var(--white); }
.section-note { margin: 0 0 6px; color: var(--muted); font-size: 15px; }
.section-heading.light .section-note { color: rgba(255,255,255,.62); }
.strength-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.strength-card { position: relative; min-height: 390px; padding: 34px 30px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); transition: background .3s ease, color .3s ease; }
.strength-card > span { color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.strength-card h3 { margin: 125px 0 18px; font-family: var(--font-display); font-size: 36px; font-weight: 400; letter-spacing: .02em; text-transform: uppercase; }
.strength-card p { margin: 0; color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.7; }
.strength-card i { position: absolute; top: 26px; right: 26px; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line-light); border-radius: 50%; font-style: normal; opacity: 0; transform: rotate(-45deg); transition: opacity .25s ease, transform .25s ease; }
.strength-card:hover { background: var(--blue); }
.strength-card:hover i { opacity: 1; transform: rotate(0); }

.services { background: var(--white); }
.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 70px minmax(240px, 1fr) 1.2fr 42px; gap: 30px; align-items: center; min-height: 120px; padding: 24px 0; border-bottom: 1px solid var(--line); transition: padding .25s ease, background .25s ease; }
.service-row:hover { padding-inline: 22px; background: var(--paper); }
.service-number { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.service-row h3 { margin: 0; font-family: var(--font-display); font-size: 32px; font-weight: 400; letter-spacing: .02em; text-transform: uppercase; }
.service-row p { margin: 0; color: var(--muted); font-size: 13px; }
.service-arrow { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; transition: transform .25s ease, color .25s ease, background .25s ease; }
.service-row:hover .service-arrow { transform: rotate(45deg); color: var(--white); background: var(--blue); }

.projects { padding-bottom: 0; background: var(--ink-2); color: var(--white); }
.project-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 2px; }
.project-card { position: relative; display: block; min-height: 520px; padding: 0; overflow: hidden; border: 0; background: var(--ink); text-align: left; cursor: pointer; }
.project-card:nth-child(6n+1), .project-card:nth-child(6n+4) { grid-column: span 7; }
.project-card:nth-child(6n+2), .project-card:nth-child(6n+3) { grid-column: span 5; }
.project-card:nth-child(6n+5), .project-card:nth-child(6n+6) { grid-column: span 6; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.project-card:hover img { transform: scale(1.05); filter: saturate(1.08); }
.project-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,18,31,.85), transparent 55%); }
.project-meta { position: absolute; left: 34px; right: 90px; bottom: 34px; display: grid; gap: 8px; }
.project-meta small { color: var(--cyan); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.project-meta strong { font-family: var(--font-display); font-size: 38px; font-weight: 400; line-height: 1; letter-spacing: .02em; text-transform: uppercase; }
.project-open { position: absolute; right: 30px; bottom: 30px; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; transition: transform .3s ease, background .3s ease, color .3s ease; }
.project-card:hover .project-open { transform: rotate(45deg); background: var(--white); color: var(--ink); }

.process { background: var(--paper); }
.process-layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: 130px; }
.process-intro { position: sticky; top: 120px; align-self: start; }
.process-intro > p:not(.eyebrow) { max-width: 530px; margin: 35px 0; color: var(--muted); }
.process-list { border-top: 1px solid var(--line); }
.process-step { display: grid; grid-template-columns: 80px 1fr; gap: 30px; padding: 38px 0 46px; border-bottom: 1px solid var(--line); }
.process-step > span { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.process-step h3 { margin: 0 0 12px; font-family: var(--font-display); font-size: 48px; font-weight: 400; text-transform: uppercase; }
.process-step p { max-width: 520px; margin: 0; color: var(--muted); font-size: 14px; }

.experience { padding: 120px 0 95px; overflow: hidden; background: var(--blue); color: var(--white); }
.experience-title h2 { max-width: 900px; margin: 0 0 70px; font-family: var(--font-display); font-size: clamp(66px,8vw,124px); font-weight: 400; line-height: .94; text-transform: uppercase; }
.marquee { overflow: hidden; border-top: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.25); }
.marquee-track { display: flex; width: max-content; animation: marquee 45s linear infinite; }
.marquee-track span { display: flex; align-items: center; gap: 35px; padding: 25px 30px; font-family: var(--font-display); font-size: 31px; letter-spacing: .03em; text-transform: uppercase; white-space: nowrap; }
.marquee-track i { display: grid; place-items: center; color: var(--cyan); font-family: var(--font-body); font-size: 15px; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.contact { background: var(--ink); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 120px; }
.contact-copy { align-self: start; }
.contact-copy > p:not(.eyebrow) { max-width: 560px; margin: 35px 0; color: rgba(255,255,255,.62); }
.contact-direct { display: grid; margin-top: 50px; border-top: 1px solid var(--line-light); }
.contact-direct a { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line-light); font-size: 13px; }
.lead-form { padding: 46px; background: var(--white); color: var(--ink); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.lead-form label { display: grid; gap: 8px; margin-bottom: 24px; }
.lead-form label span { color: #344650; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.lead-form input, .lead-form textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; color: var(--ink); padding: 10px 0 13px; outline: 0; transition: border-color .2s ease; }
.lead-form input:focus, .lead-form textarea:focus { border-color: var(--blue); }
.lead-form textarea { resize: vertical; }
.lead-form .button { width: 100%; margin-top: 10px; border: 0; background: var(--blue); color: var(--white); }
.lead-form .button:hover { background: var(--ink); }
.form-note { margin: 18px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
.form-success { margin: 0 0 28px; padding: 16px 18px; border-left: 3px solid #1f9d72; background: #e9f7f1; color: #176d51; font-size: 13px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.site-footer { padding: 90px 0 28px; background: #041522; color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 100px; align-items: start; padding-bottom: 70px; }
.footer-brand { width: 300px; }
.footer-brand img { width: 100%; filter: brightness(0) invert(1); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-links div { display: grid; align-content: start; gap: 8px; }
.footer-links span { margin-bottom: 14px; color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.7); font-size: 13px; }
.footer-links a:hover { color: var(--white); }
.footer-main address { color: rgba(255,255,255,.6); font-size: 13px; font-style: normal; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; padding-top: 26px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.45); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-bottom a { justify-self: end; }
.floating-wa { position: fixed; z-index: 700; right: 26px; bottom: 26px; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: var(--white); box-shadow: 0 10px 35px rgba(0,0,0,.23); opacity: 0; pointer-events: none; transform: translateY(16px) scale(.9); transition: transform .25s ease, opacity .25s ease; }
.floating-wa.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.floating-wa.is-visible:hover { transform: translateY(-4px) scale(1.03); }
.floating-wa svg { width: 27px; fill: currentColor; }

.project-dialog { width: min(1180px, calc(100vw - 40px)); max-width: none; padding: 0; border: 0; background: var(--ink); color: var(--white); overflow: visible; }
.project-dialog::backdrop { background: rgba(1,10,18,.9); backdrop-filter: blur(8px); }
.project-dialog img { width: 100%; max-height: 76vh; object-fit: contain; background: #020b11; }
.project-dialog > div { display: flex; justify-content: space-between; align-items: end; gap: 30px; padding: 24px 30px 28px; }
.project-dialog span { color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.project-dialog h3 { margin: 0; font-family: var(--font-display); font-size: 42px; font-weight: 400; text-transform: uppercase; }
.dialog-close { position: absolute; z-index: 2; right: -17px; top: -17px; display: grid; place-items: center; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--white); color: var(--ink); font-size: 20px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal[data-reveal-delay="1"] { transition-delay: .1s; }
.reveal[data-reveal-delay="2"] { transition-delay: .2s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  :root { --container: min(100% - 48px, 980px); }
  .site-header { padding-inline: 24px; }
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-actions { justify-content: flex-start; }
  .section { padding: 110px 0; }
  .intro-grid { grid-template-columns: 1fr; }
  .section-marker { display: flex; align-items: center; gap: 20px; }
  .marker-line { width: 100px; height: 1px; margin: 0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(3) { border-left: 1px solid var(--line); }
  .strength-grid { grid-template-columns: repeat(2,1fr); }
  .process-layout, .contact-grid { gap: 70px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main address { grid-column: 2; }
}

@media (max-width: 760px) {
  :root { --header-h: 72px; --container: calc(100% - 36px); }
  body { font-size: 15px; }
  .site-header { height: 72px; padding-inline: 18px; }
  .brand { width: 164px; }
  .mobile-menu { padding-inline: 24px; }
  .hero-content { padding-top: 140px; padding-bottom: 58px; }
  .hero h1 { font-size: clamp(48px, 13.2vw, 62px); line-height: .98; }
  .hero-bottom { margin-top: 34px; gap: 30px; }
  .hero-bottom > p { font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 20px; }
  .hero-actions .text-link { justify-content: center; }
  .hero-index { display: none; }
  .section { padding: 85px 0; }
  .display { font-size: clamp(58px, 17vw, 84px); }
  .intro-detail { grid-template-columns: 1fr; gap: 30px; margin-top: 35px; }
  .intro-detail p, .intro-detail strong { font-size: 15px; }
  .stats-grid { margin-top: 70px; }
  .stat { min-height: 170px; padding: 24px 18px; }
  .stat-value { font-size: 58px; }
  .stat p { margin-top: 20px; font-size: 10px; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; margin-bottom: 55px; }
  .strength-grid { grid-template-columns: 1fr; }
  .strength-card { min-height: 300px; }
  .strength-card h3 { margin-top: 85px; }
  .service-row { grid-template-columns: 42px 1fr 34px; gap: 12px; min-height: 100px; }
  .service-row p { display: none; }
  .service-row h3 { font-size: 27px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card:nth-child(n) { grid-column: auto; min-height: 420px; }
  .project-meta { left: 22px; right: 72px; bottom: 24px; }
  .project-meta strong { font-size: 30px; }
  .project-open { right: 20px; bottom: 20px; width: 42px; height: 42px; }
  .process-layout, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .process-intro { position: static; }
  .process-step { grid-template-columns: 44px 1fr; }
  .process-step h3 { font-size: 40px; }
  .experience { padding: 80px 0 70px; }
  .experience-title h2 { margin-bottom: 45px; }
  .lead-form { padding: 28px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-main { grid-template-columns: 1fr; gap: 50px; }
  .footer-main address { grid-column: auto; }
  .footer-brand { width: 250px; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom a { justify-self: start; }
  .floating-wa { right: 18px; bottom: 18px; width: 52px; height: 52px; }
  .project-dialog > div { display: grid; }
  .project-dialog h3 { font-size: 34px; }
}

@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; }
}

/* Multi-page website */
.desktop-nav a.is-active::after { right: 0; }
.page-hero { position: relative; min-height: 82svh; display: grid; align-items: end; overflow: hidden; background: var(--ink); color: var(--white); }
.page-hero-bg, .page-hero-overlay { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: heroIn 1.5s cubic-bezier(.2,.7,.2,1) both; }
.page-hero-about .page-hero-bg img { object-position: center 58%; }
.page-hero-services .page-hero-bg img { object-position: center; }
.page-hero-process .page-hero-bg img { object-position: center 62%; }
.page-hero-overlay { background: linear-gradient(90deg,rgba(3,18,31,.94),rgba(3,18,31,.55) 55%,rgba(3,18,31,.18)),linear-gradient(0deg,rgba(3,18,31,.72),transparent 55%); }
.page-hero-content { position: relative; z-index: 1; padding: 190px 0 75px; }
.page-hero-content h1, .listing-hero h1, .contact-page-hero h1, .not-found h1 { max-width: 1060px; margin: 0; font-family: var(--font-display); font-size: clamp(82px,9.5vw,154px); font-weight: 400; line-height: .9; letter-spacing: .015em; text-transform: uppercase; }
.page-hero-content > p:last-child { max-width: 620px; margin: 42px 0 0; color: rgba(255,255,255,.72); font-size: 16px; }
.editorial-grid { display: grid; grid-template-columns: 25% 1fr; gap: 40px; }
.editorial-index { display: block; margin-top: 110px; color: rgba(7,30,50,.12); font-family: var(--font-display); font-size: 100px; line-height: 1; }
.editorial-copy { display: grid; grid-template-columns: 1.35fr 1fr; gap: 70px; margin-top: 50px; padding-top: 35px; border-top: 1px solid var(--line); }
.editorial-copy p { margin: 0; color: #46545e; font-size: 18px; }
.editorial-copy strong { font-size: 18px; line-height: 1.55; }
.vision-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; }
.vision-card { min-height: 460px; padding: 46px; background: var(--blue); }
.vision-card > span, .mission-list span, .deliverable-grid span, .timeline-item > span { color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.vision-card h3 { max-width: 500px; margin: 125px 0 25px; font-family: var(--font-display); font-size: 46px; font-weight: 400; line-height: 1; text-transform: uppercase; }
.vision-card p { color: rgba(255,255,255,.65); font-size: 13px; }
.mission-list { border-top: 1px solid var(--line-light); }
.mission-list article { display: grid; grid-template-columns: 70px 1fr; gap: 25px; padding: 36px 0; border-bottom: 1px solid var(--line-light); }
.mission-list p { margin: 0; color: rgba(255,255,255,.75); }
.about-strength-grid, .deliverable-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.about-strength-grid article, .deliverable-grid article { min-height: 310px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-strength-grid span { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.about-strength-grid h3, .deliverable-grid h3 { margin: 100px 0 16px; font-family: var(--font-display); font-size: 34px; font-weight: 400; text-transform: uppercase; }
.about-strength-grid p, .deliverable-grid p { margin: 0; color: var(--muted); font-size: 12px; }
.page-cta { padding: 130px 0; overflow: hidden; background: var(--blue); color: var(--white); }
.page-cta h2 { margin: 0 0 45px; font-family: var(--font-display); font-size: clamp(72px,8.5vw,132px); font-weight: 400; line-height: .9; text-transform: uppercase; }
.service-detail-section { background: var(--white); }
.service-detail-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-detail-card { position: relative; min-height: 285px; padding: 34px 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s,color .25s; }
.service-detail-card > span { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.service-detail-card h3 { margin: 80px 0 14px; font-family: var(--font-display); font-size: 38px; font-weight: 400; text-transform: uppercase; }
.service-detail-card p { max-width: 540px; margin: 0; color: var(--muted); font-size: 13px; }
.service-detail-card i { position: absolute; top: 30px; right: 30px; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; font-style: normal; }
.service-detail-card:hover { background: var(--blue); color: var(--white); }
.service-detail-card:hover > span,.service-detail-card:hover p { color: rgba(255,255,255,.7); }
.deliverable-grid { border-color: var(--line-light); }
.deliverable-grid article { border-color: var(--line-light); }
.deliverable-grid p { color: rgba(255,255,255,.6); }
.listing-hero { padding: 220px 0 90px; background: var(--ink); color: var(--white); }
.listing-hero h1 { max-width: 1100px; }
.listing-hero-bottom { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-top: 60px; padding-top: 30px; border-top: 1px solid var(--line-light); }
.listing-hero-bottom p { max-width: 560px; margin: 0; color: rgba(255,255,255,.65); }
.listing-hero-bottom span { color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.project-listing { background: var(--ink-2); }
.portfolio-page-grid .project-card:first-child { min-height: 650px; }
.timeline-list { border-top: 1px solid var(--line); }
.timeline-item { display: grid; grid-template-columns: 90px minmax(240px,.7fr) 1fr; gap: 35px; align-items: start; padding: 42px 0 55px; border-bottom: 1px solid var(--line); }
.timeline-item h3 { margin: 0; font-family: var(--font-display); font-size: 50px; font-weight: 400; text-transform: uppercase; }
.timeline-item p { max-width: 620px; margin: 7px 0 0; color: var(--muted); }
.quality-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 110px; }
.quality-copy { padding-top: 60px; }
.quality-copy p { margin: 0 0 26px; color: rgba(255,255,255,.65); }
.quality-copy .text-link { margin-top: 24px; }
.contact-page-hero { padding: 220px 0 100px; background: var(--ink); color: var(--white); }
.contact-page-hero h1 { max-width: 1200px; }
.contact-page-hero > .container > p:last-child { max-width: 650px; margin: 40px 0 0; color: rgba(255,255,255,.65); }
.contact-page-body { background: var(--paper); }
.contact-page-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; align-items: start; }
.contact-information { display: grid; position: sticky; top: 120px; }
.contact-information > div { display: grid; gap: 10px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.contact-information > div:first-child { border-top: 1px solid var(--line); }
.contact-information span { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-information a { display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 15px; }
.contact-information address { color: var(--muted); font-size: 14px; font-style: normal; }
.page-lead-form { box-shadow: 0 30px 80px rgba(7,30,50,.08); }
.project-detail-hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; background: var(--ink); color: var(--white); }
.project-detail-image,.project-detail-overlay { position: absolute; inset: 0; }
.project-detail-image img { width: 100%; height: 100%; object-fit: cover; animation: heroIn 1.5s cubic-bezier(.2,.7,.2,1) both; }
.project-detail-overlay { background: linear-gradient(0deg,rgba(3,18,31,.9),transparent 68%),linear-gradient(90deg,rgba(3,18,31,.5),transparent 60%); }
.project-detail-heading { position: relative; z-index: 1; padding: 180px 0 70px; }
.project-detail-heading h1 { max-width: 1180px; margin: 0; font-family: var(--font-display); font-size: clamp(82px,10vw,160px); font-weight: 400; line-height: .9; text-transform: uppercase; }
.project-detail-heading > p:last-child { max-width: 680px; margin: 35px 0 0; color: rgba(255,255,255,.75); }
.project-facts { background: var(--white); }
.project-facts-grid { display: grid; grid-template-columns: repeat(6,1fr); border-left: 1px solid var(--line); }
.project-facts-grid > div { min-height: 145px; padding: 28px 22px; border-right: 1px solid var(--line); }
.project-facts-grid span { display: block; margin-bottom: 28px; color: var(--blue); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.project-facts-grid strong { font-size: 11px; line-height: 1.5; }
.case-story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 130px; }
.case-copy { border-top: 1px solid var(--line); }
.case-copy article { padding: 36px 0 46px; border-bottom: 1px solid var(--line); }
.case-copy span { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.case-copy p { margin: 20px 0 0; color: #46545e; font-size: 17px; }
.project-gallery-section { padding: 120px 0 2px; background: var(--ink); color: var(--white); }
.gallery-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; margin-bottom: 70px; }
.gallery-heading .eyebrow { grid-column: 1/-1; margin-bottom: 0; }
.gallery-heading h2 { max-width: 900px; margin: 0; font-family: var(--font-display); font-size: clamp(60px,7vw,104px); font-weight: 400; line-height: .95; text-transform: uppercase; }
.gallery-heading > span { color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.case-gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; }
.case-gallery-item { position: relative; min-height: 640px; padding: 0; overflow: hidden; border: 0; background: var(--ink-2); color: var(--white); cursor: zoom-in; }
.case-gallery-item:first-child:last-child, .case-gallery-item:nth-child(3n+1) { grid-column: 1/-1; }
.case-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.case-gallery-item:hover img { transform: scale(1.03); }
.case-gallery-item > span { position: absolute; right: 28px; bottom: 24px; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(3,18,31,.78); font-size: 9px; }
.next-project { background: var(--blue); color: var(--white); }
.next-project > a { width: var(--container); min-height: 360px; margin: auto; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.next-project h2 { margin: 0; font-family: var(--font-display); font-size: clamp(62px,7vw,110px); font-weight: 400; line-height: .95; text-transform: uppercase; }
.next-project > a > span { display: grid; place-items: center; width: 90px; height: 90px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: 28px; transition: transform .3s,background .3s,color .3s; }
.next-project a:hover > span { transform: rotate(45deg); background: var(--white); color: var(--blue); }
.not-found { min-height: 78svh; display: grid; align-items: center; padding: 180px 0 100px; background: var(--ink); color: var(--white); }
.not-found .button { margin-top: 45px; }

@media (max-width: 1080px) {
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-index { display: none; }
  .vision-grid,.quality-grid,.case-story-grid { gap: 65px; }
  .about-strength-grid,.deliverable-grid { grid-template-columns: repeat(2,1fr); }
  .project-facts-grid { grid-template-columns: repeat(3,1fr); }
  .contact-page-grid { gap: 55px; }
}

@media (max-width: 760px) {
  .page-hero { min-height: 76svh; }
  .page-hero-content { padding: 140px 0 52px; }
  .page-hero-content h1,.listing-hero h1,.contact-page-hero h1,.not-found h1 { font-size: clamp(58px,16vw,78px); line-height: .95; }
  .page-hero-content > p:last-child { margin-top: 28px; font-size: 14px; }
  .editorial-copy { grid-template-columns: 1fr; gap: 28px; }
  .editorial-copy p,.editorial-copy strong { font-size: 15px; }
  .vision-grid,.quality-grid,.case-story-grid { grid-template-columns: 1fr; gap: 45px; }
  .vision-card { min-height: 350px; padding: 28px; }
  .vision-card h3 { margin-top: 80px; font-size: 38px; }
  .about-strength-grid,.deliverable-grid,.service-detail-grid { grid-template-columns: 1fr; }
  .about-strength-grid article,.deliverable-grid article { min-height: 250px; }
  .about-strength-grid h3,.deliverable-grid h3 { margin-top: 65px; }
  .page-cta { padding: 85px 0; }
  .page-cta h2 { font-size: clamp(58px,16vw,80px); }
  .service-detail-card { min-height: 250px; padding: 28px 22px; }
  .service-detail-card h3 { margin-top: 65px; font-size: 32px; }
  .listing-hero { padding: 150px 0 60px; }
  .listing-hero-bottom { flex-direction: column; align-items: start; margin-top: 40px; }
  .timeline-item { grid-template-columns: 42px 1fr; gap: 15px; }
  .timeline-item p { grid-column: 2; }
  .timeline-item h3 { font-size: 40px; }
  .quality-copy { padding-top: 0; }
  .contact-page-hero { padding: 150px 0 70px; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-information { position: static; }
  .project-detail-heading { padding: 150px 0 48px; }
  .project-detail-heading h1 { font-size: clamp(58px,17vw,84px); }
  .project-detail-heading > p:last-child { font-size: 14px; }
  .project-facts-grid { grid-template-columns: repeat(2,1fr); }
  .project-facts-grid > div { min-height: 125px; padding: 22px 16px; }
  .project-facts-grid span { margin-bottom: 20px; }
  .case-copy p { font-size: 15px; }
  .project-gallery-section { padding-top: 80px; }
  .gallery-heading { grid-template-columns: 1fr; margin-bottom: 45px; }
  .case-gallery { grid-template-columns: 1fr; }
  .case-gallery-item,.case-gallery-item:nth-child(n) { grid-column: auto; min-height: 380px; }
  .next-project > a { min-height: 290px; }
  .next-project h2 { font-size: 56px; }
  .next-project > a > span { width: 58px; height: 58px; font-size: 20px; }
}
