*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root { --navy: #0d161c; --blue: #234c60; --mid: #2d738e; --accent: #53a2be; --light: #f4f7f9; --white: #ffffff; --text: #0d161c; --muted: #5a7080; --border: #dce6ec; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
    h1, h2, h3, h4 { text-wrap: balance; }
    p { text-wrap: pretty; }
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 3rem; height: 72px; background: rgba(13,22,28,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.06); }
    .nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
    .nav-logo-text { font-family: 'Nunito', sans-serif; font-size: 1.15rem; font-weight: 800; color: white; }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.82rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s; }
    .nav-links a:hover { color: white; }
    .nav-contact { color: white !important; background: var(--accent); padding: 0.5rem 1.25rem; border-radius: 3px; }
    .nav-contact:hover { background: var(--mid) !important; color: white !important; }
    .page-header { padding: 10rem 3rem 5rem; background: linear-gradient(to bottom, rgba(13,22,28,0.9), rgba(13,22,28,0.8)), url('images/services/fabrication-1.jpg') center/cover no-repeat; }
    .page-header-inner { max-width: 1100px; margin: 0 auto; }
    .eyebrow { display: block; font-size: 0.73rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
    .page-header h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; color: white; line-height: 1.1; letter-spacing: -1px; }
    .projects { padding: 6rem 3rem; background: white; }
    .projects-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    .project-card { border-radius: 3px; overflow: hidden; position: relative; display: block; text-decoration: none; cursor: pointer; }
    .project-card.no-link { cursor: default; pointer-events: none; }
    .project-card.no-link .p-view { display: none; }
    .project-card.no-link:hover .project-thumb { transform: none; filter: grayscale(100%); }
    .project-card.no-link:hover .project-overlay { background: linear-gradient(to top, rgba(13,22,28,0.92) 0%, rgba(13,22,28,0.15) 55%, transparent 100%); }
    .project-thumb { height: 300px; position: relative; filter: grayscale(100%); transition: transform 0.4s, filter 0.4s; }
    .project-card:hover .project-thumb { transform: scale(1.03); filter: grayscale(0%); }
    .project-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,22,28,0.92) 0%, rgba(13,22,28,0.15) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; transition: background 0.3s; }
    .project-card:hover .project-overlay { background: linear-gradient(to top, rgba(13,22,28,0.97) 0%, rgba(13,22,28,0.4) 100%); }
    .p-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.35rem; }
    .p-name { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 0.4rem; }
    .p-desc { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.5; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .project-card:hover .p-desc { max-height: 80px; }
    .p-view { font-size: 0.72rem; font-weight: 700; color: var(--accent); letter-spacing: 0.5px; margin-top: 0.75rem; opacity: 0; transition: opacity 0.3s; }
    .project-card:hover .p-view { opacity: 1; }
    .p-testimonial { background: #080f14; padding: 0.85rem 1.25rem 0.85rem 1.5rem; border-left: 3px solid var(--accent); }
    .p-testimonial.no-content { display: none; }
    .p-quote { font-size: 0.8rem; font-style: italic; color: rgba(255,255,255,0.8); line-height: 1.55; margin-bottom: 0.3rem; }
    .p-cite { font-size: 0.7rem; font-weight: 600; color: var(--accent); letter-spacing: 0.3px; }
    .band { padding: 7rem 3rem; background: linear-gradient(to right, rgba(13,22,28,0.92), rgba(13,22,28,0.85)), url('images/services/fabrication-1.jpg') center/cover no-repeat; }
    .band-content { max-width: 1100px; margin: 0 auto; }
    .band h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; color: white; line-height: 1.1; letter-spacing: -1px; margin-bottom: 1.25rem; }
    .band p { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 2.5rem; max-width: 520px; }
    .btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.95rem 2.25rem; border-radius: 3px; font-weight: 600; font-size: 0.9rem; text-decoration: none; letter-spacing: 0.5px; transition: all 0.2s; }
    .btn-primary { background: var(--accent); color: white; }
    .btn-primary:hover { background: var(--mid); transform: translateY(-2px); }
    footer { background: #080f14; padding: 1.75rem 3rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.05); }
    footer p { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
    footer a { color: var(--accent); text-decoration: none; }
    footer p a { text-decoration: underline; }
    .footer-links { display: flex; gap: 2rem; }
    .footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-decoration: none; letter-spacing: 0.5px; transition: color 0.2s; }
    .footer-links a:hover { color: white; }
    .footer-social { display: flex; gap: 1rem; align-items: center; }
    .footer-social a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 4px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); transition: background 0.2s, color 0.2s; text-decoration: none; }
    .footer-social a:hover { background: var(--accent); color: white; }
    .footer-social svg { width: 16px; height: 16px; fill: currentColor; }
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    .nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 200; }
    .nav-hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .mobile-nav { display: none; position: fixed; inset: 0; z-index: 150; background: rgba(13,22,28,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; }
    .mobile-nav.open { display: flex; }
    .mobile-nav a { color: white; text-decoration: none; font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; transition: color 0.2s; }
    .mobile-nav a:hover { color: var(--accent); }
    .mobile-nav .mobile-contact { color: white; background: var(--accent); padding: 0.75rem 2.5rem; border-radius: 3px; }
    @media (max-width: 960px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } nav { padding: 0 1.5rem; } }
    @media (max-width: 768px) { .nav-links { display: none; } .nav-hamburger { display: flex; } .projects-grid { grid-template-columns: 1fr; } .projects { padding: 4rem 1.25rem; } .band { padding: 4rem 1.25rem; } footer { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem 1.25rem; } .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; } nav { padding: 0 1.25rem; } }

/* extracted inline styles */
.gen-c5df5467 { position: absolute !important; left: -9999px !important; top: 0 !important; z-index: 9999 !important; padding: 0.5rem 1rem !important; background: #53a2be !important; color: white !important; font-weight: 600 !important; border-radius: 0 0 4px 0 !important; text-decoration: none !important; } .skip-link:focus { left: 0 !important; }
.gen-f38a951c { flex-shrink: 0 !important; }
.gen-640610f0 { font-size: 0.55em !important; font-weight: 700 !important; margin-left: 2px !important; vertical-align: super !important; }
.gen-ab6c59c6 { background: url('images/projects/hanmer/hanmer-photo-1.jpg') center/cover no-repeat !important; }
.gen-ff090e67 { background: url('images/projects/bromley/bromley-photo-1.jpg') center/cover no-repeat !important; }
.gen-32fd37a0 { background: url('images/projects/pamu/pamu-photo-1.jpg') center/cover no-repeat !important; }
.gen-b94ca7e7 { background: url('images/projects/titan/titan-photo-1.jpg') center/cover no-repeat !important; }
.gen-b80f5a95 { background: url('images/projects/bioreactor/bioreactor-photo-1.jpg') center/cover no-repeat !important; }
.gen-e2c82399 { background: rgba(13,22,28,0.6) !important; }
