*, *::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; }

    /* ── ORPHAN / WIDOW CONTROL ── */
    h1, h2, h3, h4 { text-wrap: balance; }
    p { text-wrap: pretty; }

    /* ── NAV ── */
    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; }

    /* ── HERO ── */
    .hero {
      height: 100vh; min-height: 620px;
      background:
        linear-gradient(to bottom, rgba(13,22,28,0.72) 0%, rgba(13,22,28,0.65) 55%, rgba(13,22,28,0.85) 100%),
        url('images/hero-bg.jpg') center/cover no-repeat;
      position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: flex-start;
    }

    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(83,162,190,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(83,162,190,0.03) 1px, transparent 1px);
      background-size: 80px 80px;
    }

    .hero::after {
      content: '';
      position: absolute; bottom: -1px; left: 0; right: 0; height: 100px;
      background: var(--white);
      clip-path: polygon(0 100%, 100% 100%, 100% 0);
    }

    .hero-content {
      position: relative; z-index: 2;
      max-width: 720px; padding: 0 3rem;
      text-align: left;
    }

    .hero-eyebrow {
      display: inline-block;
      font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem;
    }

    .hero h1 {
      font-size: clamp(1.4rem, 5.5vw, 4.2rem);
      font-weight: 800; color: white;
      line-height: 1.1; letter-spacing: -1px; margin-bottom: 1.75rem;
      overflow-wrap: break-word; word-break: break-word;
    }

    .hero p {
      font-size: 1.1rem; color: rgba(255,255,255,0.85);
      line-height: 1.75; max-width: 520px; margin: 0 0 2.5rem;
    }

    .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); box-shadow: 0 12px 32px rgba(83,162,190,0.3); }
    .btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; }

    /* ── STATS BAND ── */
    .stats-band { background: var(--mid); }

    .stats-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4, 1fr);
    }

    .stat-item {
      padding: 2.25rem 2rem; text-align: center;
      border-right: 1px solid rgba(255,255,255,0.15);
    }

    .stat-item:last-child { border-right: none; }
    .stat-num { font-size: 2.2rem; font-weight: 800; color: white; line-height: 1; }
    .stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.9); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 0.4rem; }

    /* ── ABOUT ── */
    .about { padding: 8rem 3rem; background: white; }

    .about-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center;
    }

    .eyebrow {
      display: block; font-size: 0.73rem; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--accent); margin-bottom: 1rem;
    }

    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 800; color: var(--navy);
      line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 1.5rem;
    }

    .about-text p {
      font-size: 1rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.2rem;
    }

    .text-link {
      display: inline-flex; align-items: center; gap: 0.4rem;
      color: var(--mid); font-weight: 600; font-size: 0.9rem;
      text-decoration: none; margin-top: 0.5rem;
      padding-bottom: 2px; border-bottom: 2px solid transparent; transition: border-color 0.2s;
    }

    .text-link:hover { border-color: var(--mid); }
    .text-link svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.5; }

    .about-visual {
      background: linear-gradient(145deg, var(--navy), var(--blue));
      border-radius: 3px; padding: 3rem; position: relative; overflow: hidden;
    }

    .about-visual::before {
      content: ''; position: absolute; top: -80px; right: -80px;
      width: 280px; height: 280px; border-radius: 50%;
      background: rgba(83,162,190,0.08);
    }

    .sectors-block { position: relative; z-index: 1; }
    .sectors-heading { font-size: 0.68rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; }
    .sector-row { display: flex; align-items: center; gap: 0.85rem; padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .sector-row:first-of-type { border-top: 1px solid rgba(255,255,255,0.08); }
    .sector-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
    .sector-row span { font-size: 0.9rem; color: white; font-weight: 500; }
    .sectors-footer { margin-top: 1.75rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }
    .s-badge { font-size: 0.73rem; font-weight: 600; color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.07); padding: 0.35rem 0.8rem; border-radius: 2px; }

    /* ── SERVICES ── */
    .services { padding: 8rem 3rem; background: var(--light); }

    .services-header {
      max-width: 1100px; margin: 0 auto 4rem;
    }

    .services-header .section-title {
      font-size: clamp(2rem, 3.5vw, 3rem);
      margin-bottom: 1rem;
    }

    .services-header p { max-width: 480px; color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

    .services-grid {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }

    .service-item {
      background: linear-gradient(145deg, #daeaf3 0%, #edf5f9 100%);
      padding: 2rem;
      border-radius: 3px;
      border: 1px solid rgba(83,162,190,0.22);
      cursor: default;
      position: relative; overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
      display: flex; flex-direction: column;
    }
    .service-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(13,22,28,0.10);
    }

    /* Always-visible photo cards */
    .service-item.has-photo {
      border-color: transparent;
      cursor: pointer;
      min-height: 220px; justify-content: flex-end;
    }
    .service-item.has-photo::before {
      content: '';
      position: absolute; inset: 0;
      background-image: var(--si-bg, none);
      background-size: cover; background-position: center;
      transition: transform 0.5s;
    }
    .service-item.has-photo:hover::before { transform: scale(1.06); }
    .service-item.has-photo::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(13,22,28,0.90) 40%, rgba(13,22,28,0.22) 100%);
    }
    .service-item.has-photo > * { position: relative; z-index: 1; }

    /* Photo card click hint */
    .service-item.has-photo .s-gallery-hint {
      font-size: 0.72rem; font-weight: 600; color: var(--accent);
      letter-spacing: 0.4px; margin-top: 0.4rem;
      opacity: 0; transition: opacity 0.25s;
    }
    .service-item.has-photo:hover .s-gallery-hint { opacity: 1; }

    .s-icon {
      width: 44px; height: 44px;
      background: rgba(83,162,190,0.1); border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem;
    }
    .s-icon svg { width: 22px; height: 22px; stroke: var(--mid); fill: none; stroke-width: 1.8; }
    .service-item.has-photo .s-icon { background: rgba(83,162,190,0.22); }
    .service-item.has-photo .s-icon svg { stroke: #8fcfe5; }

    .s-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
    .s-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }
    .service-item.has-photo .s-name { color: white; }
    .service-item.has-photo .s-desc { color: rgba(255,255,255,0.76); }

    /* CTA card */
    .service-item.s-cta {
      background: var(--mid); border-color: transparent; cursor: pointer;
    }
    .service-item.s-cta:hover { background: var(--blue); }
    .service-item.s-cta .s-name { color: white; }
    .service-item.s-cta p { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.65; }

    /* Lightbox */
    #svc-lightbox {
      display: none; position: fixed; inset: 0;
      background: rgba(5,10,14,0.95);
      z-index: 400;
      flex-direction: column;
      align-items: center; justify-content: center;
    }
    #svc-lightbox.open { display: flex; }
    #svc-lb-img {
      max-width: min(90vw, 1080px); max-height: 80vh;
      object-fit: contain; border-radius: 3px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.7);
    }
    #svc-lb-caption {
      margin-top: 1.25rem; color: rgba(255,255,255,0.7);
      font-size: 0.9rem; font-weight: 600; letter-spacing: 0.3px;
    }
    #svc-lb-close {
      position: absolute; top: 1.5rem; right: 2rem;
      font-size: 2rem; color: white; cursor: pointer;
      line-height: 1; opacity: 0.6; background: none; border: none; padding: 0;
    }
    #svc-lb-close:hover { opacity: 1; }
    .svc-lb-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,0.1); border: none; color: white;
      font-size: 2rem; cursor: pointer; padding: 0.5rem 1rem; border-radius: 3px;
      transition: background 0.2s;
    }
    .svc-lb-nav:hover { background: rgba(255,255,255,0.22); }
    #svc-lb-prev { left: 1.5rem; }
    #svc-lb-next { right: 1.5rem; }
    .svc-lb-dots {
      display: flex; gap: 0.5rem; margin-top: 1rem;
    }
    .svc-lb-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,0.3); border: none; cursor: pointer; padding: 0;
      transition: background 0.2s;
    }
    .svc-lb-dot.active { background: var(--accent); }

    /* ── BAND ── */
    .band {
      padding: 7rem 3rem;
      background:
        linear-gradient(to right, rgba(13,22,28,0.92) 0%, rgba(13,22,28,0.85) 100%),
        url('images/hero-bg.jpg') center/cover no-repeat;
      position: relative; overflow: hidden;
    }

    .band::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(83,162,190,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(83,162,190,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .band-content { position: relative; z-index: 1; 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; }

    /* ── PROJECTS ── */
    .projects { padding: 8rem 3rem; background: white; }

    .projects-header { max-width: 1100px; margin: 0 auto 4rem; }

    .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; }
    div.project-card { cursor: default; pointer-events: none; }
    .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; }

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

    /* ── TESTIMONIALS ── */
    .testimonials { padding: 8rem 3rem; background: var(--light); }
    .testimonials-inner { max-width: 1200px; margin: 0 auto; }
    .testimonials h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--navy); margin-bottom: 3.5rem; letter-spacing: -1px; line-height: 1.1; }
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .testi-card {
      background: white; border-radius: 12px; padding: 2rem;
      display: flex; flex-direction: column; gap: 1.5rem;
      border-top: 3px solid var(--accent);
      border: 1px solid var(--border);
      border-top: 3px solid var(--accent);
    }
    .testi-quote { font-size: 0.95rem; line-height: 1.75; color: var(--text); font-style: italic; flex: 1; }
    .testi-quote::before { content: '\201C'; font-size: 2.5rem; line-height: 1; display: block; color: var(--accent); margin-bottom: 0.25rem; font-style: normal; font-weight: 800; }
    .testi-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
    .testi-role { font-size: 0.82rem; color: var(--accent); font-weight: 600; margin-top: 0.2rem; }
    .testi-project { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }
    @media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

    /* ── CONTACT ── */
    .contact { padding: 8rem 3rem; background: var(--navy); }

    .contact-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; align-items: start;
    }

    .contact .section-title { color: white; }
    .contact .eyebrow { color: var(--accent); }

    .contact-intro { font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 2.5rem; }

    .contact-details { display: flex; flex-direction: column; gap: 1.25rem; }

    .c-detail { display: flex; align-items: center; gap: 1rem; }

    .c-icon {
      width: 40px; height: 40px; min-width: 40px;
      background: rgba(83,162,190,0.12); border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
    }

    .c-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 2; }
    .c-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
    .c-value { font-size: 0.93rem; color: white; font-weight: 500; }

    .contact-form { background: white; padding: 2.5rem; border-radius: 3px; }
    .contact-form h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 1.75rem; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { margin-bottom: 1.1rem; }
    .form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text); margin-bottom: 0.35rem; letter-spacing: 0.3px; }

    .form-group input, .form-group textarea, .form-group select {
      width: 100%; padding: 0.75rem 1rem;
      border: 1px solid var(--border); border-radius: 3px;
      font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text);
      background: var(--light); outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
      border-color: var(--accent); background: white;
      box-shadow: 0 0 0 3px rgba(83,162,190,0.1);
    }

    .form-group textarea { resize: vertical; min-height: 100px; }

    .form-submit {
      width: 100%; background: var(--navy); color: white; border: none;
      padding: 0.9rem; font-family: 'Inter', sans-serif; font-size: 0.85rem;
      font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      border-radius: 3px; cursor: pointer; transition: background 0.2s; margin-top: 0.25rem;
    }

    .form-submit:hover { background: var(--blue); }

    .form-message {
      display: none; padding: 0.85rem 1rem; border-radius: 3px;
      font-size: 0.88rem; font-weight: 500; margin-top: 0.75rem;
    }
    .form-message.success { display: block; background: #e6f4ea; color: #2d6a3f; border: 1px solid #b7dfc2; }
    .form-message.error { display: block; background: #fdecea; color: #b71c1c; border: 1px solid #f5c6cb; }

    /* ── FOOTER ── */
    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; }

    /* ── ANIMATIONS ── */
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── HAMBURGER ── */
    .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 OVERLAY ── */
    .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;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      nav { padding: 0 1.5rem; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .stat-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
      .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
      .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
      .projects-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .hero-content { padding: 0 1.25rem; width: 100%; max-width: 100%; box-sizing: border-box; }
      .hero h1 { font-size: clamp(1.3rem, 4.5vw, 1.8rem) !important; letter-spacing: -0.5px; overflow-wrap: break-word; word-break: break-word; line-height: 1.15; max-width: 100%; }
      .hero p { font-size: 0.95rem; max-width: 100%; }
      .about, .services, .projects, .contact, .band, .testimonials { padding: 4rem 1.25rem; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: 1fr; }
      /* Mobile: photo on top, text below */
      .service-item.has-photo { min-height: unset; justify-content: flex-start; padding: 160px 1.25rem 1.25rem; background: white; border: 1px solid rgba(83,162,190,0.22); }
      .service-item.has-photo::before { bottom: auto; height: 160px; transform: none !important; }
      .service-item.has-photo::after { display: none; }
      .service-item.has-photo .s-icon { background: rgba(83,162,190,0.1); margin-top: 1.1rem; }
      .service-item.has-photo .s-icon svg { stroke: var(--mid); }
      .service-item.has-photo .s-name { color: var(--navy); }
      .service-item.has-photo .s-desc { color: var(--muted); }
      .service-item.has-photo .s-gallery-hint { opacity: 1; margin-top: 0.5rem; }
      .projects-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      footer { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem 1.25rem; }
      .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
      .services-header .section-title { font-size: 1.8rem; }
      .band h2 { font-size: 1.75rem; letter-spacing: -0.5px; }
      .band p { font-size: 0.95rem; max-width: 100%; }
      .about-visual { padding: 2rem 1.5rem; }
      .section-title { letter-spacing: -0.5px; }
      .contact-inner { gap: 2.5rem; }
      .contact-form { padding: 1.75rem 1.25rem; }
      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-93fed312 { padding-top: 0 !important; }
.gen-0a88f24a { grid-template-columns: 1fr !important; gap: 0 !important; }
.gen-de0aa912 { max-width: 640px !important; }
.gen-27f7d71b { --si-bg: url('images/services/design-6.jpg') !important; }
.gen-39ea58b1 { --si-bg: url('images/services/fabrication-3.jpg') !important; }
.gen-c8e58f3e { --si-bg: url('images/services/pipe-fitting-1.jpg') !important; }
.gen-1419ba11 { fill: var(--mid) !important; }
.gen-38615b05 { --si-bg: url('images/services/mechanical-7.jpg') !important; }
.gen-d5bced1b { --si-bg: url('images/services/water-cutting-3.jpg') !important; }
.gen-3a7c83ba { --si-bg: url('images/services/certified-welding-1.jpg') !important; }
.gen-8261c585 { --si-bg: url('images/services/plant-maintenance-2.jpg') !important; }
.gen-1b198da4 { --si-bg: url('images/services/site-services-2.jpg') !important; }
.gen-fd8ce377 { color: white !important; margin-top: 1rem !important; display: inline-flex !important; align-items: center !important; gap: 0.35rem !important; font-size: 0.83rem !important; font-weight: 600 !important; border-bottom-color: rgba(255,255,255,0.3) !important; }
.gen-2fc2f5e6 { width: 14px !important; height: 14px !important; stroke: white !important; fill: none !important; stroke-width: 2.5 !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-b705668b { background: url('images/projects/bioreactor/bioreactor-photo-1.jpg') center/cover no-repeat !important; }
.gen-1809ec1e { background: url('images/projects/titan/titan-photo-1.jpg') center 30%/cover no-repeat !important; }
.gen-78b82c40 { color: white !important; text-decoration: none !important; }
.gen-697f22dc { color: #53a2be !important; text-decoration: underline !important; }
.gen-6b99de8b { display: none !important; }
