    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy: #2a2a2a;
      --navy-light: #313131;
      --navy-mid: #2e2e2e;
      --green: #4caf50;
      --border: rgba(255,255,255,0.1);
      --text-dim: rgba(255,255,255,0.6);
      --text-mid: rgba(255,255,255,0.82);
      --transition: 0.3s ease;
    }
    body { font-family: 'Work Sans', sans-serif !important; background: var(--navy); overflow-x: hidden; color: var(--text-mid); }
    a { text-decoration: none; }

    /* ── NAV ── */
    .main-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 22px 48px; background: transparent; transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease; }
    .main-nav.scrolled { background: rgba(44,44,44,0.97); padding: 14px 48px; box-shadow: 0 2px 20px rgba(0,0,0,0.3); backdrop-filter: blur(8px); }
    .nav__brand { color: #fff; }
    .nav__links { display: flex; list-style: none; gap: 36px; margin: 0; padding: 0; }
    .nav__links a { font-size: 12px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.8); text-decoration: none; position: relative; transition: color 0.3s ease; }
    .nav__links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
    .nav__links a:hover { color: #fff; } .nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); } .nav__links a.active { color: #fff; }
    #menuOpen { background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; display: none; padding: 4px; }
    .mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(44,44,44,0.98); z-index: 190; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-size: 22px; font-weight: 200; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.3s ease; }
    .mobile-menu a:hover, .mobile-menu a.active { color: #fff; }
    .mobile-menu__close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 32px; cursor: pointer; }

    /* ── HERO ── */
    .hero { position: relative; width: 100%; height: 62vh; min-height: 380px; overflow: hidden; display: flex; flex-direction: column; }
    .hero__bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1800&auto=format&fit=crop'); background-size: cover; background-position: center; transform: scale(1.04); animation: zoomOut 10s ease forwards; z-index: 0; }
    @keyframes zoomOut { from { transform: scale(1.04); } to { transform: scale(1.00); } }
    .hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 100%); z-index: 1; }
    .hero__content { position: relative; z-index: 5; padding: 0 56px; flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 64px; }
    .hero__breadcrumb { font-size: 14px; font-weight: 400; letter-spacing: 0.12em; color: rgba(255,255,255,0.6); text-transform: uppercase; margin-bottom: 16px; opacity: 0; animation: fadeUp 0.7s 0.15s ease forwards; }
    .hero__breadcrumb a { color: rgba(255,255,255,0.6); } .hero__breadcrumb a:hover { color: #fff; } .hero__breadcrumb span { color: var(--green); }
    .hero__tag { display: inline-block; font-size: 14px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); background: rgba(76,175,80,0.15); border: 1px solid rgba(76,175,80,0.4); padding: 5px 14px; margin-bottom: 18px; opacity: 0; animation: fadeUp 0.7s 0.2s ease forwards; }
    .hero__heading { font-size: clamp(32px, 5.5vw, 68px); font-weight: 200; color: #fff; line-height: 1.05; letter-spacing: -0.03em; opacity: 0; animation: fadeUp 0.8s 0.3s ease forwards; }
    .hero__heading strong { font-weight: 500; }
    .hero__for { font-size: 13px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 14px; opacity: 0; animation: fadeUp 0.8s 0.45s ease forwards; }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

    /* ── INTRO BAND ── */
    .intro-band {
      padding: 64px 56px;
      background: var(--navy);
      border-bottom: 1px solid var(--border);
      max-width: 900px;
    }
    .intro-band__label { font-size: 15px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
    .intro-band__heading { font-size: clamp(26px, 3.5vw, 42px); font-weight: 200; color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; }
    .intro-band__heading strong { font-weight: 500; }
    .intro-band__text { font-size: 18px; font-weight: 300; color: var(--text-mid); line-height: 1.85; }

    /* ── SPLIT SECTION — image left, text right ── */
    .split-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 480px;
      border-bottom: 1px solid var(--border);
    }
    /* Alternate: image right */
    .split-section--flip { direction: rtl; }
    .split-section--flip > * { direction: ltr; }

    .split-section__image {
      overflow: hidden;
      position: relative;
      min-height: 400px;
    }
    .split-section__image img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      filter: brightness(0.75);
      transition: transform 0.6s ease, filter 0.4s ease;
    }
    .split-section:hover .split-section__image img { transform: scale(1.03); filter: brightness(0.85); }
    .split-section__image-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(42,42,42,0.5) 0%, transparent 60%);
    }

    .split-section__content {
      background: var(--navy-light);
      padding: 64px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .split-section--alt .split-section__content { background: var(--navy-mid); }

    .split__label { font-size: 16px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
    .split__heading { font-size: clamp(22px, 2.8vw, 45px); font-weight: 200; color: #fff; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 20px; }
    .split__heading strong { font-weight: 500; }
    .split__text { font-size: 17px; font-weight: 300; color: var(--text-mid); line-height: 1.85; margin-bottom: 0; }
    .split__text p { margin-bottom: 16px; }
    .split__text p:last-child { margin-bottom: 0; }

    /* Route cards within split content */
    .route-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
    .route-card { background: rgba(255,255,255,0.04); border: 1px solid var(--border); padding: 20px 22px; position: relative; overflow: hidden; transition: border-color 0.3s ease, background 0.3s ease; text-decoration: none; display: block; }
    .route-card::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: var(--green); transform: scaleY(0); transform-origin: top; transition: transform 0.3s ease; }
    .route-card:hover::before { transform: scaleY(1); }
    .route-card:hover { border-color: rgba(76,175,80,0.35); background: rgba(76,175,80,0.06); }
    .route-card__num { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
    .route-card__title { font-size: 18px; font-weight: 400; color: #fff; margin-bottom: 6px; }
    .route-card__desc { font-size: 16px; font-weight: 300; color: var(--text-dim); line-height: 1.65; }
    .route-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(76,175,80,0.6); margin-top: 10px; transition: color 0.25s ease, gap 0.25s ease; }
    .route-card__link::after { content: '→'; }
    .route-card:hover .route-card__link { color: var(--green); gap: 10px; }

    /* Measure boxes */
    .measure-boxes { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
    .measure-box { display: flex; gap: 18px; align-items: flex-start; background: rgba(76,175,80,0.07); border: 1px solid rgba(76,175,80,0.2); padding: 20px 22px; }
    .measure-box__letter { font-size: 26px; font-weight: 200; color: var(--green); line-height: 1; flex-shrink: 0; width: 30px; }
    .measure-box__body { font-size: 16px; font-weight: 300; color: var(--text-mid); line-height: 1.7; }
    .measure-box__body strong { color: #fff; font-weight: 500; display: block; margin-bottom: 4px; font-size: 15px; }

    /* Restriction list */
    .restriction-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 10px; }
    .restriction-list li { display: flex; align-items: flex-start; gap: 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 16px 18px; font-size: 16px; font-weight: 300; color: var(--text-mid); line-height: 1.65; transition: border-color 0.25s ease; }
    .restriction-list li:hover { border-color: rgba(76,175,80,0.25); }
    .restriction-list li .item-num { font-size: 11px; font-weight: 700; color: rgba(76,175,80,0.8); letter-spacing: 0.1em; flex-shrink: 0; margin-top: 2px; min-width: 20px; }

    .dynamic-callout { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-left: 3px solid var(--green); padding: 18px 20px; margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
    .dynamic-callout p { font-size: 16px; font-weight: 300; color: var(--text-mid); line-height: 1.6; margin: 0; }
    .dynamic-callout p strong { color: #fff; font-weight: 500; }
    .btn-text-link { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); text-decoration: none; white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.25s ease; }
    .btn-text-link::after { content: '→'; }
    .btn-text-link:hover { gap: 10px; }

    /* ── CTA / CONTACT STRIP ── */
    .contact-strip {
      background: rgba(76,175,80,0.07); border-top: 1px solid rgba(76,175,80,0.2);
      padding: 64px 56px;
      display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
    }
    .contact-strip__heading { font-size: clamp(22px, 2.8vw, 34px); font-weight: 200; color: #fff; letter-spacing: -0.01em; margin-bottom: 12px; }
    .contact-strip__text { font-size: 16px; font-weight: 300; color: var(--text-dim); line-height: 1.7; }
    .contact-details { display: flex; flex-direction: column; gap: 14px; }
    .contact-item { display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 300; color: var(--text-mid); }
    .contact-item i { color: var(--green); font-size: 16px; width: 20px; }
    .contact-item a { color: var(--text-mid); transition: color 0.25s ease; }
    .contact-item a:hover { color: #fff; }
    .btn-enquire { display: inline-block; font-family: 'Work Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; background: var(--green); border: none; padding: 16px 36px; cursor: pointer; transition: background 0.3s ease, transform 0.3s ease; margin-top: 20px; }
    .btn-enquire:hover { background: #43a047; transform: translateY(-2px); color: #fff; }

    /* ── FOOTER ── */
    .site-footer { background-color: #2a2a2a; color: rgba(255,255,255,0.75); font-family: 'Work Sans', sans-serif; }
    .footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 0.8fr 1.4fr; gap: 48px; padding: 72px 64px 56px; }
    .footer-heading { font-size: 15px; font-weight: 500; color: #fff; letter-spacing: 0.04em; margin-bottom: 24px; }
    .footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
    .footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; font-weight: 300; transition: color 0.25s ease; }
    .footer-links a:hover { color: #fff; }
    .footer-social-list a { display: flex; align-items: center; gap: 10px; }
    .footer-social-list i { font-size: 15px; }
    .footer-logo-placeholder { margin-bottom: 32px; }
    .footer-logo-placeholder img { max-width: 140px; height: auto; }
    .footer-office { margin-bottom: 24px; }
    .office-name { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 6px; }
    .footer-office p { font-size: 16px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.65); margin: 0 0 3px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 64px; font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.35); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .split-section { grid-template-columns: 1fr 1fr; }
      .split-section__content { padding: 48px 40px; }
      .contact-strip { padding: 52px 40px; }
      .intro-band { padding: 52px 40px; }
      .footer-inner { grid-template-columns: 1fr 1fr; padding: 48px 40px 40px; }
      .footer-bottom { padding: 18px 40px; }
    }
    @media (max-width: 900px) {
      #menuOpen { display: block !important; } .nav__links { display: none; }
      .main-nav { padding: 16px 24px; } .main-nav.scrolled { padding: 12px 24px; }
    }
    @media (max-width: 768px) {
      .hero__content { padding: 0 24px; padding-bottom: 48px; }
      .intro-band { padding: 40px 24px; }
      .split-section { grid-template-columns: 1fr; direction: ltr; }
      .split-section--flip { direction: ltr; }
      .split-section__image { min-height: 280px; }
      .split-section__content { padding: 40px 24px; }
      .contact-strip { grid-template-columns: 1fr; padding: 48px 24px; gap: 32px; }
      .footer-inner { grid-template-columns: 1fr 1fr; padding: 40px 24px 32px; }
      .footer-bottom { padding: 16px 24px; }
    }
    @media (max-width: 576px) {
      .footer-inner { grid-template-columns: 1fr; }
      .dynamic-callout { flex-direction: column; align-items: flex-start; }
    }
