
      /* Compact responsive navigation added for the SEO landing pages */
      .top {
        z-index: 1000;
      }

      .nav {
        position: relative;
        display: flex;
        align-items: center;
        gap: 14px;
      }

      .brand {
        flex: 0 0 auto;
        min-width: 230px;
      }

      .navlinks {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        flex: 1 1 auto;
        min-width: 0;
      }

      .navlinks > a,
      .navDropBtn {
        white-space: nowrap;
        font-size: 15px;
        line-height: 1;
      }

      .navActions {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
      }

      .navDropdown {
        position: relative;
      }

      .navDropBtn {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        min-height: 46px;
        padding: 0 18px;
        border: 1px solid rgba(4, 84, 107, 0.14);
        border-radius: 999px;
        background: #ffffff;
        color: #083c4a;
        font-family: inherit;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 8px 24px rgba(5, 61, 77, 0.06);
      }

      .navDropBtn:hover,
      .navDropBtn:focus-visible {
        border-color: rgba(4, 84, 107, 0.35);
        outline: none;
      }

      .navDropMenu {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        display: none;
        width: min(330px, 82vw);
        padding: 10px;
        border: 1px solid rgba(4, 84, 107, 0.14);
        border-radius: 18px;
        background: #ffffff;
        box-shadow: 0 20px 55px rgba(5, 44, 57, 0.18);
      }

      .navDropdown.is-open .navDropMenu {
        display: grid;
        gap: 5px;
      }

      .navDropMenu a {
        display: block;
        padding: 13px 14px;
        border-radius: 12px;
        color: #083c4a;
        text-decoration: none;
        line-height: 1.35;
      }

      .navDropMenu a:hover,
      .navDropMenu a:focus-visible {
        background: rgba(4, 84, 107, 0.08);
        outline: none;
      }

      .menuToggle {
        display: none;
        width: 48px;
        height: 48px;
        padding: 11px;
        border: 1px solid rgba(4, 84, 107, 0.16);
        border-radius: 14px;
        background: #ffffff;
        cursor: pointer;
      }

      .menuToggle span {
        display: block;
        height: 2px;
        margin: 5px 0;
        border-radius: 3px;
        background: #083c4a;
      }

      @media (max-width: 1480px) {
        .brand {
          min-width: 185px;
        }

        .brandText small {
          display: none;
        }

        .navlinks > a,
        .navDropBtn {
          font-size: 14px;
        }

        .navlinks {
          gap: 5px;
        }

        .navActions .adminNavBtn {
          display: none;
        }
      }

      @media (max-width: 1180px) {
        .nav {
          flex-wrap: wrap;
          justify-content: space-between;
        }

        .menuToggle {
          display: block;
          order: 3;
        }

        .navActions {
          margin-left: auto;
          order: 2;
        }

        .navlinks {
          position: absolute;
          top: calc(100% + 10px);
          left: 14px;
          right: 14px;
          z-index: 1001;
          display: none;
          flex-direction: column;
          align-items: stretch;
          gap: 5px;
          padding: 14px;
          border: 1px solid rgba(4, 84, 107, 0.14);
          border-radius: 20px;
          background: #ffffff;
          box-shadow: 0 22px 60px rgba(5, 44, 57, 0.2);
        }

        .navlinks.is-open {
          display: flex;
        }

        .navlinks > a,
        .navDropBtn {
          width: 100%;
          min-height: 44px;
          padding: 13px 15px;
          border-radius: 12px;
          text-align: left;
        }

        .navlinks > a:hover {
          background: rgba(4, 84, 107, 0.08);
        }

        .navDropBtn {
          justify-content: space-between;
          border: 0;
          box-shadow: none;
        }

        .navDropMenu {
          position: static;
          width: 100%;
          margin-top: 5px;
          border: 0;
          border-radius: 12px;
          background: rgba(4, 84, 107, 0.045);
          box-shadow: none;
        }
      }

      @media (max-width: 700px) {
        .brand {
          min-width: 0;
        }

        .brandText {
          display: none;
        }

        .navActions .navEnquiryBtn,
        .navActions .adminNavBtn {
          display: none;
        }

        .navActions {
          margin-left: auto;
        }
      }

      /* Unified desktop, tablet and mobile alignment */
      *,
      *::before,
      *::after {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
        overflow-x: hidden;
      }

      body {
        width: 100%;
        max-width: 100%;
        margin: 0;
        overflow-x: hidden;
      }

      img,
      svg,
      video,
      iframe {
        max-width: 100%;
      }

      img {
        height: auto;
      }

      .top {
        position: sticky;
        top: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
      }

      .nav {
        width: min(1440px, 100%);
        min-height: 76px;
        margin-inline: auto;
        padding: 10px clamp(16px, 3vw, 42px);
      }

      .brand {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
      }

      .brandLogo {
        display: grid;
        flex: 0 0 auto;
        place-items: center;
      }

      .brandLogo img {
        display: block;
        width: clamp(48px, 4.2vw, 64px);
        max-height: 58px;
        object-fit: contain;
      }

      .brandText {
        min-width: 0;
        line-height: 1.1;
      }

      .brandText b,
      .brandText small {
        display: block;
        white-space: nowrap;
      }

      .navlinks > a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 0 12px;
        border-radius: 999px;
        color: #083c4a;
        text-decoration: none;
      }

      .navlinks > a:hover,
      .navlinks > a:focus-visible {
        background: rgba(4, 84, 107, 0.08);
        outline: none;
      }

      .menuToggle {
        flex: 0 0 48px;
      }

      .menuToggle:focus-visible {
        outline: 3px solid rgba(4, 84, 107, 0.22);
        outline-offset: 2px;
      }

      .menuToggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      .menuToggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
      }

      .menuToggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }

      .menuToggle span {
        transition:
          transform 180ms ease,
          opacity 180ms ease;
      }

      .wrap,
      .inner {
        width: min(1200px, calc(100% - 40px));
        margin-inline: auto;
      }

      .section,
      .hero {
        width: 100%;
        scroll-margin-top: 90px;
      }

      .heroGrid {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
        align-items: center;
        gap: clamp(30px, 5vw, 72px);
      }

      .heroContent,
      .heroCard,
      .card,
      .layoutInfo,
      .storyPreviewContent,
      .locationVisualCard,
      .mapActionCard {
        min-width: 0;
      }

      .heroContent h1,
      .title,
      .sub,
      .heroText,
      .approvalFact strong,
      .snapList span,
      .footer p,
      .footer a {
        overflow-wrap: anywhere;
      }

      .cta {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
      }

      .cta > .btn,
      .cta > a,
      .cta > button {
        justify-content: center;
      }

      .stats {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 12px;
      }

      .stat {
        min-width: 0;
        text-align: center;
      }

      .grid.three,
      .approvalGrid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(16px, 2vw, 24px);
      }

      .approvalFact,
      .card {
        height: 100%;
      }

      .approvalFactWide {
        grid-column: span 2;
      }

      .approvalFact strong,
      .verificationHelp strong {
        word-break: break-word;
      }

      .twoCol,
      .layoutBox,
      .locationSimpleGrid,
      .storyPreviewCard {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        gap: clamp(20px, 3vw, 36px);
      }

      .layoutBox > img,
      .storyPreviewMedia img,
      .locationVisualCard > img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .sliderScroller {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: thin;
      }

      .sliderTrack {
        min-width: 0;
      }

      .mobilebar {
        display: none;
      }

      .navDropMenu {
        z-index: 1002;
      }

      .footerGrid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr 1fr;
        gap: clamp(24px, 5vw, 64px);
        align-items: start;
      }

      .footerGrid > div {
        min-width: 0;
      }

      .modalBox,
      .imageModalBox {
        width: min(94vw, 720px);
        max-height: calc(100dvh - 32px);
        overflow-y: auto;
      }

      @media (max-width: 1180px) {
        .nav {
          min-height: 70px;
          flex-wrap: nowrap;
        }

        .brand {
          flex: 1 1 auto;
          order: 1;
        }

        .navActions {
          order: 2;
          margin-left: auto;
        }

        .menuToggle {
          order: 3;
        }

        .navlinks {
          top: calc(100% + 8px);
          max-height: calc(100dvh - 96px);
          overflow-y: auto;
        }

        .heroGrid {
          grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
          gap: 28px;
        }

        .stats {
          grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .grid.three,
        .approvalGrid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .approvalFactWide {
          grid-column: span 1;
        }
      }

      @media (max-width: 820px) {
        .wrap,
        .inner {
          width: min(100% - 30px, 720px);
        }

        .heroGrid,
        .twoCol,
        .layoutBox,
        .locationSimpleGrid,
        .storyPreviewCard {
          grid-template-columns: minmax(0, 1fr);
        }

        .heroContent {
          text-align: center;
        }

        .heroContent .cta {
          justify-content: center;
        }

        .heroCard {
          width: min(100%, 620px);
          margin-inline: auto;
        }

        .footerGrid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }

      @media (max-width: 700px) {
        body {
          padding-bottom: 150px;
        }

        .top {
          box-shadow: 0 8px 28px rgba(5, 44, 57, 0.09);
        }

        .nav {
          min-height: 64px;
          padding: 8px 12px;
          gap: 8px;
        }

        .brandLogo img {
          width: 46px;
          max-height: 46px;
        }

        .navActions {
          gap: 6px;
        }

        .navActions .iconBtn,
        .menuToggle {
          width: 44px;
          height: 44px;
          flex-basis: 44px;
        }

        .menuToggle {
          padding: 9px;
        }

        .navlinks {
          left: 10px;
          right: 10px;
          padding: 10px;
          border-radius: 16px;
        }

        .navDropMenu {
          max-height: 44dvh;
          overflow-y: auto;
        }

        .wrap,
        .inner {
          width: min(100% - 24px, 620px);
        }

        .hero,
        .section {
          overflow: clip;
        }

        .heroContent h1 {
          font-size: clamp(2rem, 10vw, 3rem);
          line-height: 1.04;
        }

        .title {
          font-size: clamp(1.8rem, 8vw, 2.5rem);
          line-height: 1.08;
        }

        .sub,
        .heroText {
          font-size: 1rem;
          line-height: 1.65;
        }

        .heroContent .cta,
        .contactActions,
        .mapActionCard .cta {
          display: grid;
          grid-template-columns: 1fr;
          width: 100%;
        }

        .heroContent .cta > *,
        .contactActions > *,
        .mapActionCard .cta > * {
          width: 100%;
        }

        .grid.three,
        .approvalGrid,
        .footerGrid {
          grid-template-columns: minmax(0, 1fr);
        }

        .stats {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .snapList p {
          display: grid;
          grid-template-columns: 1fr;
          gap: 4px;
        }

        .snapList span {
          text-align: left;
        }

        .layoutBox > img,
        .storyPreviewMedia img,
        .locationVisualCard > img {
          height: auto;
          max-height: 420px;
        }

        .quickDock {
          display: none !important;
        }

        .mobilebar {
          position: fixed;
          left: 10px;
          right: 10px;
          bottom: max(10px, env(safe-area-inset-bottom));
          z-index: 1200;
          display: grid !important;
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 8px;
          padding: 9px;
          border: 1px solid rgba(4, 84, 107, 0.14);
          border-radius: 18px;
          background: rgba(255, 255, 255, 0.96);
          box-shadow: 0 18px 50px rgba(5, 44, 57, 0.2);
          backdrop-filter: blur(14px);
          -webkit-backdrop-filter: blur(14px);
        }

        .mobilebar .btn {
          min-width: 0;
          min-height: 44px;
          padding: 10px 8px;
          font-size: 13px;
          justify-content: center;
        }

        .footer {
          padding-bottom: 30px;
        }
      }

      @media (max-width: 390px) {
        .wrap,
        .inner {
          width: min(100% - 20px, 360px);
        }

        .stats {
          grid-template-columns: minmax(0, 1fr);
        }

        .mobilebar .btn {
          font-size: 12px;
        }
      }

      /* Mobile navigation: three primary links plus one More/filter button */
      .mobileHeaderNav {
        display: none;
      }

      .mobileMoreToggle {
        font: inherit;
      }

      .mobileMoreToggle svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.9;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      .mobileMoreMenu {
        display: none;
      }

      @media (max-width: 700px) {
        .nav {
          min-height: auto;
          flex-wrap: wrap !important;
          align-items: center;
          padding: 8px 10px 10px;
        }

        .brand {
          flex: 1 1 auto;
          width: auto;
          min-width: 0;
        }

        /* Remove Admin and desktop enquiry controls from mobile header */
        .navActions .adminNavBtn,
        .navActions .navEnquiryBtn {
          display: none !important;
        }

        .navActions {
          display: flex !important;
          flex: 0 0 auto;
          order: 2;
          margin-left: auto;
        }

        .navActions .iconBtn {
          display: inline-flex !important;
        }

        /* The old hamburger/dropdown is not used on phones */
        .menuToggle,
        #mainNav.navlinks {
          display: none !important;
        }

        .mobileHeaderNav {
          position: relative;
          order: 4;
          display: grid;
          grid-template-columns: repeat(4, minmax(0, 1fr));
          gap: 7px;
          width: 100%;
          margin-top: 2px;
        }

        .mobileHeaderNav > a,
        .mobileMoreToggle {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: 5px;
          min-width: 0;
          min-height: 40px;
          padding: 8px 5px;
          border: 1px solid rgba(4, 84, 107, 0.14);
          border-radius: 12px;
          background: #ffffff;
          color: #083c4a;
          box-shadow: 0 5px 16px rgba(5, 61, 77, 0.06);
          font-size: 11.5px;
          font-weight: 700;
          line-height: 1.1;
          text-align: center;
          text-decoration: none;
          cursor: pointer;
          white-space: nowrap;
        }

        .mobileHeaderNav > a:active,
        .mobileMoreToggle:active,
        .mobileMoreToggle[aria-expanded="true"] {
          background: rgba(4, 84, 107, 0.1);
          border-color: rgba(4, 84, 107, 0.3);
        }

        .mobileMoreMenu {
          position: absolute;
          top: calc(100% + 8px);
          left: 0;
          right: 0;
          z-index: 1300;
          max-height: min(62dvh, 520px);
          overflow-y: auto;
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 7px;
          padding: 10px;
          border: 1px solid rgba(4, 84, 107, 0.15);
          border-radius: 16px;
          background: rgba(255, 255, 255, 0.98);
          box-shadow: 0 20px 52px rgba(5, 44, 57, 0.22);
          backdrop-filter: blur(16px);
          -webkit-backdrop-filter: blur(16px);
        }

        .mobileHeaderNav.is-open .mobileMoreMenu {
          display: grid;
        }

        .mobileMoreMenu a {
          display: flex;
          align-items: center;
          min-width: 0;
          min-height: 44px;
          padding: 10px 11px;
          border-radius: 11px;
          background: rgba(4, 84, 107, 0.055);
          color: #083c4a;
          font-size: 12px;
          font-weight: 650;
          line-height: 1.3;
          text-decoration: none;
          overflow-wrap: anywhere;
        }

        .mobileMoreMenu a:active {
          background: rgba(4, 84, 107, 0.14);
        }
      }

      @media (max-width: 380px) {
        .mobileHeaderNav {
          gap: 5px;
        }

        .mobileHeaderNav > a,
        .mobileMoreToggle {
          min-height: 38px;
          padding-inline: 3px;
          font-size: 10.5px;
        }

        .mobileMoreToggle svg {
          width: 15px;
          height: 15px;
        }
      }
    