  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --yellow: #F5A623;
    --dark: #0D1117;
    --dark2: #141920;
    --mid: #1C242D;
    --text: #6B7685;
    --white: #ffffff;
    --light-bg: #F4F6F9;
  }

  html { scroll-behavior: smooth; }
  [id] { scroll-margin-top: 90px; }
  body { font-family: 'Open Sans', sans-serif; color: var(--dark); background: #fff; overflow-x: hidden; }

  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }
  img { max-width: 100%; height: auto; display: block; }

  /* ── TOP BAR ── */
  .topbar {
    background: var(--dark2);
    color: #aab0b8;
    font-size: 13px;
    padding: 8px 0;
  }
  .topbar-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 30px;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
  }
  .topbar a { color: #aab0b8; }
  .topbar a:hover { color: var(--yellow); }

  /* ── HEADER ── */
  .site-header {
    background: var(--dark);
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,.4);
  }
  .header-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 30px;
    display: flex; align-items: center; justify-content: space-between; height: 80px;
    position: relative;
  }
  .logo img { height: 44px; }

  /* Nav */
  .main-nav { display: flex; align-items: center; gap: 4px; }
  .main-nav > li { position: relative; }
  .main-nav > li > a {
    color: var(--white); font-family: 'Barlow', sans-serif; font-weight: 600;
    font-size: 15px; padding: 0 16px; height: 80px; display: flex; align-items: center;
    transition: color .2s;
  }
  .main-nav > li > a:hover, .main-nav > li > a.active { color: var(--yellow); }
  @media (min-width: 769px) {
    .main-nav > li.has-dropdown > a::after { content: ' ▾'; font-size: 11px; opacity: .75; }
  }

  .dropdown {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    background: var(--dark2); border-top: 3px solid var(--yellow);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all .25s; z-index: 999;
  }
  .main-nav > li:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
  .dropdown a {
    display: block; padding: 10px 20px; color: #ccc;
    font-size: 14px; font-family: 'Barlow', sans-serif; font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,.06); transition: all .2s;
  }
  .dropdown a:hover { color: var(--yellow); padding-left: 28px; background: rgba(255,255,255,.04); }

  .header-cta a {
    background: var(--yellow); color: var(--dark);
    font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 14px;
    padding: 12px 26px; letter-spacing: .5px;
    transition: background .2s, transform .2s;
  }
  .header-cta a:hover { background: #e0941a; }

  /* ── HERO ── */
  .hero {
    position: relative; overflow: hidden;
    background: var(--dark) url('../img/shape-12.webp') center/cover no-repeat;
    min-height: 740px; display: flex; align-items: center;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(13,17,23,.97) 0%, rgba(13,17,23,.78) 55%, rgba(13,17,23,.35) 100%);
  }
  .hero-slider { position: relative; width: 100%; }
  .hero-slide {
    display: none; position: relative;
  }
  .hero-slide.active { display: block; animation: fadeIn .7s ease; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

  .hero-content {
    max-width: 1280px; margin: 0 auto; padding: 100px 30px;
    position: relative; z-index: 2;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--yellow); font-family: 'Barlow', sans-serif; font-weight: 700;
    font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 22px;
  }
  .hero-eyebrow::before {
    content: ''; width: 36px; height: 2px; background: var(--yellow);
  }
  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: clamp(44px, 6vw, 80px); color: var(--white); line-height: 1.05;
    max-width: 680px; margin-bottom: 24px;
    text-transform: uppercase;
  }
  .hero h1 span { color: var(--yellow); }
  .hero p {
    color: #b0bbc7; font-size: 17px; max-width: 520px; line-height: 1.75;
    margin-bottom: 40px;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--yellow); color: var(--dark);
    font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 15px;
    padding: 16px 36px; letter-spacing: .5px;
    transition: background .2s, transform .2s;
  }
  .btn-primary:hover { background: #e0941a; transform: translateY(-2px); }
  .btn-primary svg { width: 16px; height: 16px; }

  .hero-dots {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 10;
  }
  .hero-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,.35); border: none; cursor: pointer; transition: background .3s;
  }
  .hero-dot.active { background: var(--yellow); width: 28px; border-radius: 5px; }

  /* ── SECTION COMMON ── */
  section { padding: 90px 0; }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 30px; }
  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--yellow); font-family: 'Barlow', sans-serif; font-weight: 700;
    font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
    margin-bottom: 14px;
  }
  .section-eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--yellow); }
  .section-title {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: clamp(32px, 4vw, 50px); color: var(--dark);
    line-height: 1.1; text-transform: uppercase;
  }
  .section-title-white { color: var(--white); }

  /* ── ENGINEERING / ABOUT SPLIT ── */
  .engineering-sec { background: var(--light-bg); padding: 90px 0; }
  .engineering-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .eng-left {
    background: var(--dark2);
    padding: 70px 60px;
    position: relative; overflow: hidden;
  }
  .eng-left::after {
    content: ''; position: absolute; right: -60px; top: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: var(--yellow); opacity: .05;
  }
  .eng-left .section-title { color: var(--white); margin-bottom: 40px; }
  .eng-steps { display: flex; flex-direction: column; gap: 28px; }
  .eng-step { display: flex; gap: 20px; align-items: flex-start; }
  .eng-step-num {
    font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800;
    color: var(--yellow); line-height: 1; flex-shrink: 0; min-width: 40px;
    opacity: .7;
  }
  .eng-step-content h4 {
    font-family: 'Barlow', sans-serif; font-weight: 700; color: var(--white); font-size: 16px;
    margin-bottom: 6px;
  }
  .eng-step-content p { color: #8a96a4; font-size: 14px; line-height: 1.65; }
  .eng-right { background: var(--yellow); padding: 70px 60px; display: flex; flex-direction: column; justify-content: center; }
  .eng-right .section-eyebrow::before { background: var(--dark); }
  .eng-right .section-eyebrow { color: var(--dark); }
  .eng-right .section-title { color: var(--dark); margin-bottom: 20px; }
  .eng-right p { color: rgba(13,17,23,.75); font-size: 16px; line-height: 1.75; margin-bottom: 32px; }
  .btn-dark {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--dark); color: var(--white);
    font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 15px;
    padding: 15px 34px;
    transition: background .2s;
  }
  .btn-dark:hover { background: #222d3a; }

  /* ── OPERATIONS ── */
  .operations-sec { background: var(--dark); padding: 90px 0; }
  .ops-header { text-align: center; margin-bottom: 60px; }
  .ops-header .section-title { color: var(--white); }
  .ops-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .ops-card {
    position: relative; overflow: hidden;
    aspect-ratio: 4/3;
  }
  .ops-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
  .ops-card:hover img { transform: scale(1.06); }
  .ops-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,17,23,.9) 0%, rgba(13,17,23,.25) 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 30px;
  }
  .ops-card h4 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    color: var(--white); font-size: 20px; text-transform: uppercase; margin-bottom: 8px;
  }
  .ops-card p { color: #9ba8b5; font-size: 14px; line-height: 1.6; }

  /* ── TESTIMONIAL / CTA BAR ── */
  .testi-bar {
    background: var(--yellow); padding: 28px 0;
  }
  .testi-bar-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 30px;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
  }
  .testi-quote {
    font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700;
    color: var(--dark); font-style: italic; max-width: 640px;
  }
  .testi-author { font-family: 'Barlow', sans-serif; font-weight: 700; color: var(--dark); font-size: 14px; white-space: nowrap; }
  .testi-avatars { display: flex; }
  .testi-avatars img {
    width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--white); margin-left: -10px;
  }
  .testi-avatars img:first-child { margin-left: 0; }

  /* ── SUSTAINABLE ── */
  .sustain-sec { padding: 90px 0; background: #fff; }
  .sustain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .sustain-img-wrap { position: relative; }
  .sustain-img-wrap img { width: 100%; }
  .sustain-badge {
    position: absolute; bottom: 30px; left: -20px;
    background: var(--yellow); padding: 20px 28px;
  }
  .sustain-badge .num {
    font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 800;
    color: var(--dark); line-height: 1;
  }
  .sustain-badge .label {
    font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 12px;
    color: var(--dark); text-transform: uppercase; letter-spacing: 1px;
  }
  .sustain-text .section-title { margin-bottom: 18px; }
  .sustain-text p { color: var(--text); line-height: 1.8; margin-bottom: 24px; font-size: 15px; }
  .sustain-list { margin-bottom: 36px; }
  .sustain-list li {
    display: flex; align-items: flex-start; gap: 12px;
    color: var(--dark); font-size: 15px; font-weight: 600;
    padding: 8px 0; border-bottom: 1px solid #eef0f3;
    font-family: 'Barlow', sans-serif;
  }
  .sustain-list li::before {
    content: ''; width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
    background: var(--yellow);
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  }

  /* ── PERFORMANCE ── */
  .perf-sec { background: var(--dark); padding: 90px 0; }
  .perf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .perf-text .section-title { color: var(--white); margin-bottom: 20px; }
  .perf-text p { color: #8a96a4; font-size: 15px; line-height: 1.8; margin-bottom: 40px; }
  .perf-icons { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .perf-icon-box {
    background: rgba(255,255,255,.05); padding: 28px 24px;
    border-left: 3px solid var(--yellow); transition: background .2s;
  }
  .perf-icon-box:hover { background: rgba(255,255,255,.08); }
  .perf-icon-box img { width: 44px; height: 44px; margin-bottom: 14px; }
  .perf-icon-box h5 {
    font-family: 'Barlow', sans-serif; font-weight: 700;
    color: var(--white); font-size: 15px;
  }
  .perf-img { position: relative; }
  .perf-img img { width: 100%; }
  .perf-stat {
    position: absolute; bottom: 30px; right: -20px;
    background: var(--yellow); padding: 22px 30px; text-align: center;
  }
  .perf-stat .big { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 800; color: var(--dark); line-height: 1; }
  .perf-stat .small { font-family: 'Barlow', sans-serif; font-size: 12px; font-weight: 700; color: var(--dark); text-transform: uppercase; }

  /* ── PORTFOLIO ── */
  .portfolio-sec { padding: 90px 0; background: var(--light-bg); }
  .port-header { text-align: center; margin-bottom: 52px; }
  .port-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .port-card { position: relative; overflow: hidden; }
  .port-card img { width: 100%; height: 320px; object-fit: cover; transition: transform .5s; }
  .port-card:hover img { transform: scale(1.07); }
  .port-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,17,23,.85) 0%, transparent 60%);
    display: flex; align-items: flex-end; padding: 28px;
    opacity: 0; transition: opacity .3s;
  }
  .port-card:hover .port-card-overlay { opacity: 1; }
  .port-card-overlay span {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    color: var(--white); font-size: 18px; text-transform: uppercase;
  }
  .port-card-tag {
    position: absolute; top: 20px; left: 20px;
    background: var(--yellow); color: var(--dark);
    font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 11px;
    padding: 5px 12px; text-transform: uppercase; letter-spacing: 1px;
  }

  /* ── BLOG ── */
  .blog-sec { padding: 90px 0; }
  .blog-grid-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; }
  .blog-intro .section-title { margin-bottom: 18px; }
  .blog-intro p { color: var(--text); font-size: 15px; line-height: 1.8; margin-bottom: 28px; }
  .blog-checks { margin-bottom: 32px; }
  .blog-checks li {
    display: flex; align-items: center; gap: 10px;
    font-size: 15px; color: var(--dark); font-weight: 600;
    font-family: 'Barlow', sans-serif; padding: 7px 0;
  }
  .blog-checks li::before {
    content: ''; width: 16px; height: 16px; flex-shrink: 0;
    background: var(--yellow);
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  }
  .blog-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .blog-card { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,.07); overflow: hidden; }
  .blog-card img { width: 100%; height: 190px; object-fit: cover; transition: transform .4s; }
  .blog-card:hover img { transform: scale(1.04); }
  .blog-card-body { padding: 22px; }
  .blog-meta { display: flex; gap: 14px; margin-bottom: 10px; }
  .blog-meta span {
    font-size: 12px; color: var(--text); font-family: 'Barlow', sans-serif;
    display: flex; align-items: center; gap: 5px;
  }
  .blog-meta span.cat { color: var(--yellow); font-weight: 700; }
  .blog-card h4 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 17px; color: var(--dark); line-height: 1.3; margin-bottom: 12px;
    text-transform: uppercase;
  }
  .blog-card h4 a:hover { color: var(--yellow); }
  .read-more {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--yellow); font-family: 'Barlow', sans-serif;
    font-weight: 700; font-size: 13px; letter-spacing: .5px; text-transform: uppercase;
  }
  .read-more:hover { gap: 10px; }

  /* ── FOOTER ── */
  .site-footer { background: var(--dark2); padding: 80px 0 0; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 60px; }
  .footer-brand img { height: 46px; margin-bottom: 20px; }
  .footer-brand p { color: #7a8592; font-size: 14px; line-height: 1.8; }
  .footer-col h5 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    color: var(--white); font-size: 18px; text-transform: uppercase;
    margin-bottom: 24px; position: relative; padding-bottom: 12px;
  }
  .footer-col h5::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 34px; height: 3px; background: var(--yellow);
  }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    color: #7a8592; font-size: 14px; transition: color .2s;
    display: flex; align-items: center; gap: 6px;
  }
  .footer-col ul li a::before { content: '›'; color: var(--yellow); font-size: 16px; }
  .footer-col ul li a:hover { color: var(--yellow); }
  .footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
  .footer-contact-icon {
    width: 36px; height: 36px; background: var(--yellow);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .footer-contact-icon svg { width: 16px; height: 16px; color: var(--dark); }
  .footer-contact-text { color: #7a8592; font-size: 14px; line-height: 1.6; }
  .footer-contact-text a { color: #7a8592; }
  .footer-contact-text a:hover { color: var(--yellow); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px 0;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
  }
  .footer-bottom p { color: #4e5a65; font-size: 13px; }
  .footer-bottom a { color: var(--yellow); }

  /* ── LEAVE REQUEST ── */
  .leave-sec { background: var(--light-bg); }
  .leave-grid {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start;
  }
  .leave-intro p { color: var(--text); font-size: 16px; line-height: 1.75; margin: 18px 0 24px; }
  .leave-note {
    background: var(--dark2); color: #aab0b8; font-size: 14px; line-height: 1.65;
    padding: 20px 24px; border-left: 4px solid var(--yellow);
  }
  .leave-note strong { color: var(--white); display: block; margin-bottom: 6px; }
  .leave-form-wrap {
    background: var(--white); padding: 40px; box-shadow: 0 8px 40px rgba(13,17,23,.08);
  }
  .leave-form-wrap h3 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 28px;
    text-transform: uppercase; margin-bottom: 24px; color: var(--dark);
  }
  .leave-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .leave-form .form-group { display: flex; flex-direction: column; gap: 6px; }
  .leave-form .form-group.full { grid-column: 1 / -1; }
  .leave-form label {
    font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 13px;
    color: var(--dark); text-transform: uppercase; letter-spacing: .5px;
  }
  .leave-form label .optional {
    text-transform: none; font-weight: 400; color: var(--text); letter-spacing: 0;
  }
  .leave-form input, .leave-form select, .leave-form textarea {
    font-family: 'Open Sans', sans-serif; font-size: 15px; color: var(--dark);
    border: 1px solid #d8dee6; padding: 12px 14px; background: #fff;
    transition: border-color .2s, box-shadow .2s;
  }
  .leave-form input:focus, .leave-form select:focus, .leave-form textarea:focus {
    outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,166,35,.15);
  }
  .leave-form textarea { min-height: 110px; resize: vertical; }
  .leave-form .btn-primary { border: none; cursor: pointer; width: 100%; justify-content: center; margin-top: 6px; }
  .leave-form .btn-primary:disabled { opacity: .65; cursor: not-allowed; transform: none; }
  .leave-alert {
    display: none; padding: 14px 16px; font-size: 14px; line-height: 1.5; margin-bottom: 18px;
    border-left: 4px solid transparent;
  }
  .leave-alert.visible { display: block; }
  .leave-alert.success { background: #edf7ed; color: #1e6b2e; border-color: #2e8b3e; }
  .leave-alert.error { background: #fdecea; color: #8b1e1e; border-color: #c0392b; }

  /* ── MOBILE NAV TOGGLE ── */
  .nav-toggle {
    display: none; background: none; border: none; cursor: pointer; padding: 8px;
    z-index: 1001; flex-shrink: 0;
  }
  .nav-toggle span {
    display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0;
    transition: transform .3s, opacity .3s;
  }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }

  /* ── SCROLL TO TOP ── */
  .scroll-top {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    width: 44px; height: 44px; background: var(--yellow);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; transition: opacity .3s;
    border: none;
  }
  .scroll-top.visible { opacity: 1; }
  .scroll-top svg { width: 20px; height: 20px; color: var(--dark); }

  /* ── PAGE BANNER (inner pages) ── */
  .page-banner {
    position: relative; overflow: hidden;
    background: var(--dark) url('../img/shape-12.webp') center/cover no-repeat;
    min-height: 280px; display: flex; align-items: center;
  }
  .page-banner::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(13,17,23,.97) 0%, rgba(13,17,23,.82) 100%);
  }
  .page-banner-content {
    max-width: 1280px; margin: 0 auto; padding: 60px 30px;
    position: relative; z-index: 2;
  }
  .page-banner h1 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: clamp(36px, 5vw, 56px); color: var(--white);
    text-transform: uppercase; line-height: 1.1; margin-bottom: 12px;
  }
  .page-banner p { color: #b0bbc7; font-size: 16px; max-width: 560px; line-height: 1.7; }
  .breadcrumb {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    font-family: 'Barlow', sans-serif; font-size: 13px; color: #8a96a4;
    margin-bottom: 16px;
  }
  .breadcrumb a { color: var(--yellow); }
  .breadcrumb a:hover { text-decoration: underline; }

  /* ── HOME TEASERS ── */
  .home-teasers { padding: 90px 0; background: var(--light-bg); }
  .teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .teaser-card {
    background: var(--white); padding: 36px 30px;
    box-shadow: 0 4px 24px rgba(13,17,23,.06);
    transition: transform .2s, box-shadow .2s;
  }
  .teaser-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(13,17,23,.1); }
  .teaser-card h3 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: 22px; text-transform: uppercase; margin-bottom: 12px; color: var(--dark);
  }
  .teaser-card p { color: var(--text); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
  .teaser-link {
    color: var(--yellow); font-family: 'Barlow', sans-serif; font-weight: 700;
    font-size: 13px; text-transform: uppercase; letter-spacing: .5px;
  }
  .teaser-link:hover { color: #e0941a; }

  /* Worker Leave – visible in mobile nav; header CTA on desktop */
  .main-nav .nav-leave-item { display: none; }
  .main-nav .nav-leave-item a {
    background: rgba(245,166,35,.12); color: var(--yellow) !important;
    margin: 8px 16px; border-radius: 2px; justify-content: center;
  }

  /* ── CONTACT PAGE ── */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
  .contact-info-card {
    background: var(--dark2); padding: 40px; color: #aab0b8;
  }
  .contact-info-card h3 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    color: var(--white); font-size: 24px; text-transform: uppercase; margin-bottom: 24px;
  }
  .contact-info-card .footer-contact-item { margin-bottom: 20px; }

  /* ── TEAM PAGE ── */
  .team-sec { padding: 90px 0; background: var(--light-bg); }
  .team-filters {
    display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px;
  }
  .team-filter-btn {
    font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 13px;
    text-transform: uppercase; letter-spacing: .5px;
    padding: 10px 20px; border: 2px solid #d8dee6; background: var(--white);
    color: var(--dark); cursor: pointer; transition: all .2s;
  }
  .team-filter-btn:hover, .team-filter-btn.active {
    border-color: var(--yellow); background: var(--yellow); color: var(--dark);
  }
  .team-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  }
  .team-card {
    background: var(--white); overflow: hidden;
    box-shadow: 0 4px 24px rgba(13,17,23,.06);
    transition: transform .25s, box-shadow .25s;
  }
  .team-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(13,17,23,.12); }
  .team-card-photo { position: relative; overflow: hidden; aspect-ratio: 1; display: block; }
  .team-card-photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s;
  }
  .team-card:hover .team-card-photo img { transform: scale(1.06); }
  .team-card-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    background: linear-gradient(to top, rgba(13,17,23,.92) 0%, rgba(13,17,23,.25) 55%, transparent 100%);
    padding: 20px 16px 14px;
    pointer-events: none;
  }
  .team-card-name {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: 18px; text-transform: uppercase; color: var(--white);
    line-height: 1.2; margin-bottom: 4px;
  }
  .team-card-dept {
    font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 700;
    color: var(--yellow); text-transform: uppercase; letter-spacing: 1px;
  }
  .team-card-body { padding: 22px 20px 24px; text-align: center; }
  .team-card-body h3 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: 20px; text-transform: uppercase; color: var(--dark);
    margin-bottom: 4px; line-height: 1.2;
  }
  .team-card-body h3 a {
    color: var(--dark); display: block;
  }
  .team-card-body h3 a:hover { color: var(--yellow); }
  .team-card-role {
    font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 600;
    color: var(--text); margin-bottom: 14px;
  }
  .team-card-meta {
    font-size: 12px; color: var(--text); margin-bottom: 16px; line-height: 1.5;
  }
  .team-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 12px;
    text-transform: uppercase; letter-spacing: .5px; color: var(--yellow);
  }
  .team-card-link:hover { gap: 10px; color: #e0941a; }
  .team-card.hidden { display: none; }

  /* ── WORKER PROFILE ── */
  .profile-sec { padding: 90px 0; background: var(--light-bg); }
  .profile-grid {
    display: grid; grid-template-columns: 340px 1fr; gap: 50px; align-items: start;
  }
  .profile-sidebar { position: sticky; top: 100px; }
  .profile-photo {
    background: var(--white); padding: 12px;
    box-shadow: 0 8px 40px rgba(13,17,23,.08); margin-bottom: 24px;
  }
  .profile-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; }
  .profile-contact-card {
    background: var(--dark2); padding: 28px; color: #aab0b8;
  }
  .profile-contact-card h4 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    color: var(--white); font-size: 16px; text-transform: uppercase;
    margin-bottom: 18px; padding-bottom: 10px;
    border-bottom: 2px solid var(--yellow);
  }
  .profile-detail {
    display: flex; gap: 12px; margin-bottom: 14px; font-size: 14px; line-height: 1.5;
  }
  .profile-detail svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--yellow); margin-top: 2px; }
  .profile-detail a { color: #aab0b8; }
  .profile-detail a:hover { color: var(--yellow); }
  .profile-main { background: var(--white); padding: 40px 44px; box-shadow: 0 8px 40px rgba(13,17,23,.06); }
  .profile-main .profile-dept {
    display: inline-block; background: rgba(245,166,35,.15); color: #b87a0a;
    font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 12px;
    text-transform: uppercase; letter-spacing: 1px; padding: 6px 14px; margin-bottom: 12px;
  }
  .profile-main h2 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: clamp(28px, 4vw, 40px); text-transform: uppercase;
    color: var(--dark); margin-bottom: 6px; line-height: 1.1;
  }
  .profile-main .profile-role {
    font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 18px;
    color: var(--yellow); margin-bottom: 28px;
  }
  .profile-main h3 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: 22px; text-transform: uppercase; color: var(--dark);
    margin: 32px 0 14px;
  }
  .profile-main h3:first-of-type { margin-top: 0; }
  .profile-main p { color: var(--text); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
  .profile-tags { display: flex; flex-wrap: wrap; gap: 10px; }
  .profile-tag {
    background: var(--light-bg); color: var(--dark);
    font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 13px;
    padding: 8px 16px; border-left: 3px solid var(--yellow);
  }
  .profile-certs { display: flex; flex-direction: column; gap: 10px; }
  .profile-cert {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 600; color: var(--dark);
    padding: 10px 14px; background: var(--light-bg);
  }
  .profile-cert::before {
    content: ''; width: 8px; height: 8px; background: var(--yellow); flex-shrink: 0;
  }
  .profile-back {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 14px;
    text-transform: uppercase; color: var(--yellow); margin-bottom: 24px;
  }
  .profile-back:hover { color: #e0941a; }
  .profile-related { padding: 60px 0 90px; background: #fff; }
  .profile-related h3 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: 28px; text-transform: uppercase; text-align: center;
    margin-bottom: 36px; color: var(--dark);
  }
  .profile-related-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .profile-related-card {
    display: block; text-decoration: none; color: inherit;
    background: var(--light-bg); padding: 24px; text-align: center;
    transition: background .2s;
  }
  .profile-related-card:hover { background: var(--dark2); }
  .profile-related-card:hover h4,
  .profile-related-card:hover p { color: var(--white); }
  .profile-related-card:hover .profile-related-link { color: var(--yellow); }
  .profile-related-card img {
    width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
    margin: 0 auto 14px; border: 3px solid var(--yellow);
  }
  .profile-related-card h4 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 17px; text-transform: uppercase; margin-bottom: 4px;
  }
  .profile-related-card p { font-size: 13px; color: var(--text); margin-bottom: 10px; }
  .profile-related-link {
    font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 12px;
    text-transform: uppercase; color: var(--yellow);
  }
  .profile-leave-btn { margin-top: 28px; }

  /* ── HOME ABOUT BLOCKS ── */
  .home-about-sec { padding: 90px 0; }
  .home-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
    background: var(--dark); margin-bottom: 0;
  }
  .home-stat {
    background: var(--dark2); padding: 40px 24px; text-align: center;
  }
  .home-stat .num {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: 48px; color: var(--yellow); line-height: 1; margin-bottom: 8px;
  }
  .home-stat .label {
    font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 13px;
    color: #aab0b8; text-transform: uppercase; letter-spacing: 1px;
  }
  .home-values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .home-value-card {
    background: var(--white); padding: 32px 28px;
    border-left: 4px solid var(--yellow);
    box-shadow: 0 4px 24px rgba(13,17,23,.06);
  }
  .home-value-card h4 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: 20px; text-transform: uppercase; color: var(--dark);
    margin-bottom: 12px;
  }
  .home-value-card p { color: var(--text); font-size: 14px; line-height: 1.75; }
  .home-locations {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  }
  .home-location {
    background: var(--dark2); padding: 28px 22px; text-align: center;
  }
  .home-location h5 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    color: var(--yellow); font-size: 16px; text-transform: uppercase; margin-bottom: 8px;
  }
  .home-location p { color: #8a96a4; font-size: 13px; line-height: 1.6; }
  .home-contact-strip {
    background: var(--yellow); padding: 50px 0;
  }
  .home-contact-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 30px;
    display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  }
  .home-contact-inner h2 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
    font-size: clamp(28px, 4vw, 40px); text-transform: uppercase; color: var(--dark);
    margin-bottom: 8px;
  }
  .home-contact-inner p { color: rgba(13,17,23,.75); font-size: 16px; max-width: 520px; }
  .home-contact-details { display: flex; flex-direction: column; gap: 12px; }
  .home-contact-item {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 15px; color: var(--dark);
  }
  .home-contact-item svg { width: 20px; height: 20px; flex-shrink: 0; }
  .home-contact-item a { color: var(--dark); }
  .home-contact-item a:hover { text-decoration: underline; }
  .home-ops-preview { background: var(--dark); padding: 90px 0; }
  .home-ops-preview .ops-header { text-align: center; margin-bottom: 50px; }
  .home-ops-preview .section-title { color: var(--white); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .engineering-grid, .sustain-grid, .perf-grid { grid-template-columns: 1fr; }
    .eng-left, .eng-right { padding: 50px 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .ops-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid-wrap { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .profile-grid { grid-template-columns: 1fr; }
    .profile-sidebar { position: static; }
    .profile-related-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .header-inner { height: 70px; padding: 0 20px; }
    [id] { scroll-margin-top: 80px; }
    .logo img { height: 36px; }
    .header-cta { display: none; }
    .main-nav .nav-leave-item { display: block; }
    .nav-toggle { display: block; order: 3; }
    .main-nav {
      display: none; flex-direction: column; align-items: stretch; gap: 0;
      position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
      background: var(--dark2); padding: 12px 0 40px; overflow-y: auto;
      z-index: 999; -webkit-overflow-scrolling: touch;
    }
    .main-nav.open { display: flex; }
    .main-nav > li { border-bottom: 1px solid rgba(255,255,255,.06); }
    .main-nav > li > a {
      height: auto; padding: 14px 24px; justify-content: space-between; width: 100%;
    }
    .main-nav > li.has-dropdown > a::after {
      content: '+'; font-size: 18px; font-weight: 400; color: var(--yellow);
      transition: transform .25s;
    }
    .main-nav > li.has-dropdown.open > a::after { content: '−'; }
    .main-nav > li.has-dropdown.open > a { color: var(--yellow); }
    .dropdown {
      position: static; opacity: 1; visibility: visible; transform: none;
      border-top: none; border-left: none; background: rgba(0,0,0,.2);
      max-height: 0; overflow: hidden; transition: max-height .3s ease;
    }
    .main-nav > li.has-dropdown.open > .dropdown { max-height: 400px; }
    .dropdown a { padding: 10px 24px 10px 36px; font-size: 13px; }
    .main-nav > li:not(.has-dropdown) > a::after { display: none; }
    .leave-grid { grid-template-columns: 1fr; gap: 36px; }
    .leave-form { grid-template-columns: 1fr; }
    .leave-form-wrap { padding: 28px 22px; }
    .port-grid, .blog-cards { grid-template-columns: 1fr; }
    .ops-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .testi-bar-inner { flex-direction: column; text-align: center; }
    .perf-icons { grid-template-columns: 1fr; }
    .teaser-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .page-banner { min-height: 220px; }
    .team-grid { grid-template-columns: 1fr; }
    .profile-main { padding: 28px 22px; }
    .profile-related-grid { grid-template-columns: 1fr; }
    .home-stats { grid-template-columns: repeat(2, 1fr); }
    .home-values-grid { grid-template-columns: 1fr 1fr; }
    .home-locations { grid-template-columns: repeat(2, 1fr); }
    .home-contact-inner { flex-direction: column; text-align: center; }
    .home-contact-details { align-items: center; }
  }
